Click here to Skip to main content
15,921,716 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Why do key-loggers repeat all characters written in Microsoft Word? Pin
Joseph Marzbani8-Nov-08 17:11
Joseph Marzbani8-Nov-08 17:11 
QuestionHow to determine if the user is connected to the internet or not? Pin
Joseph Marzbani7-Nov-08 20:33
Joseph Marzbani7-Nov-08 20:33 
AnswerRe: How to determine if the user is connected to the internet or not? Pin
Fernando A. Gomez F.7-Nov-08 20:53
Fernando A. Gomez F.7-Nov-08 20:53 
GeneralRe: How to determine if the user is connected to the internet or not? Pin
Joseph Marzbani7-Nov-08 21:28
Joseph Marzbani7-Nov-08 21:28 
AnswerRe: How to determine if the user is connected to the internet or not? Pin
PJ Arends7-Nov-08 21:18
professionalPJ Arends7-Nov-08 21:18 
GeneralRe: How to determine if the user is connected to the internet or not? Pin
Joseph Marzbani7-Nov-08 21:30
Joseph Marzbani7-Nov-08 21:30 
QuestionUSB port working Pin
zon_cpp7-Nov-08 20:18
zon_cpp7-Nov-08 20:18 
AnswerRe: USB port working Pin
Cedric Moonen8-Nov-08 0:21
Cedric Moonen8-Nov-08 0:21 
Working with a USB is not like working with a serial port. You can't simply open the port and read/write data. Instead you have to get a handle from a device driver that is supplied with the device you want to communicate to.
So in brief, you never access the port directly but a driver and you never 'know' that you in fact access the USB port through the driver. You simply communicate with a driver. To get the handle, you have to use CreateFile and once you have the handle, you can write or read data using WriteFile/ReadFile. You can exchange driver specific information using DeviceIOControl.

All of these things are very specific to the driver (and device) you are accessing. So, if you want to information, you will need to be much more specific and tell us which device you want to access.

Cédric Moonen
Software developer

Charting control [v1.5]
OpenGL game tutorial in C++

GeneralRe: USB port working Pin
zon_cpp8-Nov-08 20:00
zon_cpp8-Nov-08 20:00 
GeneralRe: USB port working Pin
Iain Clarke, Warrior Programmer9-Nov-08 23:47
Iain Clarke, Warrior Programmer9-Nov-08 23:47 
QuestionDrawing PNG and text on windows startup. Pin
gothic_coder7-Nov-08 18:58
gothic_coder7-Nov-08 18:58 
AnswerRe: Drawing PNG and text on windows startup. Pin
gothic_coder8-Nov-08 1:59
gothic_coder8-Nov-08 1:59 
GeneralRe: Drawing PNG and text on windows startup. Pin
Hamid_RT8-Nov-08 3:26
Hamid_RT8-Nov-08 3:26 
GeneralRe: Drawing PNG and text on windows startup. Pin
gothic_coder9-Nov-08 19:19
gothic_coder9-Nov-08 19:19 
GeneralRe: Drawing PNG and text on windows startup. Pin
Hamid_RT9-Nov-08 20:26
Hamid_RT9-Nov-08 20:26 
GeneralRe: Drawing PNG and text on windows startup. Pin
gothic_coder9-Nov-08 21:31
gothic_coder9-Nov-08 21:31 
GeneralRe: Drawing PNG and text on windows startup. Pin
Hamid_RT10-Nov-08 3:50
Hamid_RT10-Nov-08 3:50 
QuestionHow to read numbers (int and float) from a text file in C/C++? Pin
kanishka137-Nov-08 18:56
kanishka137-Nov-08 18:56 
AnswerRe: How to read numbers (int and float) from a text file in C/C++? Pin
Saurabh.Garg7-Nov-08 19:04
Saurabh.Garg7-Nov-08 19:04 
AnswerRe: How to read numbers (int and float) from a text file in C/C++? Pin
Hamid_RT7-Nov-08 20:19
Hamid_RT7-Nov-08 20:19 
Questionlistview Pin
trioum7-Nov-08 17:50
trioum7-Nov-08 17:50 
AnswerRe: listview Pin
David Crow7-Nov-08 18:04
David Crow7-Nov-08 18:04 
QuestionReg : Key Down message not receiving in dialog procedure Pin
MANISH RASTOGI7-Nov-08 17:49
MANISH RASTOGI7-Nov-08 17:49 
AnswerRe: Reg : Key Down message not receiving in dialog procedure Pin
Hamid_RT7-Nov-08 20:23
Hamid_RT7-Nov-08 20:23 
GeneralRe: Reg : Key Down message not receiving in dialog procedure Pin
MANISH RASTOGI7-Nov-08 20:32
MANISH RASTOGI7-Nov-08 20:32 

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.