Click here to Skip to main content
15,913,090 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: how to selective loading BHO in Chtmlview environment Pin
Rajkumar R27-May-08 20:32
Rajkumar R27-May-08 20:32 
GeneralRe: how to selective loading BHO in Chtmlview environment Pin
ftbk27-May-08 21:49
ftbk27-May-08 21:49 
Questionsave dialog Pin
lahom27-May-08 15:54
lahom27-May-08 15:54 
AnswerRe: save dialog Pin
David Crow27-May-08 16:00
David Crow27-May-08 16:00 
GeneralRe: save dialog Pin
lahom27-May-08 16:14
lahom27-May-08 16:14 
GeneralRe: save dialog Pin
David Crow27-May-08 16:25
David Crow27-May-08 16:25 
GeneralRe: save dialog Pin
lahom27-May-08 16:39
lahom27-May-08 16:39 
GeneralRe: save dialog Pin
SandipG 27-May-08 18:30
SandipG 27-May-08 18:30 
Create member variable of string type in ur CMyDlg class. Initialize it to Empty string. Lets name it as m_strFileName. Store the FileDlg.GetFilename() in that variable when you click save.

and in Save Add condition for checking the file name is not empty.

CMyDlg::Save()
{
if(m_strFileName.IsEmpty())
{
CFileDialog FileDlg(TRUE,...);
FileDlg.DoModal()
m_strFileName = FileDlg.GetFileName();
}
... //Your Code for saving the file with name m_strFileName.
}
GeneralRe: save dialog Pin
lahom28-May-08 21:27
lahom28-May-08 21:27 
QuestionWaitForSingleobject vs SetTimer Pin
rp_suman27-May-08 15:40
rp_suman27-May-08 15:40 
AnswerRe: WaitForSingleobject vs SetTimer Pin
David Crow27-May-08 16:01
David Crow27-May-08 16:01 
QuestionRe: WaitForSingleobject vs SetTimer Pin
rp_suman27-May-08 17:12
rp_suman27-May-08 17:12 
AnswerRe: WaitForSingleobject vs SetTimer Pin
SandipG 27-May-08 18:35
SandipG 27-May-08 18:35 
GeneralRe: WaitForSingleobject vs SetTimer Pin
rp_suman27-May-08 20:55
rp_suman27-May-08 20:55 
AnswerRe: WaitForSingleobject vs SetTimer Pin
Nelek27-May-08 22:02
protectorNelek27-May-08 22:02 
GeneralRe: WaitForSingleobject vs SetTimer Pin
rp_suman28-May-08 4:05
rp_suman28-May-08 4:05 
Questionemployee pay calculator Pin
Pathetic27-May-08 15:28
Pathetic27-May-08 15:28 
AnswerRe: employee pay calculator Pin
David Crow27-May-08 16:04
David Crow27-May-08 16:04 
GeneralRe: employee pay calculator Pin
Pathetic28-May-08 12:19
Pathetic28-May-08 12:19 
AnswerRe: employee pay calculator Pin
ShilpiP27-May-08 19:56
ShilpiP27-May-08 19:56 
GeneralRe: employee pay calculator Pin
Pathetic28-May-08 12:17
Pathetic28-May-08 12:17 
GeneralRe: employee pay calculator Pin
ShilpiP28-May-08 20:46
ShilpiP28-May-08 20:46 
AnswerRe: employee pay calculator Pin
Nelek27-May-08 21:55
protectorNelek27-May-08 21:55 
GeneralRe: employee pay calculator Pin
gbeez28-May-08 11:21
gbeez28-May-08 11:21 
GeneralTe: employee pay calculator Pin
Pathetic28-May-08 12:04
Pathetic28-May-08 12:04 

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.