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

  • Users: HEbrahimi
  • Order by date
  1. HEbrahimi

    link problem

    Hi mscallisto, Take a look at this: http://webster.cs.ucr.edu/Page_TechDocs/MASMDoc/ProgrammersGuide/Appendix_A.htm And you can read MASM Reference Guide: http://webster.cs.ucr.edu/Page_TechDocs/MASMDoc/index.html HTH
  2. HEbrahimi

    Books for learning VC++ 6.0?

    Programming Windows by Charles Petzold(you can find it online) is the best book if you know C/C++, and after that you can start VC. Using Visual C++ and VC Bible are good.
  3. HEbrahimi

    Renaming files via C++ ; Is it possible ?

    yes, it's possible, search old messages. you can find your answer.
  4. HEbrahimi

    returning vectors

    i think it's not right: char *function( .... ) { char *array = new char[15]; ... ..... return array; //*** here, function ends and delete array; //*** delete does not work, //*** end of block delete array(?) }
  5. HEbrahimi

    i like to use optional argument for

    vc is c++,use predifined arguments.look at this: void fun(char *file1="",char *file2=""); you can call: fun ( "file1.cpp" ); or fun ( "file1.cpp", "file2.cpp" );
  6. HEbrahimi

    Certificate exams in C++

    see this: http://www.brainbench.com
  7. HEbrahimi

    Certificate exams in C++

    see this: www.brainbench.com
  8. HEbrahimi

    Operating System

    This is a good site for you, http://www.mega-tokyo.com/os/os-faq.html
  9. HEbrahimi

    Beta Testers needed

    Hi, I can help you, and execute it on XP, I want to know how do you disable Ctrl+Alt+Del on XP(Pro) or 2000(Pro). This is my homepage www.geocities.com/heshamebrahimi And I study for MCSD and MCAD. My email heshamebrahimi@msn.com
  10. HEbrahimi

    how to: programatically detect installed anti-virus ??

    hi, and you can use registry, and search virus key. it's easy.
  11. HEbrahimi

    How to make a (time) delay function.

    In VC use: " ::Sleep(ms) "

Part and Inventory Search

Back
Top