Results 1 to 10 of 10

Thread: need help?

  1. #1

    Thread Starter
    Junior Member
    Join Date
    Jul 2000
    Posts
    28

    Question

    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


  2. #2
    Member
    Join Date
    Jun 2000
    Location
    North of France
    Posts
    49

    Question

    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]
    Hi-Tech Engineer

  3. #3

    Thread Starter
    Junior Member
    Join Date
    Jul 2000
    Posts
    28
    car = yellow

    carmake.enable = true

    carmake = ""

    .i don't know how to do the recursive cycle.. would i put it into a loop

  4. #4
    Hyperactive Member
    Join Date
    May 2000
    Posts
    367
    You need to explain better

    recursive cycle what?

  5. #5

    Thread Starter
    Junior Member
    Join Date
    Jul 2000
    Posts
    28

    Wink

    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

  6. #6
    Member
    Join Date
    Jun 2000
    Location
    North of France
    Posts
    49

    Question

    Do you meen you want to verify the countain of a field

  7. #7

    Thread Starter
    Junior Member
    Join Date
    Jul 2000
    Posts
    28

    Wink

    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

  8. #8
    Fanatic Member
    Join Date
    Oct 1999
    Location
    MA, USA
    Posts
    523
    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

  9. #9
    Member
    Join Date
    Jun 2000
    Location
    North of France
    Posts
    49

    Question

    Do you want to regain a value (kind of a default value) for your field when the user made a misktake?
    Hi-Tech Engineer

  10. #10

    Thread Starter
    Junior Member
    Join Date
    Jul 2000
    Posts
    28

    Wink

    thanks QWERTY
    u got it

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width