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 SkipVought 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. danielnogo

    Having problem with offline java pages...

    Hi, I'm trying to get an applet to work while I'm not online, but it doesnt seem to work, but I have the JRE installed. Any tips?
  2. danielnogo

    Need help with capturing the arrow keys (when pressed)

    Do you have Visual C++? Otherwise making windows is a big pain in the butt.
  3. danielnogo

    Dialog Problems...

    Im having a problem with a dialog box I made. I want it to come up when the main dialog initializes itself, but I dont want it to stop any processes, I just want to have it pop up and float as a toolbox. Whats the code to do this? I know how to call the dialog, but cant get it to continue...
  4. danielnogo

    How to take a string with only numbers and convert it to an int...

    Okay, so if I have a string that has just numbers inside of it, and I want to put it inside an int, i'd do this?: int TheNumbers= 0; atoi(m_sNums); Then, how do I load it into the integer variable?
  5. danielnogo

    How to take a string with only numbers and convert it to an int...

    Is there anyway to take a string with only numbers and covert it to an integer? I know you can do it vice versa.
  6. danielnogo

    Edit box and integer...

    Thanks! That worked perfect.
  7. danielnogo

    Edit box and integer...

    it has to be a string attached to the edit box, I just need to be able to put the int inside the cstring and display it in the edit box.
  8. danielnogo

    Very frustrated beginner needs help...

    It depends if you want to do an mfc app, a console app, or a win 32 app. For begginers with mfc, the best is an MFC app, and name it, then put dialog based, then click next through the wizard then finish. A console app is your normal C++ dos app. A win32 app is kind of like aa dos app cept for...
  9. danielnogo

    Edit box and integer...

    Im making a calculator and have an edit box that has a cstring variable attached to it, I need to be able to make the edit box also accept int variables though becuase of the way my program is set up. I've tried everything I know how to do, can you help?
  10. danielnogo

    Graphics?

    NM, I found a GFX lib called allegro awhile back, but just now figured out how to install it.
  11. danielnogo

    What's a good Windows Programming starter book?

    I have an e-book I could send you. It has a couple errors though, getting the popup menus to work there way never works.
  12. danielnogo

    Graphics?

    Okay, call me stupid, but nobody seems to know how to do basic graphic functions in C++. I want to just do some basic stuff to expand my C++ knowledge but cant find any tutorials online besides things like open gl and direct x. Anyone know how to do graphics in a console app?
  13. danielnogo

    Visual C++ popup menus...

    Hey, thanks alot, it worked :) But is there a way to display the whole menu as a popup, not just the sub menus?
  14. danielnogo

    Visual C++ popup menus...

    Popup menus have been the bane of my existance in visual c++. Im following a tutorial that came with a cd I got and this is the code it gives me for OnContextMenu(): void CPopupMenuDlg::OnContextMenu(CWnd* pWnd, CPoint point) { // TODO: Add your message handler code here CMenu *m_lMenu...
  15. danielnogo

    Resource Files...

    K thanks alot :)
  16. danielnogo

    Resource Files...

    I'm following a tutorial for direct x. They say to make a new resource file and then it gives you code to add to the resource file. I could just add new tooldbars and things like that, but I'd rather do it their way. How do you edit the actual code for the resource file? Whenever I double click...

Part and Inventory Search

Back
Top