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 Mike Lewis 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. stefee

    Embedding VB into VC++

    Thank You AdamChamberlin, I believe that you are right the only way to do it is what you mentioned or just calling the VB.exe from inside the vc++ code. I possibly will have to recode some though to have them work properly together. I appreciate your response. Thanks again, Stefee :-)
  2. stefee

    Visual C++ in Windows NT (error)

    Thank you both for ur quick response. I will try this stuff now to see what happens. Thanks again. :-) stefee
  3. stefee

    Visual C++ in Windows NT (error)

    I’ve been programming a program, in visual c++, on windows 98 with ease. I decided to try it on windows 95, it still ran with ease. I had to put it on a windows NT system and it doesn’t run properly. The program runs but I don’t get the proper results. When I run the program through debug...
  4. stefee

    exit function ?

    you could even try //exit program exit(1); :-) stefee
  5. stefee

    How to open source code without workspace???

    if you want to open the whole project then when you select the file to open select the "Projectname.dsw" this will open the workspace and the project at once in vc++. shouldn't need to paste anything in. Hope this helps stefee
  6. stefee

    CString Question

    I am using a string and putting sql statment inside. example: CString hold; hold = "SELECT and some stuff"; hold += "FROM and some stuff"; hold += "WHERE and some stuff;"; return (hold); but the string is missing the last two characters in the string, so I counted...
  7. stefee

    CString Question

    Ok I need a programmer! I need to know if there is a way to make a string longer than 255 characters. I have a string that is 257 and it keeps dropping off the last two character. HELP ME :-) thanks in advance :-) stefee
  8. stefee

    Radio Buttons

    It’s an access database that does use ODBC and I’m programming in vc++ and pulling information into the program with the m_pSet->. Normally you can get info from the database using that (which I’m able to do) and replace data using it followed by an UpdateData(FALSE)-(which on the radio...
  9. stefee

    Radio Buttons

    Ok, I know this is a beginner question, but I need to know how to capture a radio button and save it to my access database. Well I can capture the value of the radio button and put it in a variable, but I cant seem to save it to the database. Any help would be greatly appreciated. Thanks in...
  10. stefee

    How to use Sub Projects

    This is working off of a dialog not SDI or MDI as a global variable declare CString CmdLinePass; __________________ create a function void ProjectDlg::SendCommand(CString PrgName) { CmdLinePass = PrgName; WinExec(CmdLinePass, SW_SHOW); }//PrgName is the variable name - not the actual...
  11. stefee

    How to change Title Bar

    I want to use one module for different things. Say for instance that you have an Order Form and a Detail Form. You can select either one of these by the menu option. (Remember: they are the same module/project). I want to display the 'Order' or 'Detail' in the top most title bar depending on...
  12. stefee

    Embedding SQL into VC++

    How do you embed SQL into Visual C++? I’ve found some resources on embedding SQL into C, but that isn’t helping me. I have to build a query in my program that searches several tables for matching data then displays it. I am currently using several nested loops, this works however, it slows...

Part and Inventory Search

Back
Top