Announcement

Collapse
No announcement yet.

Console initial display delay with FORMAT$

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Console initial display delay with FORMAT$

    Does FORMAT$ have to be buffered before anything appears?
    Try with a larger value for x& and it can take much longer.
    Code:
    FUNCTION PBMAIN () AS LONG
      ? "Why does this take 8-seconds to appear?"
      FOR x& = 1 TO 3000
        ? FORMAT$(x&,"#,");
      NEXT
    END FUNCTION
    The world is full of apathy, but who cares?

  • #2
    Turned off AVG anti-virus "Resident Shield" and it is now immediate.
    Now need to see why AVG doesn't like my program (or at least not using FORMAT$.)
    Thanks PowerBASIC support!
    Last edited by Mike Doty; 7 Apr 2009, 01:35 PM.
    The world is full of apathy, but who cares?

    Comment

    Working...
    X