I am using Visual Basic for a Psychology experiment and I would like to check and see if the participants answered all of the questions on one form before moving on to the next. So far this is what I have done and it is not working.
If txbAge.Text = String.Empty Then
MsgBox("Wie Alt bist du?")
Else : Me.Hide()
AnagramExample. ShowDialog()
End If
...
Search Result
Collapse
5 results in 0.0040 seconds.
Keywords
Members
Tags
-
Checking for empty text boxes
-
How to initalize enum to null or blank?
Is there a way to initialize an enum to null/empty?
Code:public enum Color { Red, Blue }
Color c = null;
or
Color c = ""; -
I'm trying a php code but i don't know what's wrong!
Hi guys.I've got a problem.I'm building my php browsergame and i'm stuck into the inventory page.I have a code that seems ok to me but it won't work.Here it is:
Code:$inventory = array(); $query = sprintf("SELECT id, item_id, quantity FROM user_items WHERE user_id = '%s'", mysql_real_escape_string($userID)); $result = mysql_query($query); while($row = mysql_fetch_assoc($result)) { $item_query
Last edited by Dormilich; Sep 14 '10, 06:42 PM. Reason: please use [code] [/code] tags when posting code -
Button not clickable?
How can i get an button not clickable? like it is gray, and already pressed? -
Bound Combo box is Empty on selection of Null value on Exit Sub
Im a rookie.
I have am unbound combo box populated with values (rowsource) from a query which has 2 tables in it. Each table has its own ID, but both are included in the combo box (info3). Sometimes the combobox has ID values from Table A, but the corresponding ID value in table B is NULL. The bound column is the ID from B, because I use it to populate text boxes, by going to that record using:
strCriteria = "[ID]...