Search:

Type: Posts; User: cguest19

Search: Search took 0.00 seconds.

  1. Replies
    8
    Views
    3,644

    Try setting the height of the combo box to...

    Try setting the height of the combo box to something like 100 and see if that works for you.

    Good luck,
    Chris
  2. Thread: Empty classes

    by cguest19
    Replies
    11
    Views
    1,578

    What you have there is a forward class...

    What you have there is a forward class declaration, which is a lot like a function prototype for classes. In the posts before, s/he was trying to create an actual empty class.

    Hope that makes...
  3. Replies
    1
    Views
    1,807

    Re: Combobox dropdown

    Isn't it funny how you can spend 3 days searching for something, then finally post the question, only to find the answer minutes later? :)

    Anyway, in case anyone is interested, when you specify...
  4. Replies
    1
    Views
    1,807

    Combobox dropdown

    I've created a combobox with the CBS_DROPDOWNLIST style, and added some strings with CB_ADDSTRING.

    The strings are loaded in the combobox, but it won't drop down. It works fine in Windows XP, but...
  5. Thread: GetSystemTime

    by cguest19
    Replies
    2
    Views
    6,312

    Try using GetLocalTime instead of GetSystemTime....

    Try using GetLocalTime instead of GetSystemTime.

    Good luck,
    Chris
  6. Thread: VB.net IDE

    by cguest19
    Replies
    6
    Views
    1,098

    Check out SharpDevelop... ...

    Check out SharpDevelop...

    http://www.icsharpcode.net/OpenSource/SD/

    Chris
  7. Replies
    4
    Views
    1,081

    Just a guess, but is comdlg32.lib linked in your...

    Just a guess, but is comdlg32.lib linked in your project?

    Good luck,
    Chris
  8. Replies
    1
    Views
    1,501

    RE: Create DateTimePicker in Windows 98

    I finally got it working after hours of banging my head against the wall.

    Before I was calling InitCommonControlsEx right after registering my window class. I moved it to the WM_CREATE message...
  9. Replies
    1
    Views
    1,501

    Create DateTimePicker in Windows 98

    I've created a DateTimePicker with this code:


    void CreateControls(HWND hwnd) {
    HWND dtpTest = CreateWindowEx(
    0, DATETIMEPICK_CLASS, NULL,
    WS_VISIBLE | WS_CHILD |...
Results 1 to 9 of 9