Click here to Skip to main content
16,008,299 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: RSA algorithm Pin
Miroslav Rajcic31-Jan-03 3:40
Miroslav Rajcic31-Jan-03 3:40 
Questionping? Pin
Anonymous31-Jan-03 0:45
Anonymous31-Jan-03 0:45 
AnswerRe: ping? Pin
Abbas_Riazi31-Jan-03 1:25
professionalAbbas_Riazi31-Jan-03 1:25 
GeneralRe: ping? Pin
naradaji31-Jan-03 3:21
naradaji31-Jan-03 3:21 
GeneralRe: ping? Pin
verbatimbot7-Jun-11 0:35
verbatimbot7-Jun-11 0:35 
Generala dialog applicaion assosciated with system tray Pin
rohit.dhamija30-Jan-03 23:41
rohit.dhamija30-Jan-03 23:41 
GeneralRe: a dialog applicaion assosciated with system tray Pin
Rage31-Jan-03 0:05
professionalRage31-Jan-03 0:05 
GeneralRe: a dialog applicaion assosciated with system tray Pin
Abbas_Riazi31-Jan-03 0:08
professionalAbbas_Riazi31-Jan-03 0:08 
In OnInitDialog, Set a timer to lunch. In OnTimer member function, use,
App.HideApplication!
Here is an example:

BOOL CMyDialog::OnInitDialog()
{
    //...
    SetTimer(1, 1, NULL);
    //...
    return TRUE;
}

void CMyDialog::OnTimer(int nTimerID)
{
    theApp.HideApplication();
    KillTimer(1);

    CDialog::OnTimer(nTimerID);
}

Remember that before implementation of any dialog member function, you must add this code:
extern CYourApplication theApp;

A. Riazi
GeneralRe: a dialog applicaion assosciated with system tray Pin
rohit.dhamija31-Jan-03 0:20
rohit.dhamija31-Jan-03 0:20 
GeneralRe: a dialog applicaion assosciated with system tray Pin
Abbas_Riazi31-Jan-03 0:34
professionalAbbas_Riazi31-Jan-03 0:34 
GeneralInternational settings Pin
Rage30-Jan-03 23:19
professionalRage30-Jan-03 23:19 
GeneralRe: International settings Pin
Mike Eriksson3-Feb-03 4:24
Mike Eriksson3-Feb-03 4:24 
GeneralQuestion about new operator. Pin
George230-Jan-03 23:16
George230-Jan-03 23:16 
GeneralRe: Question about new operator. Pin
Hans Ruck31-Jan-03 1:00
Hans Ruck31-Jan-03 1:00 
GeneralRe: Question about new operator. Pin
George231-Jan-03 3:16
George231-Jan-03 3:16 
GeneralRe: Question about new operator. Pin
Hans Ruck31-Jan-03 3:35
Hans Ruck31-Jan-03 3:35 
GeneralRe: Question about new operator. Pin
George231-Jan-03 4:28
George231-Jan-03 4:28 
GeneralRe: Question about new operator. Pin
Anonymous31-Jan-03 5:18
Anonymous31-Jan-03 5:18 
GeneralRe: Question about new operator. Pin
George231-Jan-03 17:52
George231-Jan-03 17:52 
GeneralWIN32 SDK : GetWindowDC works, GetDCEx doesn't Pin
30-Jan-03 23:11
suss30-Jan-03 23:11 
GeneralReplacing and resizing of the controls in formview to bestfit of Monitor on change system resolution Pin
sulaxan30-Jan-03 22:11
sulaxan30-Jan-03 22:11 
QuestionAny good references? Pin
dsuratman30-Jan-03 20:57
dsuratman30-Jan-03 20:57 
AnswerRe: Any good references? Pin
LittleYellowBird30-Jan-03 23:51
LittleYellowBird30-Jan-03 23:51 
AnswerRe: Any good references? Pin
Abbas_Riazi31-Jan-03 0:13
professionalAbbas_Riazi31-Jan-03 0:13 
AnswerRe: Any good references? Pin
Lhenno Ferrari31-Jan-03 0:22
Lhenno Ferrari31-Jan-03 0:22 

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.