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. BlackHorus

    ANT native version

    is there a compiled, not a byte-code version for windows, and linux... or is there another native build tool (not in java) ?
  2. BlackHorus

    How do I manipulate a control in a dialog?

    use EnableWindow(GetDlgItem(...,...),FALSE) to deactivate it, and ShowWindow(..) to hide it
  3. BlackHorus

    Opening another window in Visual C++

    u mean open a dialogbox... Create one with ressource editor, then call it with DialogBox(). the dialog need to have a windows procedre, but it would return false, rather than calling DefWindowProc().
  4. BlackHorus

    TCP/IP programming

    try to search with google for the keyword "winsock"
  5. BlackHorus

    Converting from Int to String

    1 question: try with printf family GetFps(fps); printf(str,"%d",fps); PrintString(listBase, str); don't forget to allocate memor for str. 2 question : if u mean String the class string then u can use str.append(str2); or str += str2;
  6. BlackHorus

    How to run exetrnal exe file in c++ code

    look to CreateProcess(), and ShellExectue()

Part and Inventory Search

Back
Top