Search results

  1. C

    Entering multiple jobs done for the day

    Thanks for the reply:) i have tried that but it doesn't really do what i would like. Datasheet view is perhaps the closest, but any editing would require a lot of clicking by the user which I'm trying to avoid. I was hoping for a simple continuous form with a list of check boxes for each...
  2. C

    Copy/Paste command on a form

    My Pleasure;)
  3. C

    Open Subform with Button

    Oh I see Try this code then in the click event of the button: If fsub1.Visible = False Then fsub1.Visible = True Else: fsub1.Visible = False End If Just substitute the "fsub1" for the name of your subform.:D
  4. C

    Entering multiple jobs done for the day

    I can't seem to find a way to solve this problem:confused: I'm working on a database to run my window cleaning business. I have a customers table which contains all the details for each customer ie address, name etc. There is also a Jobs table which will contain a record every time a...
  5. C

    Copy/Paste command on a form

    Try this code in the VB editor of your button click event: Dim strCopiedText as String strCopiedText = txtBox1 txtBox2 = strCopiedText End Sub Just substitute the "txtBox1" and "txtBox2" with the names of your 2 text boxes.:)
  6. C

    Open Subform with Button

    denileigh, the easiest solution is to make sure the toolbox wizard is on while putting the button onto your main form. it will pop up with a number of options, one of them being opening other forms. Once this is done, you can go into the VB editor for that form and copy the code to open other...
  7. C

    User setting order of addresses in report?

    Ok, just seen the message didn't quite come out the way it should, but hopefully you can make out what I mean.:) Can anyone help? Please??
  8. C

    User setting order of addresses in report?

    Hi guys hope you can help:) In my database, i have a list of addresses which are grouped into different areas. The user will need to visit each area separately and go to all the addresses on the list. My problem is creating a report of the list of addresses in a particular order that the user...
  9. C

    One to One relationship - How?

    Hi I have the following tables in a database: 1) Customers 2) Employees 3) Suppliers 4) Contacts The contacts table contains all the names and address info while the other tables contain specific info related to customers, employees and suppliers. I want to link each of those tables to the...
  10. C

    Please help with delete query

    Actually, I've just solved the problem. Here is the solution that worked if anyone else needs it: Private Sub btnDelete_Click() RoundName.SetFocus Dim strRoundName As String strRoundName = Me.RoundName.Text Dim SQL As String SQL = "DELETE Rounds.RoundName FROM Rounds WHERE...
  11. C

    Please help with delete query

    Hi It is defined as a string in the expression: Dim strRoundName as String and then as the value of a textbox in the form in the expression: strRoundName = Me.RoundName.Text This works fine but I would like the variable 'strRoundName' to be used as the criteria for the DELETE statement.
  12. C

    Please help with delete query

    [SOLVED!]Please help with delete query :confused: Hi all I've created a delete query and I wanted to run it with the RunSQL command. Here is the code: Private Sub btnDelete_Click() RoundName.SetFocus Dim strRoundName As String strRoundName = Me.RoundName.Text Dim SQL As String SQL =...
Back
Top Bottom