CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Guest

    Control fails to Initialize (HELP)

    Greetings

    I have an SDI app which brings up a *modal* dialog when it starts up. I have added a modeless dialog with the modal dialog as its parent. This modeless dialog contains a number of Controls and OLE Controls, specifically;

    a FlexGrid control (Msflxgrd.ocx)
    a Tab Control (tabctl32.ocx)

    When I execute the program on the development machine, it runs fine, brings up the dialog, and populates the control. On a machine targeted for distribution, I get an error which I believe to be related to attempting to initialize the controls on this modeless dialog.

    Anyone with experience here? I have scoured the ms site for ideas on what dependencies I may be missing for these controls. No Luck thus far

    TIA

    Charlie

    [email protected]







  2. #2
    Join Date
    Apr 1999
    Posts
    4

    Re: Control fails to Initialize (HELP)

    Hi, there.

    I've been trough some problems like that. It was caused because I'm using a control (IPAddressCtrl) wich is available only if the CommCtl32.dll is the correct version or older (4.72); in other words, my app only works if Microsoft IE4.X is installed, or if I install the referred DLL that comes along with it over the "old" one.

    Maybe it helps you out. If is not that THE problem, maybe it is like that. :-)


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured