Click here to Skip to main content
15,922,419 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Maximum Ethernet Cards and IPs per Card? Pin
dafunkt3-Nov-03 10:32
dafunkt3-Nov-03 10:32 
GeneralProbelm when window close Pin
Shay Harel3-Nov-03 7:58
Shay Harel3-Nov-03 7:58 
GeneralRe: Probelm when window close Pin
Anthony_Yio3-Nov-03 20:35
Anthony_Yio3-Nov-03 20:35 
GeneralDirectX stipple lines Pin
mikeh3-Nov-03 7:52
mikeh3-Nov-03 7:52 
GeneralRe: DirectX stipple lines Pin
Jeryth3-Nov-03 10:25
Jeryth3-Nov-03 10:25 
GeneralRe: DirectX stipple lines Pin
mikeh3-Nov-03 10:54
mikeh3-Nov-03 10:54 
GeneralRe: DirectX stipple lines Pin
Jeryth3-Nov-03 11:54
Jeryth3-Nov-03 11:54 
GeneralRe: DirectX stipple lines Pin
Jeryth3-Nov-03 14:32
Jeryth3-Nov-03 14:32 
GeneralRe: DirectX stipple lines Pin
ZoogieZork3-Nov-03 18:18
ZoogieZork3-Nov-03 18:18 
GeneralRe: DirectX stipple lines Pin
mikeh4-Nov-03 3:05
mikeh4-Nov-03 3:05 
GeneralRe: DirectX stipple lines Pin
mikeh6-Nov-03 2:18
mikeh6-Nov-03 2:18 
GeneralGetFolderFromID() from Namespace Pin
chz171065xy3-Nov-03 7:27
chz171065xy3-Nov-03 7:27 
Generalgetline question Pin
Anonymous3-Nov-03 7:27
Anonymous3-Nov-03 7:27 
GeneralRe: getline question Pin
Alton Williams3-Nov-03 7:56
Alton Williams3-Nov-03 7:56 
GeneralRe: getline question Pin
Anonymous3-Nov-03 9:58
Anonymous3-Nov-03 9:58 
GeneralRe: getline question Pin
Joaquín M López Muñoz3-Nov-03 10:04
Joaquín M López Muñoz3-Nov-03 10:04 
GeneralRe: getline question Pin
Jeryth3-Nov-03 10:13
Jeryth3-Nov-03 10:13 
GeneralPorting from WinCE to VC++ Pin
VanHlebar3-Nov-03 7:18
VanHlebar3-Nov-03 7:18 
GeneralGetFolderFromID() from Namespace Pin
johnxx3-Nov-03 6:47
johnxx3-Nov-03 6:47 
GeneralDefault name file in serialization Pin
doctorpi3-Nov-03 5:37
doctorpi3-Nov-03 5:37 
GeneralRe: Default name file in serialization Pin
Markyg3-Nov-03 10:34
Markyg3-Nov-03 10:34 
First override the OnFileSave (and OnFileSaveAs if you want to) menu handlers, then just set the name of the default file that you want into the following variable;-

m_strPathName = _T("Whatever");

m_StrPathName is used by the CDocument save functions to work out what file name is presented to the user. If the m_strPathName is empty then the name of the document is used as a basis for the file name. So alternatively you can just call

SetTitle(_T("Whatever"));

instead, although this will not necessarily put the extension you would like onto the document by default, if you have more than one anyway.

Hope this helps,

Mark
Generalvector and delete Pin
ns3-Nov-03 5:32
ns3-Nov-03 5:32 
GeneralRe: vector and delete Pin
valikac3-Nov-03 5:44
valikac3-Nov-03 5:44 
GeneralRe: vector and delete Pin
ns3-Nov-03 5:54
ns3-Nov-03 5:54 
GeneralRe: vector and delete Pin
jhwurmbach3-Nov-03 6:32
jhwurmbach3-Nov-03 6:32 

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.