N noccy Registered User. Local time Today, 19:55 Joined Aug 19, 2003 Messages 67 Sep 11, 2003 #1 Hello! If I want to check if a textbox is emty what would i look for? If Me.txtTest = ? Then......... tnx noccy
Hello! If I want to check if a textbox is emty what would i look for? If Me.txtTest = ? Then......... tnx noccy
N namliam The Mailman - AWF VIP Local time Today, 20:55 Joined Aug 11, 2003 Messages 11,685 Sep 11, 2003 #2 If len(me.textbox) = 0 then or If isnull(me.textbox) then or If me.textbox & vbnullstring = "" then Regards
If len(me.textbox) = 0 then or If isnull(me.textbox) then or If me.textbox & vbnullstring = "" then Regards
N noccy Registered User. Local time Today, 19:55 Joined Aug 19, 2003 Messages 67 Sep 11, 2003 #3 tnx a lot m8 =)