• Welcome to PlanetSquires Forums.
 

FF_Console

Started by David Martin, July 15, 2004, 09:01:45 AM

Previous topic - Next topic

David Martin

I created a new Console Application project and tried the following:

Dim x As Long

FF_SetConsoleSize(26, 100)
FF_SetConsoleName ("My Console Title")

FF_Color(15,1)
FF_CLS

For x = 1 To 100
FF_Locate(1,1)
FF_StdOut("---------1---------2---------3---------4---------5---------6---------7---------8---------9---------1")
Next

For x = 2 To 26
FF_Locate(x,1)
FF_StdOut("Line " & Str$(x))
Next

FF_WaitKey


The console size stays at 25 x 80 with a vertical scrollbar on the right.

I am using FF 1.06, PB7 .04, WinXP Pro.