Click here to Skip to main content
15,888,263 members
Home / Discussions / C#
   

C#

 
GeneralRe: DataGridView Checkbox not populating when binding from ObjectDataSource Pin
Tristan Rhodes26-Jul-07 23:25
Tristan Rhodes26-Jul-07 23:25 
QuestionDataSet - mapping the colums Pin
auloepid26-Jul-07 5:23
auloepid26-Jul-07 5:23 
AnswerRe: DataSet - mapping the colums Pin
Tarakeshwar Reddy26-Jul-07 5:31
professionalTarakeshwar Reddy26-Jul-07 5:31 
QuestionSerial To USB Communication Pin
Michael Fritzius26-Jul-07 4:41
professionalMichael Fritzius26-Jul-07 4:41 
AnswerRe: Serial To USB Communication Pin
led mike26-Jul-07 5:00
led mike26-Jul-07 5:00 
GeneralRe: Serial To USB Communication Pin
Michael Fritzius26-Jul-07 5:15
professionalMichael Fritzius26-Jul-07 5:15 
GeneralRe: Serial To USB Communication Pin
led mike26-Jul-07 5:20
led mike26-Jul-07 5:20 
AnswerRe: Serial To USB Communication Pin
Luc Pattyn26-Jul-07 5:20
sitebuilderLuc Pattyn26-Jul-07 5:20 
Hi,

I am in the middle of similar things, i.e. I have a setup with some old Macs and my own
little microcontroller-based network, and I want to port that to one or two PCs that
dont have serial ports natively.

Some remarks:

1. in order to connect two PC's serially (also when looping back to the same PC) you
need a "null modem" (that's either a null modem cable or a very small null modem adapter,
both having two female DB9 connectors). I guess you figured that one out already.

2. I havent observed/measured it yet, but the addition of a USB-to-serial converter is likely
to add some latency, i.e. the characters will be transmitted/received a bit later than
would be the case in a direct RS232C interface; there are two reasons for this:
- encapsulating I/O commands in USB packets has some overhead;
- the USB-to-serial will try to utilize USB bandwidth the best way it can, i.e. not strain it,
so it will knowingly wait a while to see whether it can pack a couple of characters in
one packet.

3. Also I believe the timing of control lines (DTR/RTS/etc) may be somewhat less accurate,
so if you want to interface to special hardware that strongly relies on these timings,
it might go wrong.

4. The USB-to-serial cable comes with some software (a driver) that turns it into an
almost normal COM port: you can choose its number, after that it should show up in regular
lists of serial ports. As a result you can use any terminal emulator (HyperTerminal),
select and use the port.

5. The USB-based serial port probably shows up under Device Manager in a different category,
possibly named after its manufacturer (as opposed to the Ports category).

Cheers !


GeneralRe: Serial To USB Communication Pin
Michael Fritzius26-Jul-07 6:06
professionalMichael Fritzius26-Jul-07 6:06 
GeneralRe: Serial To USB Communication Pin
Luc Pattyn26-Jul-07 6:15
sitebuilderLuc Pattyn26-Jul-07 6:15 
GeneralRe: Serial To USB Communication Pin
Michael Fritzius26-Jul-07 6:55
professionalMichael Fritzius26-Jul-07 6:55 
GeneralRe: Serial To USB Communication Pin
Michael Fritzius26-Jul-07 7:37
professionalMichael Fritzius26-Jul-07 7:37 
GeneralRe: Serial To USB Communication Pin
Luc Pattyn26-Jul-07 7:52
sitebuilderLuc Pattyn26-Jul-07 7:52 
GeneralRe: Serial To USB Communication Pin
Michael Fritzius30-Jul-07 6:21
professionalMichael Fritzius30-Jul-07 6:21 
GeneralRe: Serial To USB Communication Pin
Luc Pattyn30-Jul-07 7:47
sitebuilderLuc Pattyn30-Jul-07 7:47 
GeneralRe: Serial To USB Communication Pin
Michael Fritzius30-Jul-07 6:53
professionalMichael Fritzius30-Jul-07 6:53 
GeneralRe: Serial To USB Communication Pin
Luc Pattyn30-Jul-07 7:03
sitebuilderLuc Pattyn30-Jul-07 7:03 
GeneralRe: Serial To USB Communication Pin
Michael Fritzius30-Jul-07 7:09
professionalMichael Fritzius30-Jul-07 7:09 
GeneralRe: Serial To USB Communication Pin
Luc Pattyn30-Jul-07 7:34
sitebuilderLuc Pattyn30-Jul-07 7:34 
GeneralRe: Serial To USB Communication Pin
Luc Pattyn30-Jul-07 7:38
sitebuilderLuc Pattyn30-Jul-07 7:38 
GeneralRe: Serial To USB Communication Pin
Michael Fritzius30-Jul-07 7:49
professionalMichael Fritzius30-Jul-07 7:49 
GeneralRe: Serial To USB Communication Pin
Luc Pattyn30-Jul-07 7:56
sitebuilderLuc Pattyn30-Jul-07 7:56 
GeneralRe: Serial To USB Communication Pin
Michael Fritzius30-Jul-07 8:28
professionalMichael Fritzius30-Jul-07 8:28 
GeneralRe: Serial To USB Communication Pin
Luc Pattyn30-Jul-07 8:37
sitebuilderLuc Pattyn30-Jul-07 8:37 
GeneralRe: Serial To USB Communication Pin
Michael Fritzius30-Jul-07 8:39
professionalMichael Fritzius30-Jul-07 8:39 

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.