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: *

  • Users: icujc
  • Order by date
  1. icujc

    has anyone here tried using boson

    I haven't used it for the Microsoft tests but I did use it for the CCNA and it was excellent.
  2. icujc

    Free Retakes on 2003 tests

    opps the link didn't take. Here http://www.pearsonvue.com/ms/2ndshot/
  3. icujc

    Free Retakes on 2003 tests

    Don't have the microsoft web page but can point you to this: http://www.pearsonvue.com/ms/2ndshot/ and I also called New Horizons the prometric testing site where I live and they said the Second Chance retake exams are good until sept 30. Call your local testing center for verification if you...
  4. icujc

    Free Retakes on 2003 tests

    Just thought I would let everyone know that Microsoft is offering free retakes untill Sep, 30, 2004 on Microsofts 2003 MCSE, and MCSA tests.
  5. icujc

    String to Executable Code

    Your going to have to change data types from string to Double or Float here is an example call to change to Double: stringToDouble double val = Convert.stringToDouble (digitString, defaultValue); stringToFloat float val = Convert.stringToFloat (digitString, (float) defaultValue); Hope...
  6. icujc

    maximum value for a variable

    Here there is probably a better way to do this but I had this laying around so I thought I would give it to you ;) using namespace std; int main() { float time = 6.70; int minutes = int(time); float seconds = time - float(minutes); if(seconds>.59) { seconds = seconds - .59; time...
  7. icujc

    External dependencies

    Your going to have to use a installation program for your project if it requires DLL's not on the user's computer Visual Studio's comes with one or you can purchase one from someone.
  8. icujc

    Simple switch not working

    Or just add a cin.get() or a System(pause) before the return from main...
  9. icujc

    Newbie Here

    To write your code the easiest way to do it is click the new icon on the toolbar and save it as a *.cpp file. Then write your code and compile it to run the program. the shortcut key to compile is Ctrl-F7. The proper way to start a new project is Click File->New then a pop up dialog box will...
  10. icujc

    Newbie Here

    What compiler are you using? Some compilers do not support line numbers...
  11. icujc

    Simple switch not working

    i don't see anything wrong with your switch case but if it is giving you problems try stepping through it with the debugger. This will allow you to visually see where and what is going on with your code. ;)
  12. icujc

    XP upgrade

    Just do an upgrade by running the XP pro disk in windows. Don't do a clean install because that will erase everything.. Oh and what are you upgrading from? Some versions of windows can't be upgraded and a clean install is required. Hope that helps...
  13. icujc

    Keyboard and Mouse problems

    Have you checked to see if there are any driver updates. The ones windows used may not be the best ones.
  14. icujc

    solution window dissapears when i run the program

    add cin.get() just before return 0; that way you have to hit enter before it returns out of main()... ;)
  15. icujc

    Windows Installer problem

    Have you tried uninstalling it and then reinstalling it? That might fix your problem ;)

Part and Inventory Search

Back
Top