Click here to Skip to main content
15,899,825 members
Home / Discussions / C#
   

C#

 
GeneralRe: Installer Issues Pin
leppie11-Jun-08 6:05
leppie11-Jun-08 6:05 
AnswerRe: Installer Issues Pin
Jimmanuel11-Jun-08 6:07
Jimmanuel11-Jun-08 6:07 
AnswerRe: Installer Issues Pin
Big Daddy Farang11-Jun-08 12:38
Big Daddy Farang11-Jun-08 12:38 
GeneralRe: Installer Issues Pin
Russell Jones11-Jun-08 23:13
Russell Jones11-Jun-08 23:13 
GeneralRe: Installer Issues Pin
Big Daddy Farang12-Jun-08 5:27
Big Daddy Farang12-Jun-08 5:27 
Questionhow to set body color,font size,font name in codebehind Pin
senpriya11-Jun-08 5:42
senpriya11-Jun-08 5:42 
AnswerRe: how to set body color,font size,font name in codebehind Pin
Christian Graus11-Jun-08 5:58
protectorChristian Graus11-Jun-08 5:58 
AnswerRe: how to set body color,font size,font name in codebehind Pin
leppie11-Jun-08 6:00
leppie11-Jun-08 6:00 
QuestionError creating XmlSerializer Pin
Eric Burns11-Jun-08 5:39
Eric Burns11-Jun-08 5:39 
AnswerRe: Error creating XmlSerializer Pin
leppie11-Jun-08 5:55
leppie11-Jun-08 5:55 
GeneralRe: Error creating XmlSerializer Pin
Eric Burns11-Jun-08 6:39
Eric Burns11-Jun-08 6:39 
QuestionNeed to Connect to DB2 database using C# Pin
Sankalp Verma11-Jun-08 5:21
Sankalp Verma11-Jun-08 5:21 
AnswerRe: Need to Connect to DB2 database using C# Pin
Christian Graus11-Jun-08 5:22
protectorChristian Graus11-Jun-08 5:22 
AnswerRe: Need to Connect to DB2 database using C# Pin
PIEBALDconsult11-Jun-08 15:43
mvePIEBALDconsult11-Jun-08 15:43 
QuestionProgramatically Modifying app.config file Pin
#realJSOP11-Jun-08 4:30
professional#realJSOP11-Jun-08 4:30 
AnswerRe: Programatically Modifying app.config file Pin
Judah Gabriel Himango11-Jun-08 4:55
sponsorJudah Gabriel Himango11-Jun-08 4:55 
GeneralRe: Programatically Modifying app.config file Pin
#realJSOP11-Jun-08 5:23
professional#realJSOP11-Jun-08 5:23 
GeneralRe: Programatically Modifying app.config file Pin
Judah Gabriel Himango11-Jun-08 5:30
sponsorJudah Gabriel Himango11-Jun-08 5:30 
AnswerRe: Programatically Modifying app.config file Pin
leppie11-Jun-08 6:02
leppie11-Jun-08 6:02 
GeneralRe: Programatically Modifying app.config file Pin
#realJSOP11-Jun-08 6:42
professional#realJSOP11-Jun-08 6:42 
QuestionReflection Pin
c242311-Jun-08 4:06
c242311-Jun-08 4:06 
AnswerRe: Reflection Pin
c242311-Jun-08 4:30
c242311-Jun-08 4:30 
AnswerRe: Reflection Pin
PIEBALDconsult11-Jun-08 15:45
mvePIEBALDconsult11-Jun-08 15:45 
GeneralRe: Reflection Pin
c242311-Jun-08 22:12
c242311-Jun-08 22:12 
QuestionRTS_CONTROL_TOGGLE or Win32 handle to the serial port Pin
aei_totten11-Jun-08 4:04
aei_totten11-Jun-08 4:04 
Does anyone know if it's possible to get the Win32 handle to the serial port
used under the hood in System.IO.SerialPort?

The reason I want it is so I'd be able to make changes the DCB struct. I
want to set the fRtsControl to RTS_CONTROL_TOGGLE so the RTS signal will be
reset automatically when the TX buffer is empty.

The other option would be to wait for a "tx buffer empty" event to be
signalled after a call to Write. Something like this:


port.RtsEnable = true;
port.Write(buffer, 0, byteCount);
WaitForTxBufferToBeEmpty(port);
this.port.RtsEnable = false;


...but how do I implement WaitForTxBufferToBeEmpty?

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.