Search results

  1. U

    Change in form design based on check box criteria in query

    Hi, Not sure what you want to do. My guess is that you want to change the form's Recordsource. That's the easiest solution. Here's what i think. Create or copy "qryaddNewTransaction". With the new query, add the WHERE condition. In the checkbox on click event,change the RecordSource to the...
  2. U

    Autonumber automaticcaly?

    Hi, Is this code in the current database? Is this code in a form's module or a standard module?
  3. U

    "ALL" combo box returns no records

    Hi, Change your code to this. Private Function FilterIt() As Variant Dim varFam As Variant Select Case Me.cboGroup Case "(All)" varFam = "[Group Name] LIKE '*'" Case Else varFam = "[Group Name] = '" & Me.cboGroup & "'" End Select FilterIt = "WHERE " & varFam End Function
  4. U

    Please help, simple radio button code wont work and I cant work out why

    Hi, Then, "Option.Value" should work. "you entered an expression that has no value" The code you gave might not come from it. Is there something else in the code? In the VBA editor, where did the line stop?
  5. U

    Please help, simple radio button code wont work and I cant work out why

    Hi, It should be "Option16.OptionValue". This control ("Option16.Value") does not work in VBA. You can set the OptionValue to 1,2,3...etc. HTH
  6. U

    MS Access connecting to Oracle Problem

    Hi Try this at Microsoft Here
  7. U

    I can't find the Type Mismatch

    Hi Lucantha, Look at code and comments. First is the "strIDr" where you want to filter the form is the control/Column/Field, is it named correctly? And is "strIDr" a Text or Number? Private Sub Label46_Click() On Error GoTo Err_Label46_Click Dim stDocName As String Dim stLinkCriteria As...
  8. U

    Auto-fill a subform

    Hi, Try Here
  9. U

    All Option in a Combo Box

    Hi, Try something like this, SELECT txt, ordr FROM (SELECT DISTINCT 'All' AS txt, NULL AS ordr FROM ColorTable) UNION SELECT colorName, colorName FROM ColorTable ORDER BY ordr;
  10. U

    Concatenate results from text field in continuous form.

    Hi, It's too lenghty to explain, go Here Down load the sample.
  11. U

    new to relational databases in access 2003 and forms

    Hi, First, Create a Main Form with the RecordSource from Table1. Second, in that same form, create a sub form where the Recordsource is from Table2. Is that easy.
  12. U

    Using InParam() function provided by Microsoft

    Hi, MS assumed this "Option Compare Database" by default as included the the module. Put it back. There are very little details on how you use the buttons to print the reports. Post the SQL syntax for us to see.
  13. U

    Disabling built-in Menubars and ToolBars And Creating our Own MenuBar

    Hi, Maybe you mean the default toolbars in Access? Go to Tools - Customize - check the Toolbars like "Form Design".
  14. U

    DLookup mystery!

    Hi, Try without the quotes, like =DLookUp("VendorName","tblSuppliers","VendorNo=" & [VendorNo]) Your column "VendorNo" is a Number datatype and a double.
  15. U

    new to relational databases in access 2003 and forms

    Hi, The "mailed" table, go to the Table Design mode - go to the ContactID, at the General Tab, at the Indexed Field, change to "Yes (No Dulplicates)". But on the "responses" table, the "contactid" column - it must be set to "Yes (Dulplicates OK)". However, these two columns must be unique in...
  16. U

    Changing an action on a record on a continuous form!

    Hi, Not the forum, on the left frame of your browser there is a Blue Bar "Menu", click on "+" - "Sample Files" - "+" - "Main" - "+" - "MS Access" - Click "Forms".
  17. U

    combo inside a listbox

    Hi antonyx, This is a continuous form with mutli comboboxes and it's on the Detail section. The three comboboxes on top of the detail section is in the Form Header. I hope Peter sample can demostrat the workings of a combobox in a continuous form. If not, look at the Sample at Ken Snell...
  18. U

    isnull/notnull??

    hi, Try. if Not IsNull((RS![Unit Type]) then
  19. U

    Changing an action on a record on a continuous form!

    Hi, Try Here Look for conditionalformating.
Back
Top Bottom