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 Clay

  1. Clay

    Funticon error

    bool GetLicense(char szLicense[]) const;<br> <br> bFullLot = m_aRentalCars[m_nCurrentCarCount].SetLicense(RentalCar.GetLicense(char szLicense[])const;<br> <br> <br> error C2144: syntax error : missing ')' before type 'char'<br> <br> this error means that the editor is not recognizing szLicense[]...
  2. Clay

    Getting visual C++ to start a external program

    or if it is a windows application you just have to use the<br> WinExec("Notepad.exe", SW_SHOW) command.<br> <br> Whereas Notepad.exe is the name of the executable file.<br> Could be Whatever.exe.
  3. Clay

    How to write into combobox

    Hi Ann,<br> Use the InsertString Method:<br> <br> InsertString(nIndex, String);<br> <br> Index is the zero based index position in the combobox that<br> will recieve the string.<br> <br> String is the string or variable holding the string that you want to write.<br> <br> if you have a set...

Part and Inventory Search

Back
Top