|
-
Nov 10th, 2004, 12:46 AM
#1
Thread Starter
Hyperactive Member
DOS app needs help...
I know this might be simple for you but it's not for me...
I'm makeing a DOS exe for a project
How do I get my app to use the same line for different text fields?
i.e. put, value1 then clear the text and put value2 on that line and so-forth
like in the Windowz setup screen for dos when it says "Copying: (File name here)" and the only thing that changes is the file name...
[VBCODE]
Option Explicit
Dim XXX As Porn
Dim Wife As Nag
Private Sub *****_Resize()
On Error Resume Next
Get Viagra
End Sub
[/VBCODE]
-
Nov 10th, 2004, 06:04 AM
#2
Writing \h to the console (or is it \b?) causes the output position to take one step back, so subsequent outputs will overwrite what's there.
This doesn't work once you wrote a newline though. From then on, you need platform-specific ways of setting the cursor position.
All the buzzt
 CornedBee
"Writing specifications is like writing a novel. Writing code is like writing poetry."
- Anonymous, published by Raymond Chen
Don't PM me with your problems, I scan most of the forums daily. If you do PM me, I will not answer your question.
-
Nov 10th, 2004, 01:09 PM
#3
Thread Starter
Hyperactive Member
it's under windows xp pro
[VBCODE]
Option Explicit
Dim XXX As Porn
Dim Wife As Nag
Private Sub *****_Resize()
On Error Resume Next
Get Viagra
End Sub
[/VBCODE]
-
Nov 10th, 2004, 02:52 PM
#4
Look up console functions in MSDN.
All the buzzt
 CornedBee
"Writing specifications is like writing a novel. Writing code is like writing poetry."
- Anonymous, published by Raymond Chen
Don't PM me with your problems, I scan most of the forums daily. If you do PM me, I will not answer your question.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|