Click here to Skip to main content
16,017,297 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionSending email in VC++ 6.0 Pin
naeemnimi27-Oct-05 21:55
naeemnimi27-Oct-05 21:55 
AnswerRe: Sending email in VC++ 6.0 Pin
ThatsAlok27-Oct-05 22:16
ThatsAlok27-Oct-05 22:16 
GeneralRe: Sending email in VC++ 6.0 Pin
Intertherain28-Oct-05 2:30
Intertherain28-Oct-05 2:30 
GeneralRe: Sending email in VC++ 6.0 Pin
ThatsAlok30-Oct-05 19:15
ThatsAlok30-Oct-05 19:15 
AnswerRe: Sending email in VC++ 6.0 Pin
Mircea Puiu27-Oct-05 22:28
Mircea Puiu27-Oct-05 22:28 
Questionwhat does '\.\' mean in a path Pin
Monty227-Oct-05 21:52
Monty227-Oct-05 21:52 
AnswerRe: what does '\.\' mean in a path Pin
toxcct27-Oct-05 22:23
toxcct27-Oct-05 22:23 
QuestionUnder Win98 Pin
LiYS27-Oct-05 20:42
LiYS27-Oct-05 20:42 
The following code is for detect if USB disk is writable, it work well under Win2000, WinXP but not under Win98 where I got ERROR_FILE_NOT_FOUND error. Are these functions' parameters questionable or should I turn to another solution in order to make it work under Win98?
     CString strDrive;
    strDrive.Format("\\\\.\\%c:", A~Z);
HANDLE hDrive = CreateFile(strDrive,  GENERIC_READ | GENERIC_WRITE, FILE_SHARE_READ|FILE_SHARE_WRITE, NULL, OPEN_EXISTING, FILE_FLAG_NO_BUFFERING, NULL);
DWORD dError = GetLastError();
DWORD dwRet;//dwRet = ERROR_FILE_NOT_FOUND:doh:
BOOL bWritable = DeviceIoControl(hDrive, IOCTL_DISK_IS_WRITABLE, NULL, 0, NULL, 0, &dwRet, NULL);




AnswerRe: Under Win98 Pin
Steve Mayfield27-Oct-05 21:38
Steve Mayfield27-Oct-05 21:38 
AnswerRe: Under Win98 Pin
Parthiban28-Oct-05 1:56
Parthiban28-Oct-05 1:56 
AnswerRe: Under Win98 Pin
David Crow28-Oct-05 3:23
David Crow28-Oct-05 3:23 
QuestionDisabling Menu Item Pin
thelip27-Oct-05 20:39
thelip27-Oct-05 20:39 
AnswerRe: Disabling Menu Item Pin
Mircea Puiu27-Oct-05 21:13
Mircea Puiu27-Oct-05 21:13 
AnswerRe: Disabling Menu Item Pin
toxcct27-Oct-05 21:13
toxcct27-Oct-05 21:13 
AnswerRe: Disabling Menu Item Pin
ThatsAlok27-Oct-05 22:21
ThatsAlok27-Oct-05 22:21 
QuestionDEBUG AND RELEASE MODE Pin
karmendra_js27-Oct-05 19:52
karmendra_js27-Oct-05 19:52 
AnswerRe: DEBUG AND RELEASE MODE Pin
kakan27-Oct-05 20:16
professionalkakan27-Oct-05 20:16 
GeneralRe: DEBUG AND RELEASE MODE Pin
Chintoo72328-Oct-05 7:10
Chintoo72328-Oct-05 7:10 
GeneralRe: DEBUG AND RELEASE MODE Pin
Gary R. Wheeler29-Oct-05 4:45
Gary R. Wheeler29-Oct-05 4:45 
GeneralRe: DEBUG AND RELEASE MODE Pin
kakan30-Oct-05 20:10
professionalkakan30-Oct-05 20:10 
AnswerRe: DEBUG AND RELEASE MODE Pin
toxcct27-Oct-05 21:22
toxcct27-Oct-05 21:22 
AnswerRe: DEBUG AND RELEASE MODE Pin
David Crow28-Oct-05 3:41
David Crow28-Oct-05 3:41 
AnswerRe: DEBUG AND RELEASE MODE Pin
Gary R. Wheeler29-Oct-05 5:17
Gary R. Wheeler29-Oct-05 5:17 
QuestionClassView Missing Pin
shivditya27-Oct-05 19:41
shivditya27-Oct-05 19:41 
AnswerRe: ClassView Missing Pin
kakan27-Oct-05 20:18
professionalkakan27-Oct-05 20:18 

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.