Click here to Skip to main content
15,898,134 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Bounding box of a set of points... Pin
Antony M Kancidrowski23-Aug-04 4:18
Antony M Kancidrowski23-Aug-04 4:18 
GeneralCHexEdit search problem (MFC) Pin
evrenpredator23-Aug-04 0:51
evrenpredator23-Aug-04 0:51 
GeneralRe: CHexEdit search problem (MFC) Pin
Antony M Kancidrowski23-Aug-04 3:10
Antony M Kancidrowski23-Aug-04 3:10 
GeneralRe: CHexEdit search problem (MFC) Pin
David Crow23-Aug-04 3:26
David Crow23-Aug-04 3:26 
GeneralRe: CHexEdit search problem (MFC) Pin
evrenpredator23-Aug-04 23:05
evrenpredator23-Aug-04 23:05 
GeneralRe: CHexEdit search problem (MFC) Pin
David Crow25-Aug-04 5:22
David Crow25-Aug-04 5:22 
QuestionHow To Find Out Where My Programm is Placed Pin
Rassul Yunussov22-Aug-04 23:55
Rassul Yunussov22-Aug-04 23:55 
AnswerRe: How To Find Out Where My Programm is Placed Pin
Michael P Butler23-Aug-04 0:37
Michael P Butler23-Aug-04 0:37 
CString strApplicationDir;
char szPath[_MAX_PATH];
GetModuleFileName(NULL, szPath, _MAX_PATH);
strApplicationDir = szPath;
int nPos = strApplicationDir.ReverseFind('\\');
if (nPos != -1)
    strApplicationDir = strApplicationDir.Left(nPos);


Michael

CP Blog [^]

AnswerRe: How To Find Out Where My Programm is Placed Pin
David Salter23-Aug-04 0:39
David Salter23-Aug-04 0:39 
General"Random Access" writing to files Pin
Jon Hulatt22-Aug-04 22:16
Jon Hulatt22-Aug-04 22:16 
GeneralRe: "Random Access" writing to files Pin
David Salter22-Aug-04 22:27
David Salter22-Aug-04 22:27 
GeneralRe: "Random Access" writing to files Pin
Jon Hulatt22-Aug-04 22:49
Jon Hulatt22-Aug-04 22:49 
GeneralRe: "Random Access" writing to files Pin
David Salter22-Aug-04 23:36
David Salter22-Aug-04 23:36 
GeneralMany tabs using one serial port Pin
chauteen22-Aug-04 22:09
chauteen22-Aug-04 22:09 
GeneralRe: Many tabs using one serial port Pin
ThatsAlok23-Aug-04 1:13
ThatsAlok23-Aug-04 1:13 
GeneralLinker problems Pin
alex.barylski22-Aug-04 21:59
alex.barylski22-Aug-04 21:59 
GeneralRe: Linker problems Pin
De Nardis Andrea23-Aug-04 0:03
De Nardis Andrea23-Aug-04 0:03 
QuestionDavidCrow does't know this any one knows this? Pin
kriaz22-Aug-04 21:40
kriaz22-Aug-04 21:40 
AnswerRe: DavidCrow does't know this any one knows this? Pin
alex.barylski22-Aug-04 21:55
alex.barylski22-Aug-04 21:55 
AnswerRe: DavidCrow does't know this any one knows this? Pin
Maximilien23-Aug-04 0:56
Maximilien23-Aug-04 0:56 
AnswerRe: DavidCrow does't know this any one knows this? Pin
Antony M Kancidrowski23-Aug-04 3:05
Antony M Kancidrowski23-Aug-04 3:05 
AnswerRe: DavidCrow does't know this any one knows this? Pin
Jeremy Falcon23-Aug-04 6:51
professionalJeremy Falcon23-Aug-04 6:51 
GeneralCFile gives me 0x20 (ERROR_BAD_UNIT) but fopen doesn't Pin
baboguru22-Aug-04 21:10
baboguru22-Aug-04 21:10 
GeneralRe: CFile gives me 0x20 (ERROR_BAD_UNIT) but fopen doesn't Pin
vcplusplus23-Aug-04 3:14
vcplusplus23-Aug-04 3:14 
GeneralRe: CFile gives me 0x20 (ERROR_BAD_UNIT) but fopen doesn't Pin
baboguru23-Aug-04 16:05
baboguru23-Aug-04 16:05 

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.