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 IamaSherpa 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: Stab
  • Order by date
  1. Stab

    .exe slower than .bas ?

    Thanks for answers, Ok, there was a mistake copying, it was: Tcal = INT(1000000 / ((TIMER - Tcal)*1000)) 1 mega FOR/NEXT loops divided by the time in mS. I previously tried in a good old 466DX in Dos6.2 and the result was similar. I'm trying now with DO/LOOP, Tcal = TIMER i = 0 DO i = i + 1...
  2. Stab

    .exe slower than .bas ?

    Is a compiled .bas program slower than running in QBasic? I know I just use a FOR/NEXT loop: Tcal = TIMER FOR b = 0 TO 1000000 NEXT b Tcal = INT(1000 / (TIMER - Tcal)) PRINT Tcal; "loops/ms"; Qbasic4.5(.bas) : 1007 loops/ms near 1 µs Make exe (stand alone): 280...
  3. Stab

    QB Timer precision

    Hello, Qb timer precision seems to be about 50ms Is it possible to have more precision ? I need 1 ms. Thanks.

Part and Inventory Search

Back
Top