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. JackMorris

    mouse pointer going crazy

    Hi all, I am having some strange thing with my mouse. When i move mouse the mouse pointer moves to the different points on the screen quickly and opens different windows. I dont click the mouse, the only thing i do is just move the mouse............and here starts the problem the mouse pointer...
  2. JackMorris

    How to measure execution time?

    Hi, Does anybody has an idea on how to measure the execution time in Visual C++6.0? thanx in advance Jack
  3. JackMorris

    Address conversion

    I would like to do following things: 1. Allocate the memory to store 10 integer values. 2. Store the 10 random values in the allocated memory. 3. Get the address of the first value stored. ( The address will be in hexadecimal). 4. Convert the hexadecimal address value into decimal value. 5. Add...
  4. JackMorris

    CheckSum Error

    I have following error message coming up when I boot up my PC: CMOS checksum error-defaults loaded Warning!CPU has been changed Please re-enter CPU settings in the CMOS setup Remember to save before quitting. Suggested SDRAM latency time is "2" Please suggest what is the solution...
  5. JackMorris

    0xC0000005 access violation

    My program crashes at this point. does anyone has any idea what could be the probable reasons. (these codes are generated by Microsoft visual C++) ============================================================ offRegion = (unsigned int)pvAlloc - (unsigned int)pHeader->pHeapData; indGroup...
  6. JackMorris

    plz suggest some articles on single thread, multi thread

    Thanx Senthil, I am still looking for comprehensive knowledge on it. Jack
  7. JackMorris

    plz suggest some articles on single thread, multi thread

    Hi, In selection of the run-time library(single threaded, multithread DLL,Debug Multi threaded DLL etc) I find difficulty in which one should I pick. Can anyone suggest me a conceptual article on this or can anyone make me clear on it. thanx in advance. jack
  8. JackMorris

    User break point called from code.......

    Hi, I have following error when I run the program "user break point called from code 0x77fa018c" can anyone help me out to get rid of this problem? Thanx in advance Jack
  9. JackMorris

    run time memory location

    thanx pete and Radu.... I will implement the suggestion of Radu. If it doesnt work I will explain the error in detail. Jack
  10. JackMorris

    malloc( )- is there any size limit

    is there any size limit in defining the runtime memory with malloc() ? thanx.
  11. JackMorris

    run time memory location

    it is runtime error.
  12. JackMorris

    run time memory location

    let me know if it is enough...if not i will post more for(no_mixing=0; no_mixing<NO_IMAGES; no_mixing++) { ptr_pri_img_red_part=new unsigned char; ptr_pri_img_green_part=new unsigned char; ptr_pri_img_blue_part=new unsigned char; -----------; -----------; }
  13. JackMorris

    run time memory location

    I want to allocate run time memory with new operator inside a for loop. It does fine for the first time but wouldnt work for the second time (and then after) of the for loop. Is there any way out? 1.I dont want that memory after I finish that loop...I tried to delete with delete operator at the...
  14. JackMorris

    how to stop program execution ( follow up)

    thanx to tchouch and pencilbiter answering my question. Isnt there any options to stop the program execution at any time during its execution? Using SetTimer() is an option if i know when i would like to stop the execution.If i want to stop while it is running ( as like in stop build option in...
  15. JackMorris

    how to stop program execution

    A project which I am doing takes 6 mins as an execution time. If I want the program execution to stop at 3 mins how can i do that?
  16. JackMorris

    how to find build time and run time

    In visual C++ how can I keep record of how much time it required for me to build my project and how much time it required to run my project? Thanx in advance. Jack
  17. JackMorris

    how to find key word

    How can I search for a particular word that might be in any files that is included in a project? for e.g. if i have a project called 'Test' in Visual C++ and there are 100 files as part of 'Test' project. If there is defined the value of NUMBER as #define NUMBER 222 in any one of 100...
  18. JackMorris

    How to enable Profiling?

    HI, I want to enable profiling. I first went to project settings->link ( general)-> and then selected 'enable profiling'. Then I re-compiled my program. After finishing compiling. I went to Build-> Profile but the profile option is disabled. Can anybody tell me how can I get my Profiling...

Part and Inventory Search

Back
Top