Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. Dudiav

    edit control in win98

    OK i solved the problem. in Win98 the list-control (the parent) lost the focus. Therefore, the created child (the editor control) could not get focus even when calling SetFocus()
  2. Dudiav

    edit control in win98

    I have downloaded a list editor sample. It works fine in winNT. However, in Win98 when navigating through the list cells by the keyboard, the edited text is not selected, as it does in WinnT. Could someone, please, try to download the sample and run it in WinnT and Win98...
  3. Dudiav

    Program too big for memory on a console app

    Did you define a local variable that might exceeds the stack size? for example: char szXX[10*1024]; // 10Mb memory storage. This definition is exceeds the stack size.
  4. Dudiav

    Derived classes and function parameters...

    1. Copy "#define ARY 100" to the h file. 2. Change the data members to: char cFName [ARY]; char cLName [ARY]; 3 Remove those statements from the constructor.
  5. Dudiav

    Simulate mouse movement and click

    Use mouse_event function
  6. Dudiav

    RTL layout for message box

    It is base on hooking. Check the following: http://www.gipsysoft.com/messagebox/

Part and Inventory Search

Back
Top