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

    msCMTSrvc.exe

    I assume you have a Compaq computer? I do, and the file is on mine. I think the program tries to retrieve advertising from the Compaq website. Perhaps msCMTsrvc is 'actively working' only when you push one of the special keyboard buttons, or click that Hot Deals icon.
  2. RandallW

    IE 6 Delay Typing URL in the Address Bar without the http:// prefix

    I've done an internet search, and no one has figured out the bride.ru problem. My spyware-checking programs don't seem to find out the problem, either.
  3. RandallW

    IE 6 Delay Typing URL in the Address Bar without the http:// prefix

    I too have this beautiful-Russian-brides popup situation...haven't found a website where someone has discovered what causes it. As for those pron popups, try looking through your processes in the Windows Task Manager, then check here: http://www.pacs-portal.co.uk/startup_pages/startup_full.htm...
  4. RandallW

    I still can't figure my compiling error

    Ahhhhhhhh....okay, thanks.
  5. RandallW

    I still can't figure my compiling error

    I was using time as testing of the function; I was trying to pin down which specific ways of using it were causing my error.
  6. RandallW

    I still can't figure my compiling error

    I've used different types in the variable of time ....sometimes an int, sometimes a long, sometimes a time_t.....same resulting error.....would anyone allow me to e-mail the whole program so you could look at it? It's only 5k.
  7. RandallW

    I still can't figure my compiling error

    I'm using the time function in a program; the compiler says &quot;the term does not evaluate to a function&quot; Here is the piece of code that causes the trouble ( along with some surrounding code ) for ( dummy = 1; dummy <= jobs; dummy++ ) { // begin 'dummy' and 'jobs' if ( seed_defined )...
  8. RandallW

    'time' function has gone bad on me

    Yes, the time.h file has been included.
  9. RandallW

    'time' function has gone bad on me

    I've been using this piece of code that caused no compiler trouble: srand ( ( unsigned ) time ( NULL ) ); Now it doesn't compile...it gives me &quot;error C2064: term does not evaluate to a function&quot;.....I checked error from the CD and it shows examples such as integer being used like a...
  10. RandallW

    fussy compiler?

    I can do this: int *a_pointer; Yet this causes an error during compilation: int *a_pointer = 2369; It says &quot;error C2440: cannot convert from 'const int' to 'int *' ( new behavior; please see help )&quot; I checked the error definition from the CD; it has examples for why the...
  11. RandallW

    now how did this happen?

    Thanks to all who answered....the problem sure is the array size....I have an older version of VC++ ( 4.0 ), should be able to increase that stack.
  12. RandallW

    now how did this happen?

    My earlier version of the program had 100000 as the array size...it worked fine. My extra '{' in the post is from bad typing of my message....I tried using the '[', then 'code', then ']', to make my code look different in the message, but I think I did it wrong. As my program actually is, it...
  13. RandallW

    now how did this happen?

    I have little program where i'm testing something; here it is: {code] #include <stdio.h> #include <iostream.h> #define HUNDREDTHOUK 100000 #define HALFMIL 500000 #define THOUTWOKAY 200000 void main() { int first_array [THOUTWOKAY], second_array [THOUTWOKAY], dummy; cout <<...
  14. RandallW

    bad pointer declaration?

    Okay, I tried int *first = new int; It compiles okay, but when I attempt to build the executable, I get &quot;error LNK2001: unresolved external symbol _wWinMain@16&quot; When I check the explanation of the error, i'm told this happens if I don't have an entry point to wWinMainCRTStartup, and...
  15. RandallW

    bad pointer declaration?

    I tried using [code] int *first, *second; [code] That was my first attempt, it also gave an error, but I think it appeared during my build attempt. Well, i'll try that other part you had.
  16. RandallW

    bad pointer declaration?

    Here's what I have in my main function: int *first = 29, *second = 50; Attempting to compile, there is error C2440: cannot convert from 'const int' to 'int *' What am I doing wrong?
  17. RandallW

    compile time error

    So the term 'flush' is a reserved word?&nbsp;&nbsp;Agh! Dirty rotten <br>C++ *grumble*
  18. RandallW

    compile time error

    I'm trying to convert a little C program into C++.&nbsp;&nbsp;One of<br>my enumerated types gives an error when the file is compiled;&nbsp;&nbsp;the 'flush' in it is being redefined ( according<br>to the compiler ); here it is....<br><br>enum win_result { loss = 0, jacks_or_better = 1...

Part and Inventory Search

Back
Top