Click here to Skip to main content
15,893,266 members
Home / Discussions / C#
   

C#

 
GeneralHelp Plz in that e-mail client Pin
SherKar21-Apr-05 9:26
SherKar21-Apr-05 9:26 
GeneralRe: Help Plz in that e-mail client Pin
John Fisher22-Apr-05 7:45
John Fisher22-Apr-05 7:45 
Questionbyte[] ? Pin
Snowjim21-Apr-05 9:02
Snowjim21-Apr-05 9:02 
AnswerRe: byte[] ? Pin
Dave Kreskowiak21-Apr-05 10:13
mveDave Kreskowiak21-Apr-05 10:13 
GeneralRe: byte[] ? Pin
Snowjim21-Apr-05 11:25
Snowjim21-Apr-05 11:25 
Generalstarting and stopping processes Pin
Mridang Agarwalla21-Apr-05 7:29
Mridang Agarwalla21-Apr-05 7:29 
GeneralRe: starting and stopping processes Pin
Dave Kreskowiak21-Apr-05 10:06
mveDave Kreskowiak21-Apr-05 10:06 
GeneralRe: starting and stopping processes Pin
Polis Pilavas22-Apr-05 10:13
Polis Pilavas22-Apr-05 10:13 
To start a process (e.g. Notepad) you could say something like:

using System.Diagnostics;<br />
.<br />
.<br />
.<br />
<br />
Process myProcess = new Process();<br />
myProcess.StartInfo.FileName = "Notepad";<br />
myProcess.StartInfo.WindowStyle = ProcessWindowStyle.Maximized;<br />
myProcess.Start();


Regards,
Polis

Can you practice what you teach?
Generaldetecting net connection Pin
Mridang Agarwalla21-Apr-05 7:18
Mridang Agarwalla21-Apr-05 7:18 
GeneralRe: detecting net connection Pin
Dave Kreskowiak21-Apr-05 10:02
mveDave Kreskowiak21-Apr-05 10:02 
GeneralRe: detecting net connection Pin
Mridang Agarwalla21-Apr-05 18:13
Mridang Agarwalla21-Apr-05 18:13 
GeneralRe: detecting net connection Pin
tawammar22-Apr-05 0:27
tawammar22-Apr-05 0:27 
GeneralRe: detecting net connection Pin
Polis Pilavas22-Apr-05 10:26
Polis Pilavas22-Apr-05 10:26 
GeneralRe: detecting net connection Pin
tawammar23-Apr-05 2:27
tawammar23-Apr-05 2:27 
GeneralRe: detecting net connection Pin
tawammar23-Apr-05 6:09
tawammar23-Apr-05 6:09 
GeneralRe: detecting net connection Pin
Polis Pilavas23-Apr-05 8:22
Polis Pilavas23-Apr-05 8:22 
GeneralRe: detecting net connection Pin
tawammar23-Apr-05 10:16
tawammar23-Apr-05 10:16 
GeneralRe: detecting net connection Pin
Polis Pilavas23-Apr-05 10:21
Polis Pilavas23-Apr-05 10:21 
GeneralRe: detecting net connection Pin
tawammar25-Apr-05 13:54
tawammar25-Apr-05 13:54 
Generalfaster than: richTextBox1.Select(78,65);richTextBox1.SelectionColor= Color.Red; Pin
ektoras21-Apr-05 7:04
ektoras21-Apr-05 7:04 
GeneralRe: faster than: richTextBox1.Select(78,65);richTextBox1.SelectionColor= Color.Red; Pin
Dave Kreskowiak21-Apr-05 9:57
mveDave Kreskowiak21-Apr-05 9:57 
GeneralRe: faster than: richTextBox1.Select(78,65);richTextBox1.SelectionColor= Color.Red; Pin
ektoras21-Apr-05 11:31
ektoras21-Apr-05 11:31 
GeneralRe: faster than: richTextBox1.Select(78,65);richTextBox1.SelectionColor= Color.Red; Pin
Dave Kreskowiak21-Apr-05 12:01
mveDave Kreskowiak21-Apr-05 12:01 
GeneralRe: faster than: richTextBox1.Select(78,65);richTextBox1.SelectionColor= Color.Red; Pin
leppie21-Apr-05 19:53
leppie21-Apr-05 19:53 
GeneralRe: faster than: richTextBox1.Select(78,65);richTextBox1.SelectionColor= Color.Red; Pin
leppie21-Apr-05 19:51
leppie21-Apr-05 19:51 

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.