help easy easy question 
Author Message
 help easy easy question


Quote:
> Hi
>    When you have a print command and then another print comand how do
>youu get a new page between the two print commands?
>ie...   cls
>         print"hi"
>????????????????????-this is where the new page should start
>          print"yo"

Easy, easy answer:

PRINT "hi"
                                 PRINT CHR$(12)

  PRINT "yo"

Tom Lake



Sat, 25 Sep 1999 03:00:00 GMT  
 help easy easy question

 Hi
    When you have a print command and then another print comand how do
youu get a new page between the two print commands?
ie...   cls
         print"hi"
????????????????????-this is where the new page should start
          print"yo"
Thanks, Shawn Gibson :)



Sat, 25 Sep 1999 03:00:00 GMT  
 help easy easy question


Quote:

>  Hi
>     When you have a print command and then another print comand how do
> youu get a new page between the two print commands?
> ie...   cls
>          print"hi"
> ????????????????????-this is where the new page should start

    ' Insert a loop to keep the first page in view
    DO
    LOOP UNTIL INKEY$ = " "

    This will keep "hi" on the screen until user presses the spacebar
    to break the loop.

    Then follow the loop with:

    CLS                 ' clears "hi" from screen

Quote:
>           print"yo"
> Thanks, Shawn Gibson :)

    Altogether:

    CLS
    PRINT "HI"
    DO
    LOOP UNTIL INKEY$ = " "
    CLS
    PRINT "YO"



Tue, 28 Sep 1999 03:00:00 GMT  
 
 [ 3 post ] 

 Relevant Pages 

1. EASY EASY EASY question

2. easy filecopy question...but maybe not so easy

3. help new to VBA, easy question

4. quick and easy question....please help!

5. Password Automation....easy question...please help me...thanx

6. Help !..An easy question for you !

7. An Easy Question - Can You Help?

8. Quick Database question - Easy one for you experienced programmers, but out my hands - Please help

9. please help easy question can't find out how to get it

10. easy question please help

11. Easy Question, but I need help :-)

12. Easy help question vb5

 

 
Powered by phpBB® Forum Software