Click here to Skip to main content
15,906,708 members
Home / Discussions / C#
   

C#

 
GeneralRe: DateTime Constructor performance Pin
Josh Martin1-Jul-03 13:23
Josh Martin1-Jul-03 13:23 
GeneralMouse Auto Click Pin
Pedromdrp27-Jun-03 12:15
Pedromdrp27-Jun-03 12:15 
GeneralRe: Mouse Auto Click Pin
Paresh Gheewala27-Jun-03 13:10
Paresh Gheewala27-Jun-03 13:10 
GeneralRe: Mouse Auto Click Pin
Pedromdrp28-Jun-03 3:41
Pedromdrp28-Jun-03 3:41 
GeneralWebBrowser control: stuck with interframe security Pin
GriffonRL27-Jun-03 12:03
GriffonRL27-Jun-03 12:03 
GeneralOpen Web Browser from Winform Pin
Chris#27-Jun-03 11:03
Chris#27-Jun-03 11:03 
GeneralRe: Open Web Browser from Winform Pin
Mazdak27-Jun-03 11:13
Mazdak27-Jun-03 11:13 
GeneralRe: Open Web Browser from Winform Pin
dynamic27-Jun-03 12:45
dynamic27-Jun-03 12:45 
this should help you :
VB:




<font color="#0000FF">using</font> System.Diagnostics;
<font color="#006400">//^^^^ top of your form</font><font color="darkgreen">'s code page</font>

        <font color="blue">Private</font> <font color="#0000FF">void</font> button1_Click(<font color="blue">Object</font> sender, System.EventArgs e)
        {
            Process processToStart =<font color="#0000FF">new</font> Process();
            processToStart.StartInfo.FileName="IEXPLORE.exe";
            processToStart.StartInfo.Arguments="http://google.com";
            processToStart.Start();<font color="#006400">// Open internet explorer And navigate To google.com</font>
        }



Smile | :)
hope it helps



<font color="blue">Private void</font> ExpectingTwins(<font color="blue">string</font> twins)
    {    
    <font color="blue">switch</font>(twins)
    {
    <font color="blue">Case</font> ("twins on the way"):
        MessageBox.Show("for mr and mrs dynamic","twins on the way");
    <font color="blue">break</font>;
    }
    }




GeneralRe: Open Web Browser from Winform Pin
Paresh Gheewala27-Jun-03 13:11
Paresh Gheewala27-Jun-03 13:11 
GeneralRe: Open Web Browser from Winform Pin
Arjan Einbu28-Jun-03 11:32
Arjan Einbu28-Jun-03 11:32 
QuestionC DLL -&gt; C# DLL possible? Pin
S O S27-Jun-03 9:57
S O S27-Jun-03 9:57 
AnswerRe: C DLL -&gt; C# DLL possible? Pin
Nathan Blomquist27-Jun-03 17:32
Nathan Blomquist27-Jun-03 17:32 
GeneralRe: C DLL -&gt; C# DLL possible? Pin
S O S28-Jun-03 8:43
S O S28-Jun-03 8:43 
AnswerRe: C DLL -&gt; C# DLL possible? Pin
Nick Parker28-Jun-03 6:10
protectorNick Parker28-Jun-03 6:10 
GeneralRe: C DLL -&gt; C# DLL possible? Pin
S O S28-Jun-03 8:43
S O S28-Jun-03 8:43 
GeneralRe: C DLL -&gt; C# DLL possible? Pin
Nick Parker28-Jun-03 10:39
protectorNick Parker28-Jun-03 10:39 
AnswerRe: C DLL -&gt; C# DLL possible? Pin
jspano2-Jul-03 6:56
jspano2-Jul-03 6:56 
Generalconfig file for a class library Pin
IsaacB27-Jun-03 5:55
IsaacB27-Jun-03 5:55 
GeneralRe: config file for a class library Pin
Arjan Einbu28-Jun-03 11:39
Arjan Einbu28-Jun-03 11:39 
GeneralShortcut enum Pin
Neil Lamka27-Jun-03 5:47
Neil Lamka27-Jun-03 5:47 
GeneralTabStops in ListBox Pin
Roland Bär27-Jun-03 2:59
Roland Bär27-Jun-03 2:59 
GeneralRe: TabStops in ListBox Pin
Rocky Moore27-Jun-03 23:15
Rocky Moore27-Jun-03 23:15 
GeneralRe: TabStops in ListBox Pin
Roland Bär29-Jun-03 21:13
Roland Bär29-Jun-03 21:13 
GeneralRe: TabStops in ListBox Pin
Rocky Moore30-Jun-03 0:45
Rocky Moore30-Jun-03 0:45 
GeneralRe: TabStops in ListBox Pin
Roland Bär30-Jun-03 1:05
Roland Bär30-Jun-03 1:05 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.