|
-
Jul 7th, 2000, 08:17 AM
#1
Thread Starter
Junior Member
here's my question
when the car is equal to yellow
carmake should be required
initial value of the carmake should be unknown
if it goes through a recursive cycle and the manager has to re-fix the field
the carmake should not have the same value
.......how would i do this? any help would be greatly appreciated
-
Jul 7th, 2000, 08:20 AM
#2
Member
Can you translate in English please.
Maybe, I'm very stupid but I understand nothing of your question.
[Edited by (B2F)Tom on 07-07-2000 at 09:28 AM]
-
Jul 7th, 2000, 08:24 AM
#3
Thread Starter
Junior Member
car = yellow
carmake.enable = true
carmake = ""
.i don't know how to do the recursive cycle.. would i put it into a loop
-
Jul 7th, 2000, 08:26 AM
#4
Hyperactive Member
You need to explain better
recursive cycle what?
-
Jul 7th, 2000, 08:30 AM
#5
Thread Starter
Junior Member
recursive cycle meaning
if the sales person has to go back into that field to fix it then the field can't have the same value as it did before he fixed it
....does that help
-
Jul 7th, 2000, 08:33 AM
#6
Member
Do you meen you want to verify the countain of a field
-
Jul 7th, 2000, 08:35 AM
#7
Thread Starter
Junior Member
don't wan to verify the content. if thwe person made a mistake and had to go back into the field and refix it then he can't have the same value
-
Jul 7th, 2000, 08:41 AM
#8
Fanatic Member
Here is an example on how to not allow the user to input the same data twice into the textbox (if it is what you want, then you should be able to modify it for your needs)
Code:
Private Sub Text1_LostFocus()
Static strPrev As String
If strPrev = Text1.Text Then
MsgBox "You've entered this before and it was wrong, change it!!!!"
Text1.SetFocus
Else
strPrev = Text1.Text
End If
End Sub
-
Jul 7th, 2000, 08:43 AM
#9
Member
Do you want to regain a value (kind of a default value) for your field when the user made a misktake?
-
Jul 7th, 2000, 09:02 AM
#10
Thread Starter
Junior Member
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
|