Search results

  1. 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?
  2. 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
  3. U

    MS Access connecting to Oracle Problem

    Hi Try this at Microsoft Here
  4. 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...
  5. U

    Auto-fill a subform

    Hi, Try Here
  6. 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;
  7. U

    Concatenate results from text field in continuous form.

    Hi, It's too lenghty to explain, go Here Down load the sample.
  8. 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.
  9. 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.
  10. 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".
  11. U

    DLookup mystery!

    Hi, Try without the quotes, like =DLookUp("VendorName","tblSuppliers","VendorNo=" & [VendorNo]) Your column "VendorNo" is a Number datatype and a double.
  12. 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...
  13. 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".
  14. 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...
  15. U

    isnull/notnull??

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

    Changing an action on a record on a continuous form!

    Hi, Try Here Look for conditionalformating.
  17. U

    combo inside a listbox

    Hi antonyx, First, the combobox is not inside the listbox. It’s on top of the listbox. Judging from the query, the listbox on the left is using this query. The listbox on the right using the table called “Driver”. What you are asking is called a listbox search or listbox to listbox. The use...
  18. U

    Create AutoNumber field

    Hi jempie, Yes you can. If you have a existing table that has a Column with a “AutoNumber” First, do your “Make Table Query” as usual. Name that new table, right click the empty space above the QBE fields. Select the Table with an Autonumber. What you need to do is use that Table, put into...
  19. U

    Filter Multiple Subforms/Data Entry

    Hi, Have you check the subform properties tab - Data - Link Child Fields and Link Master Fields?
Back
Top Bottom