Post something!
File:
Video:
Link:
Option 1:
Color 1:
Option 2:
Color 2:
Extra:
Tags:
*lurk
First question: i've got a loop running for inputs. It looks like this:
Do Title = InputBox("Title:") Cells(i, 1) = Title RegPrice = InputBox("Regular Price:") Cells(i, 2) = RegPrice DisPrice = InputBox("Discounted Price:") Cells(i, 3) = DisPrice i = i + 1Loop Until
I want it to loop until the user hits enter with the input box blank... how?
i really wish the coders were online tonight
you and me both, my final is tomorrow.
http://www.daniweb.com/forums/thread146386.html
??????
When the user hits enter, if the input box is blank, change the value of a boolean. Use that boolean for your loop condition.
Disclaimer: I haven't used VB in 9 years.
*lurk
First question: i've got a loop running for inputs. It looks like this:
Do
Title = InputBox("Title:")
Cells(i, 1) = Title
RegPrice = InputBox("Regular Price:")
Cells(i, 2) = RegPrice
DisPrice = InputBox("Discounted Price:")
Cells(i, 3) = DisPrice
i = i + 1
Loop Until
I want it to loop until the user hits enter with the input box blank... how?
i really wish the coders were online tonight
you and me both, my final is tomorrow.
http://www.daniweb.com/forums/thread146386.html
??????
When the user hits enter, if the input box is blank, change the value of a boolean. Use that boolean for your loop condition.
Disclaimer: I haven't used VB in 9 years.