I want to make a loop which will be terminated when data record ends or statement will be true.
What do you mean exactly by "when data record ends"? Are you looping through the fields in the record, or what? As far as "statement will be true", in VB a statement isn't True or False. You must be referring to some sort of expression or condition that you want to be True. To drop out of a While loop when a condition is true, you just code that condition in the While statement.
What do you mean exactly by "when data record ends"? Are you looping through the fields in the record, or what? As far as "statement will be true", in VB a statement isn't True or False. You must be referring to some sort of expression or condition that you want to be True. To drop out of a While loop when a condition is true, you just code that condition in the While statement.
I want to add items from a database in combobox using loop.
I dont know which loop is used is it do while?
Plz tell how can i do
Comment