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

Search:

Type: Posts; User: najet

Search: Search took 0.03 seconds.

  1. Replies
    2
    Views
    6,735

    Re: MSComCtl2.Animation

    Thats the problem, i cant directly use CWnd function. I need to have it as a activex control.
    I pass the activex class name to main program through there apis, and then internally use createcontrol....
  2. Replies
    7
    Views
    2,070

    Re: Showing loading animation or dialog box?

    Are you creating the dialog in different thread? If you don't, implementing cancel button might wont help.
    Try this below article
    http://www.codeguru.com/cpp/controls/controls/article.php/c2269/
  3. Replies
    2
    Views
    6,735

    MSComCtl2.Animation

    Hi there,
    I am using MSComCtl2.Animation control to show .avi files
    I am using CWnd::CreateControl to create the activex control.
    Everything works fine on 32 bit machine. But on my 64 box,...
  4. Replies
    1
    Views
    625

    Re: How can Dark Rectangle sides?

    use FillRect to draw rectangular border...
  5. Thread: Message Box

    by najet
    Replies
    7
    Views
    1,394

    Re: Message Box

    One way is to create your own dialog as a message box.
    In OnInitdialog start a timer, initialize the timer.
    handle OnTimer, which will be called when timer is over where dialog will destroy itself.
  6. Replies
    1
    Views
    635

    Re: Webpage embedded in C++

    Yes its possible, check here
    http://msdn.microsoft.com/en-us/library/aa752046.aspx
  7. Replies
    10
    Views
    1,623

    Re: Capture Windows KeyControls

    You will need to handle WM_GETDLGCODE and return DLGC_WANTALLKEYS

    Please read documenation on GETDLGCODE on msdn.

    http://msdn.microsoft.com/en-us/library/ms645425(VS.85).aspx
  8. Replies
    10
    Views
    1,385

    Re: Application crash without error

    May be you can use try catch at top level, and log the type of exception in catch (may be in some kind of log file.)
    I have used it at times, its helpful.
  9. Thread: VTable questions

    by najet
    Replies
    17
    Views
    3,096

    Re: VTable questions

    As you might know V-table is a mechanism which is used to achieve polymorphism...and its implementation details shouldnt matter to someone using C++...but yeah its always good to know...its...
  10. Replies
    1
    Views
    773

    Re: Getting Drives name

    Try using
    GetLogicalDriveStrings

    More details found on
    http://msdn.microsoft.com/en-us/magazine/cc164038.aspx
  11. Re: how to select multiple different Item and subItem in CListCtrl

    I think using grid control is better option for your requirement.
Results 1 to 11 of 11





Click Here to Expand Forum to Full Width

Featured