Click here to Skip to main content
15,902,445 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: CHTMLEditCtrl() Pin
Miss Fress29-Apr-03 2:48
Miss Fress29-Apr-03 2:48 
GeneralDoes somebody have the library "safxcrd.lib" for Visual C++ 1.52 Pin
pievanovide27-Apr-03 19:55
pievanovide27-Apr-03 19:55 
GeneralRe: Does somebody have the library "safxcrd.lib" for Visual C++ 1.52 Pin
Joe Woodbury27-Apr-03 20:52
professionalJoe Woodbury27-Apr-03 20:52 
GeneralHook Keyboard Pin
CS42927-Apr-03 19:30
CS42927-Apr-03 19:30 
GeneralRe: Hook Keyboard Pin
Dudi Avramov27-Apr-03 22:36
Dudi Avramov27-Apr-03 22:36 
GeneralRe: Hook Keyboard Pin
Joan M27-Apr-03 22:44
professionalJoan M27-Apr-03 22:44 
GeneralFiles saved using CFileDialog Pin
dandy7727-Apr-03 16:57
dandy7727-Apr-03 16:57 
GeneralRe: Files saved using CFileDialog Pin
Dave Bryant27-Apr-03 17:40
Dave Bryant27-Apr-03 17:40 
CFileDialog doesn't save the files at all - it just allows the user to select the file to save.

You normally do something like this:

CFileDialog dlg( FALSE, ... );
if ( dlg.DoModal() == IDOK )
{
  // Do the save here
  CFile f( dlg.GetFilePath(), CFile::modeCreate|CFile::modeWrite|CFile::shareExclusive );

  // Write the file...

  f.Close();
}

Post the code that actually is performing the save function (after the CFileDialog's DoModal() method returns), and we'll see if we can spot anything wrong.

Dave
http://www.cloudsofheaven.org
GeneralRe: Files saved using CFileDialog Pin
dandy7727-Apr-03 18:21
dandy7727-Apr-03 18:21 
GeneralCalling C++ functions from C Pin
Stormwind27-Apr-03 16:55
Stormwind27-Apr-03 16:55 
GeneralRe: Calling C++ functions from C Pin
Tibor Blazko27-Apr-03 19:20
Tibor Blazko27-Apr-03 19:20 
GeneralRe: Calling C++ functions from C Pin
Stormwind27-Apr-03 19:31
Stormwind27-Apr-03 19:31 
GeneralRe: Calling C++ functions from C Pin
Mike Dimmick27-Apr-03 23:42
Mike Dimmick27-Apr-03 23:42 
GeneralRe: Calling C++ functions from C Pin
Stormwind28-Apr-03 16:15
Stormwind28-Apr-03 16:15 
GeneralMDI Child Windows Help Pin
Steven M Hunt27-Apr-03 12:41
Steven M Hunt27-Apr-03 12:41 
GeneralRe: MDI Child Windows Help Pin
Neville Franks28-Apr-03 0:18
Neville Franks28-Apr-03 0:18 
GeneralRe: MDI Child Windows Help Pin
Hans Dietrich28-Apr-03 0:27
mentorHans Dietrich28-Apr-03 0:27 
GeneralProblem with linking Pin
sjcomp27-Apr-03 10:35
sjcomp27-Apr-03 10:35 
GeneralRe: Problem with linking Pin
Dave Bryant27-Apr-03 11:01
Dave Bryant27-Apr-03 11:01 
GeneralRe: Problem with linking Pin
sjcomp27-Apr-03 12:35
sjcomp27-Apr-03 12:35 
General3D perspective: zoom to extent Pin
Bartosz Bien27-Apr-03 10:10
Bartosz Bien27-Apr-03 10:10 
GeneralHelp Pin
th3kill3r27-Apr-03 7:16
th3kill3r27-Apr-03 7:16 
GeneralRe: Help Pin
th3kill3r27-Apr-03 7:17
th3kill3r27-Apr-03 7:17 
GeneralRe: Help Pin
Nish Nishant27-Apr-03 7:27
sitebuilderNish Nishant27-Apr-03 7:27 
GeneralRe: Help Pin
Kuniva27-Apr-03 7:46
Kuniva27-Apr-03 7:46 

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.