Search results

  1. M

    Read Only vs. Filter Options and Combo Boxes

    I set up a combo box to allow users to search through product options and I have a filter options box that will allow them to select a specific product type. The problem is that inorder to make them work I had to go into the form properties and reset my for to Allow Edits. Once I get all of...
  2. M

    I'm Back - Need final code.....

    Okay - I am almost done with the form. I'm sure you guys are glad to hear that! I have 4 business rules that I have been asked to incorpoarate into the form - here is what I need to finsih up... 1. A value for Intr_Code is required ONLY if Prod_Grp = EA or TR. Code for this? 2. If Month_Fee...
  3. M

    Code not working (?) - need help!!!

    I have the following lines of code written behind my form: If Prod_Grp = "EA" Then Serv_Cd = "STD" End If If Prod_Grp = "IN" Then Serv_Cd = "800" End If If Prod_Grp = "HD" Then Serv_Cd = "HMD" End If If Prod_Grp = "TR" Then...
  4. M

    Need Code for Validation

    I have a field that needs to sync up with another field. For the sake of discussion we'll call them "Code" field and "Type" field. What is the code I would need to make it do something like this: If 'Code' = EA Then 'Type' = HMD or If 'Code' = IN Then 'Type' = WAT. I have 5 different 'Code'...
  5. M

    Code Illiterate seeks help with automating a form

    This is probably so easy for someone else but not me.. I have a form in which I need 50 fields to populate automatically after I enter a value in a specific field. Each record will contain different values so I can't use the "default" setting because that carries through to other records...
Back
Top Bottom