Recent content by sned

  1. S

    Combo box and values

    Thanks, I now realise I was being stupid, and I have now sorted the problem, Si
  2. S

    Combo box and values

    Thanks, but I need to calculate another field from it so how do I do that? Thanks Si
  3. S

    Combo box and values

    I've got a subform with a combo box in it. When the user selects from the combo box I'd like it to look in a table and add a value into a textbox on the subform. How do I do it? Thanks Si
  4. S

    HTML Forms

    Does anybody know how to create a subform in a XHTML form? I want it to behave the same way as in access or as similar as possible. Thanks Si
  5. S

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

    Question 1 & 3 Something like this? Sub Intr_Code AfterUpdate() Dim ProdGrp$ ProdGrp$ = Prod_Grp.Text Select Case ProdGrp$ Case "EA" Intr_Code.SetFocus Intr_Code.ValidationRule = "Not ''" Intr_Code.ValidationText = "Must have a value" Intr_Code.Locked =...
  6. S

    word count

    This code will count the number of words in a memo field when the control has lost the focus. It could also be used on OnUpdate. Private Sub mmoSecond_LostFocus() Dim First$ 'Variable to hold memo string Dim arr As Variant 'Variable to hold string when split (array) Dim n% 'Variable...
  7. S

    Array count

    How do I find how many items in an array?
  8. S

    Calculation from Subform

    I have a subform which contains the price and quantity of items required. In the main from I have a field called total cost. I'd like the total cost field to calculate for all of the items in the subform. (It's probably blindingly simple but there we go.)
Back
Top Bottom