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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by Wings

  1. Wings

    Borland resizing form during build?

    Hi, I have an application the builds perfectly well on one machine, yet for some reason the height and width are changed during the build process on another. The actual design values of height and width in the .dfm are changed. The application is designed to run at 1680 x 1050 (wide screen) and...
  2. Wings

    Form resized during build?

    Hi, I have an application the builds perfectly well on one machine, yet for some reason the height and width are changed during the build process on another. The actual design values of height and width in the .dfm are changed. The application is designed to run at 1680 x 1050 (wide screen) and...
  3. Wings

    Tool tips not working in IDE

    Hello, I am using BDS, borland c++ builder. The tool tips in the ide are not working, ie. I hover over the save icon and i dont get the tool tip thats says "Save (Ctrl + S)". Show tool tips is checked on the options menu. Any ideas? thanks.
  4. Wings

    Reading in wrong file

    Thanks for the response. My issue is that I have the application running fine, but when I check it into and then pull it down from our source control system the version of winuser.h it points to is incorrect. I need to know where visual studio sets these paths. I am going to run the end resut on...
  5. Wings

    Reading in wrong file

    Hi, When building in visual studio 2005, there are multiple instances of winuser.h on the machine. I need it to read one instance for a windows CE build but it defaults to the version in the visualstudio/platform/sdk. how do I change it? Please note this is not a path I have added in my project...
  6. Wings

    Adding a library to my project

    Hello, I have a vc++ 6.0 project. I have a a .lib file with the corresponding header file. How do I add the Library to my project to be able to use the functions and classes contained inside it? Thank you
  7. Wings

    Tab Control

    you may want to look into Propertypages and propertysheets, I always preffered these to tab controls.
  8. Wings

    structure conersion to char*

    Hello, I have a function that wants a char* as a parameter. I want to pass it a structure, and then traverse it with pointer addition, for example if the first field in the structure was a short and i wanted to get to the second I would do something like: char *passed_in_value *= (4 *...
  9. Wings

    Refresh of the mainfrm

    UpdateData(FALSE); May work for you
  10. Wings

    Static Text gets cut off in a dialog box??

    If you are using a static text control, you are going to have that problem. The control by default will auto wrap the text if it is to long, so if you increase the height of the control in the resource editor, it will wrap the text to the next line. If you cannot make the control large enough to...
  11. Wings

    Static Text gets cut off in a dialog box??

    Is your static text wide enough to handle that string without truncating it? That control does not auto adjust itself to the width of its string.
  12. Wings

    Function that can take anything as a parameter?

    I guess I was thinking you could do something you cant. The best route to go is probably just to use overloaded functions. Thanks for the help.
  13. Wings

    GUI Question + One error

    you are now using managed c++ which is different from MFC. With a simple user interface like you are making, that should work just fine. Good luck.
  14. Wings

    Function that can take anything as a parameter?

    I want to take an object and an enumerated type as perameters. Based on the enumerated type, I want to cast the object to a particular type. Is it possible to do this with a CObject?
  15. Wings

    Function that can take anything as a parameter?

    Hello, I know it is possible, but I cant remember how to do it. I need to make a function that can take any object as a parameter. I think I use the CObject class but I could be wrong. Can anyone point me in the right direction. Thanks

Part and Inventory Search

Back
Top