Click here to Skip to main content
16,010,470 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: save data as csv or excel Pin
jhwurmbach21-Apr-06 1:12
jhwurmbach21-Apr-06 1:12 
QuestionHow to get ProcessId From Hinstance? Pin
Old Gun20-Apr-06 6:05
Old Gun20-Apr-06 6:05 
AnswerRe: How to get ProcessId From Hinstance? Pin
Michael Dunn20-Apr-06 8:45
sitebuilderMichael Dunn20-Apr-06 8:45 
GeneralRe: How to get ProcessId From Hinstance? Pin
Old Gun20-Apr-06 16:54
Old Gun20-Apr-06 16:54 
QuestionHow to use Widcomm bluetooth driver in my application? Pin
MarekKoprla20-Apr-06 5:22
MarekKoprla20-Apr-06 5:22 
QuestionProblem in CFileDialog Pin
Sarvan AL20-Apr-06 4:45
Sarvan AL20-Apr-06 4:45 
QuestionRe: Problem in CFileDialog Pin
David Crow20-Apr-06 5:59
David Crow20-Apr-06 5:59 
AnswerRe: Problem in CFileDialog Pin
jayart20-Apr-06 6:14
jayart20-Apr-06 6:14 
Ideally for a Save-As dlg output should know the ext type of the document to be saved.
what I feel is it is confusing to display a Save-As dialog with no default extension.
Take the eg of Winword. when you try to save the file, it provides finite set of extensions in the "Save-as TYpe" combobox.
Inshort User can either provide a file with ext or system should provide the ext type in the filter type parameter.
see eg of pdf file save-As dlg:

CString strFilter = _T("PDF Files (*.pdf)|*.pdf||");<br />
<br />
			CFileDialog saveDlg(FALSE, _T("*.pdf"), "" , OFN_NOREADONLYRETURN | OFN_HIDEREADONLY | OFN_OVERWRITEPROMPT, strFilter);<br />
			if(IDOK == saveDlg.DoModal())<br />
			{<br />
                        }<br />

Questionsome image component (showing and sending to printer) Pin
cassio marques20-Apr-06 4:45
cassio marques20-Apr-06 4:45 
QuestionCalling WIN32_Service::ChangeStartMode with C++ Pin
qrverona20-Apr-06 4:13
qrverona20-Apr-06 4:13 
Questionagain question Pin
messages20-Apr-06 3:56
messages20-Apr-06 3:56 
QuestionRe: again question Pin
David Crow20-Apr-06 4:28
David Crow20-Apr-06 4:28 
AnswerRe: again question Pin
messages20-Apr-06 4:44
messages20-Apr-06 4:44 
GeneralRe: again question Pin
David Crow20-Apr-06 5:57
David Crow20-Apr-06 5:57 
GeneralRe: again question Pin
messages20-Apr-06 19:33
messages20-Apr-06 19:33 
AnswerRe: again question Pin
Mila02520-Apr-06 4:45
Mila02520-Apr-06 4:45 
GeneralRe: again question Pin
messages20-Apr-06 5:11
messages20-Apr-06 5:11 
Questionoutput stream problem Pin
Aqueel20-Apr-06 3:41
Aqueel20-Apr-06 3:41 
AnswerRe: output stream problem Pin
toxcct20-Apr-06 3:54
toxcct20-Apr-06 3:54 
GeneralRe: output stream problem Pin
Aqueel20-Apr-06 3:58
Aqueel20-Apr-06 3:58 
AnswerRe: output stream problem Pin
David Crow20-Apr-06 4:29
David Crow20-Apr-06 4:29 
GeneralRe: output stream problem Pin
Aqueel20-Apr-06 4:42
Aqueel20-Apr-06 4:42 
GeneralRe: output stream problem Pin
Aqueel20-Apr-06 4:47
Aqueel20-Apr-06 4:47 
GeneralRe: output stream problem Pin
jayart20-Apr-06 5:14
jayart20-Apr-06 5:14 
QuestionPersistent Toolbars Pin
Sarvan AL20-Apr-06 1:41
Sarvan AL20-Apr-06 1:41 

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.