Click here to Skip to main content
16,005,236 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: is there anyway to move mouse to any point? Pin
ugur_basak27-Jun-05 6:32
ugur_basak27-Jun-05 6:32 
GeneralRe: is there anyway to move mouse to any point? Pin
toxcct27-Jun-05 6:39
toxcct27-Jun-05 6:39 
GeneralRe: is there anyway to move mouse to any point? Pin
BlackDice27-Jun-05 6:42
BlackDice27-Jun-05 6:42 
GeneralRe: is there anyway to move mouse to any point? Pin
Ravi Bhavnani27-Jun-05 6:45
professionalRavi Bhavnani27-Jun-05 6:45 
GeneralRe: is there anyway to move mouse to any point? Pin
ugur_basak27-Jun-05 21:00
ugur_basak27-Jun-05 21:00 
GeneralRe: is there anyway to move mouse to any point? Pin
Ravi Bhavnani28-Jun-05 1:29
professionalRavi Bhavnani28-Jun-05 1:29 
GeneralNo windows messages Pin
bartvandiepen27-Jun-05 5:12
bartvandiepen27-Jun-05 5:12 
GeneralRe: No windows messages Pin
David Crow27-Jun-05 5:55
David Crow27-Jun-05 5:55 
You must be doing something wrong with your modeless dialog. This worked for me:

CMyDialog::CMyDialog( CWnd *pParent ) : CDialog( CMyDialog::IDD, pParent )
{
    Create(IDD);
}
 
BEGIN_MESSAGE_MAP(CMyDialog, CDialog)
    ON_WM_TIMER()
END_MESSAGE_MAP()
 
BOOL CMyDialog::OnInitDialog() 
{
    CDialog::OnInitDialog();
    SetTimer(1234, 50, 0);
    return TRUE;
}
 
void CMyDialog::OnTimer(UINT nIDEvent) 
{
    TRACE(_T("OnTimer()\n"));
    CDialog::OnTimer(nIDEvent);
}
...
CMyDialog *pDlg = new CMyDialog;
pDlg->ShowWindow(SW_SHOWNORMAL);



"Ideas are a dime a dozen. People who put them into action are priceless." - Unknown


Generalretrieving html from a website Pin
Bralyan27-Jun-05 5:03
Bralyan27-Jun-05 5:03 
GeneralRe: retrieving html from a website Pin
Frank K27-Jun-05 5:35
Frank K27-Jun-05 5:35 
GeneralRe: retrieving html from a website Pin
Ravi Bhavnani27-Jun-05 5:57
professionalRavi Bhavnani27-Jun-05 5:57 
GeneralAnother thought Pin
bugDanny27-Jun-05 5:02
bugDanny27-Jun-05 5:02 
GeneralRe: Another thought Pin
Blake Miller27-Jun-05 5:04
Blake Miller27-Jun-05 5:04 
GeneralRe: Another thought Pin
bugDanny27-Jun-05 8:16
bugDanny27-Jun-05 8:16 
GeneralRe: Another thought Pin
ugur_basak27-Jun-05 5:06
ugur_basak27-Jun-05 5:06 
GeneralDialogs in Visual C++ -- Buttons Pin
bugDanny27-Jun-05 4:43
bugDanny27-Jun-05 4:43 
GeneralRe: Dialogs in Visual C++ -- Buttons Pin
David Crow27-Jun-05 4:50
David Crow27-Jun-05 4:50 
GeneralRe: Dialogs in Visual C++ -- Buttons Pin
bugDanny27-Jun-05 5:03
bugDanny27-Jun-05 5:03 
GeneralRe: Dialogs in Visual C++ -- Buttons Pin
toxcct27-Jun-05 6:22
toxcct27-Jun-05 6:22 
GeneralCom ports Pin
act_x27-Jun-05 4:34
act_x27-Jun-05 4:34 
GeneralRe: Com ports Pin
TFrancis27-Jun-05 5:28
TFrancis27-Jun-05 5:28 
GeneralRe: Com ports Pin
erkanina28-Jun-05 2:05
erkanina28-Jun-05 2:05 
GeneralRe: Com ports Pin
Blake Miller28-Jun-05 4:23
Blake Miller28-Jun-05 4:23 
GeneralWeird problem - UI related Pin
Don Miguel27-Jun-05 4:29
Don Miguel27-Jun-05 4:29 
GeneralRe: Weird problem - UI related Pin
Daniel Turini27-Jun-05 4:46
Daniel Turini27-Jun-05 4: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.