Search results

  1. E

    Run-Time error 424 "Object Required"

    I see what your saying but I am also pulling info of another site with a population of 10000 or above. because what I am using it for there is no need to have a zip code for that area if it is below that
  2. E

    Run-Time error 424 "Object Required"

    If I adjust the code I get a Run-time error '91': Object variable or With block variable not set I don't have any with blocks and if I put set in front of it but get a different error tried Dim objElement As Object I have tried Dim objElement As Variant without set and still get an error
  3. E

    Run-Time error 424 "Object Required"

    This is the line that the debugger stops on: Set objElement = "INSERT INTO tb" & StateName & " " _ & "([Zip Code])" & vbCrLf & "VALUES " _ & "('" & ZipCode & "')"
  4. E

    Run-Time error 424 "Object Required"

    Sorry guys I can't figure out how to show the code so it shows a number on every line Does anyone know how? I really like to have all my code with numbers next to every line
  5. E

    Run-Time error 424 "Object Required"

    79 80 81 are where the trouble is
  6. E

    Run-Time error 424 "Object Required"

    Lines 79 80 and 81 are what it highlights something wrong
  7. E

    Run-Time error 424 "Object Required"

    :banghead:I have researched this to death I have a module that goes out to the USPS website and populates a table with all the zip codes. At one time I did have it working but now I can't seem to get it to work keep getting Run-Time error 424 "Object Required" Anyways here is the code I am...
  8. E

    keep getting token expired every time I try and start a thread why is that

    keep getting token expired every time I try and start a thread why is that
  9. E

    Queries

    So how would I do it with DateSerial and make it more reusable. Kind of new to SQL.... Any good websites to go to for SQL?
  10. E

    Queries

    So How would I make it more reusable using VBA or SQL Kind of new to SQL.
  11. E

    Queries

    How do you make it more reusable with SerialDates and is there any way to do the same affects if you where to use VBA?
  12. E

    Queries

    Ok here is one SELECT Count(TblReceipts.ID) AS CountOfID, Sum(TblReceipts.Amount) AS SumOfAmount FROM TblReceipts HAVING ((([TblReceipts]![Purchase Date]) Between #4/1/2013# And #4/28/2013#));
  13. E

    Queries

    Hello, I am trying to create a reciept database to log all my receipts and to let me know how much I spent for the month I have the query's set up just fine but as we all should know the months that have not come yet access is giving me a error when I go to run the vba script because the queries...
  14. E

    transfering from combo to textbox on new form

    Here is what I have: Private Sub OptDocYes_Click() If Me.OptDocYes Then Me.OptDocNo.Enabled = False DoCmd.OpenForm "frmOrderParts" Forms!frmOrderParts.txtTypAC = Me.cboTypeAirCraft.Column(1) Else Me.OptDocNo.Enabled = True DoCmd.Close acForm, "frmOrderParts" End If End Sub...
  15. E

    transfering from combo to textbox on new form

    Consider: Forms!frmOrderParts.txtTypAC = Me.cboTypeAirCraft This code gives me a 1 (which is not seen) from my field Catigory ID on the new form is there a way I can pull from whatever is selected in the combo box to put into a text box on the new form?
  16. E

    Introduction

    Hello everyone I am Ernest, I have been working with Access for 2 years and love the functionality. I am use to programming in C++ and really don't have a lot of experience in VBA however, I am getting acquainted to it...
  17. E

    Insert calculated value from a form into the Table

    all you should have to do is bound the text box to the table field this can simply be done by selecting the text box while the form is in design view going to the data tab and next to the Control Sourse you should see a ... box click it and find the table and field that apply.
  18. E

    Option buttons

    Thanks for the help I appreciate it.:)
  19. E

    Option buttons

    Noticed you put an option group around each of the Option buttons seperately instead of together. Is there a reason for this or can I put one option group around both? Other than that this is exactly what I need I just need to re- adjust the code so that it opens my form.
  20. E

    Option buttons

    Ok, I see what your talking about. Now I just need to create code to open a different form when they select yes and store it in a table once completed.
Back
Top Bottom