Click here to Skip to main content
15,905,781 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: displaying the layout of an ogg file Pin
rukita24-Aug-10 22:40
rukita24-Aug-10 22:40 
GeneralRe: displaying the layout of an ogg file Pin
Richard MacCutchan25-Aug-10 0:21
mveRichard MacCutchan25-Aug-10 0:21 
QuestionGetting list of user accounts Pin
David Crow24-Aug-10 4:32
David Crow24-Aug-10 4:32 
AnswerRe: Getting list of user accounts Pin
Yusuf24-Aug-10 5:09
Yusuf24-Aug-10 5:09 
QuestionReset dwDesiredAccess, Pin
gothic_coder23-Aug-10 21:47
gothic_coder23-Aug-10 21:47 
AnswerRe: Reset dwDesiredAccess, Pin
Luc Pattyn24-Aug-10 1:09
sitebuilderLuc Pattyn24-Aug-10 1:09 
GeneralRe: Reset dwDesiredAccess, Pin
gothic_coder24-Aug-10 2:17
gothic_coder24-Aug-10 2:17 
GeneralRe: Reset dwDesiredAccess, Pin
gothic_coder24-Aug-10 3:14
gothic_coder24-Aug-10 3:14 
As GetFileInformationByHandleEx won't give me the device name, I'm using GetFileInformationByHandle to get the volume number and hopefully compare the number with drive manually.. But the dwVolumeSerialNumber reurns some garbage value..

BY_HANDLE_FILE_INFORMATION info;
DWORD dwSerialNumber = 0;

if(GetFileInformationByHandle(FileHandle, &info) != 0)
{
	dwSerialNumber = info.dwVolumeSerialNumber;
	swprintf(szTemp, L"The Volume Serial Number = %d", info.dwVolumeSerialNumber);
	MessageBox(NULL, szTemp, L"Success", MB_OK);
}
else
{
	swprintf(szTemp, L"GetFileInformationByHandle Error = %d", GetLastError());
	MessageBox(NULL, szTemp, L"Success", MB_OK);
}

GeneralRe: Reset dwDesiredAccess, Pin
gothic_coder25-Aug-10 22:41
gothic_coder25-Aug-10 22:41 
QuestionMessage Removed Pin
23-Aug-10 20:53
sayonee23-Aug-10 20:53 
AnswerRe: Bitmapped button functionality Pin
Peter_in_278023-Aug-10 20:56
professionalPeter_in_278023-Aug-10 20:56 
GeneralRe: Bitmapped button functionality Pin
sayonee23-Aug-10 21:05
sayonee23-Aug-10 21:05 
GeneralRe: Bitmapped button functionality Pin
Richard MacCutchan24-Aug-10 2:49
mveRichard MacCutchan24-Aug-10 2:49 
QuestionError Message Pin
ganesh_IT23-Aug-10 19:20
ganesh_IT23-Aug-10 19:20 
AnswerRe: Error Message Pin
Niklas L23-Aug-10 19:38
Niklas L23-Aug-10 19:38 
QuestionHow to check dll's reference count? Pin
Jack2009523-Aug-10 16:45
Jack2009523-Aug-10 16:45 
AnswerRe: How to check dll's reference count? Pin
Yusuf23-Aug-10 16:54
Yusuf23-Aug-10 16:54 
GeneralRe: How to check dll's reference count? Pin
Jack2009523-Aug-10 20:38
Jack2009523-Aug-10 20:38 
GeneralRe: How to check dll's reference count? Pin
Yusuf23-Aug-10 22:50
Yusuf23-Aug-10 22:50 
QuestionCompare/Convert Float to Text Pin
mohit`1223-Aug-10 7:11
mohit`1223-Aug-10 7:11 
AnswerRe: Compare/Convert Float to Text Pin
Chris Losinger23-Aug-10 7:17
professionalChris Losinger23-Aug-10 7:17 
AnswerRe: Compare/Convert Float to Text Pin
Richard MacCutchan23-Aug-10 7:22
mveRichard MacCutchan23-Aug-10 7:22 
AnswerRe: Compare/Convert Float to Text Pin
David Crow23-Aug-10 7:24
David Crow23-Aug-10 7:24 
GeneralRe: Compare/Convert Float to Text Pin
mohit`1223-Aug-10 7:31
mohit`1223-Aug-10 7:31 
GeneralRe: Compare/Convert Float to Text Pin
Maximilien23-Aug-10 7:53
Maximilien23-Aug-10 7:53 

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.