CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: orokusaki

Search: Search took 0.07 seconds.

  1. Re: Arg! I cannot hide this MFC to save my life!

    DialogBox( hInstance, ( LPCTSTR )IDD_SAMPLE1_DIALOG, NULL, ( DLGPROC )EM2800PropProc );
    That line seems to show the DialogBox....

    It runs after the ShowWindow and CreateWindow lines... the ones...
  2. Re: Arg! I cannot hide this MFC to save my life!

    I did.. I changed it to.. and used it twice.. (from some other thread). Still shows a window. I also tried ShowWindow( hWnd, 0 );

    The window shows even if I comment out ShowWindow, Update...
  3. Re: Arg! I cannot hide this MFC to save my life!

    I have modified the sample to go straight to the timer and all this stuff I needed.
    The LAST thing I thought would be SO SIMPLE would be... Hiding a Window without using another program....

    Sigh!...
  4. Re: Arg! I cannot hide this MFC to save my life!

    Yeah.. I don't quite understand.. I just want to make the window invisible to the user.
    Either moving the window position, or etc.. I don't care.

    Thanks!
  5. Arg! I cannot hide this MFC to save my life!

    http://read.pudn.com/downloads125/sourcecode/multimedia/vfw/530808/SDK121806/BDASample/emsample.cpp__.htm

    That is the code.. I have tried ALL sorts of stuff... For HOURS...

    Please help.
    ...
  6. Replies
    4
    Views
    1,837

    Re: Need some help.

    All fixed! Thanks!

    When in doubt, try everything! =)

    Yeah its to interface with AutoHotKey.
  7. Replies
    4
    Views
    1,837

    Re: Need some help.

    else
    {
    m_RegValue.Format(_T("%02X"),Value);
    m_StatusMsg = _T("Backend Register Read Success!");
    if ( etLib2_RegRead = (Addr, 1, 47))
    {
    keybd_event(0x21, 0, 0, 0);
    }
    }
  8. Replies
    4
    Views
    1,837

    Re: Need some help.

    else
    {
    m_RegValue.Format(_T("%02X"),Value);
    m_StatusMsg = _T("Backend Register Read Success!");
    }

    Perhaps I could do something with this.... I want an event in between those 2 lines...
  9. Replies
    4
    Views
    1,837

    Need some help.

    Can anyone help me with this.. I have gotten so close, but yet so far away.

    Need this to be changed to where if the Value is 47 then a keyboard event will happen. The default value is 00. I have...
Results 1 to 9 of 9





Click Here to Expand Forum to Full Width

Featured