Click here to Skip to main content
15,910,009 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Single Instance Pin
Alexandru Savescu12-Apr-02 4:48
Alexandru Savescu12-Apr-02 4:48 
Questionwhy these code can't work well? Pin
white jungle12-Apr-02 0:27
white jungle12-Apr-02 0:27 
AnswerRe: why these code can't work well? Pin
Roger Allen12-Apr-02 1:20
Roger Allen12-Apr-02 1:20 
GeneralRe: why these code can't work well? Pin
white jungle12-Apr-02 2:04
white jungle12-Apr-02 2:04 
GeneralRe: why these code can't work well? Pin
Roger Allen12-Apr-02 2:56
Roger Allen12-Apr-02 2:56 
AnswerRe: why these code can't work well? Pin
Ravi Bhavnani12-Apr-02 2:30
professionalRavi Bhavnani12-Apr-02 2:30 
Generaldetecting an active internet connection... Pin
l a u r e n12-Apr-02 0:19
l a u r e n12-Apr-02 0:19 
GeneralRe: detecting an active internet connection... Pin
12-Apr-02 0:44
suss12-Apr-02 0:44 
BOOL CheckInternetConnection(char *strError) {
CString g_strURL = "http://www.indiatimes.com";
LPVOID pParam=NULL;
CInternetSession session;
BOOL bConnectFlag = FALSE;
CStdioFile* pFile1 = NULL;
try {
pFile1 = session.OpenURL(g_strURL, 0, INTERNET_FLAG_TRANSFER_BINARY | INTERNET_FLAG_KEEP_CONNECTION | INTERNET_FLAG_RELOAD); // needed for Windows NT c/r authentication
if(pFile1 != NULL) {
bConnectFlag = TRUE;
delete pFile1;
} else
bConnectFlag = FALSE;
} catch(CInternetException* e) {
LogInternetException1(strError,e);
e->Delete();
bConnectFlag = FALSE;
}
return bConnectFlag;
GeneralRe: detecting an active internet connection... Pin
l a u r e n12-Apr-02 1:27
l a u r e n12-Apr-02 1:27 
GeneralRe: detecting an active internet connection... Pin
James R. Twine12-Apr-02 9:43
James R. Twine12-Apr-02 9:43 
QuestionPress any Key to Continue?? Pin
12-Apr-02 0:01
suss12-Apr-02 0:01 
AnswerRe: Press any Key to Continue?? Pin
Brian Delahunty11-Apr-02 23:58
Brian Delahunty11-Apr-02 23:58 
GeneralRe: Press any Key to Continue?? Pin
12-Apr-02 0:20
suss12-Apr-02 0:20 
GeneralRe: Press any Key to Continue?? Pin
Christian Graus12-Apr-02 0:36
protectorChristian Graus12-Apr-02 0:36 
GeneralModify file dates Pin
11-Apr-02 23:56
suss11-Apr-02 23:56 
GeneralRe: Modify file dates Pin
Brian Delahunty11-Apr-02 23:59
Brian Delahunty11-Apr-02 23:59 
GeneralRe: Modify file dates Pin
12-Apr-02 0:35
suss12-Apr-02 0:35 
GeneralRe: Modify file dates Pin
Mazdak12-Apr-02 1:13
Mazdak12-Apr-02 1:13 
GeneralRe: Modify file dates Pin
James R. Twine12-Apr-02 9:45
James R. Twine12-Apr-02 9:45 
QuestionHow could i put a modeless behind the parent? Pin
Hans Ruck11-Apr-02 23:54
Hans Ruck11-Apr-02 23:54 
AnswerRe: How could i put a modeless behind the parent? Pin
James R. Twine12-Apr-02 9:48
James R. Twine12-Apr-02 9:48 
GeneralRe: How could i put a modeless behind the parent? Pin
Hans Ruck14-Apr-02 21:19
Hans Ruck14-Apr-02 21:19 
GeneralUsing Borland's MAKE.EXE 3.6 in Win2k Pin
Lars VJ11-Apr-02 21:21
Lars VJ11-Apr-02 21:21 
GeneralWin32 Application using Controls Pin
Grant Cooper11-Apr-02 21:21
Grant Cooper11-Apr-02 21:21 
GeneralRe: Win32 Application using Controls Pin
Nish Nishant11-Apr-02 21:42
sitebuilderNish Nishant11-Apr-02 21:42 

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.