Search results

  1. T

    the action or event has been blocked by Disabled Mode!

    The table was populated when I remove a multi-value column from the query. Thank you for your help.
  2. T

    the action or event has been blocked by Disabled Mode!

    INSERT INTO VehicleService ( [License Plate Number], [Service Date], [Service Cost], [Service Description], [Service & Gas Receipts] ) SELECT Vehicles.[License Plate Number], Vehicles.[Service Date], Vehicles.[Service Cost], Vehicles.[Service Description], Vehicles.[Service & Gas Receipts] FROM...
  3. T

    the action or event has been blocked by Disabled Mode!

    INSERT INTO VehicleService ( [License Plate Number], [Service Date], [Service Cost], [Service Description], [Service & Gas Receipts] ) SELECT Vehicles.[License Plate Number], Vehicles.[Service Date], Vehicles.[Service Cost], Vehicles.[Service Description], Vehicles.[Service & Gas Receipts] FROM...
  4. T

    the action or event has been blocked by Disabled Mode!

    I am using an append query. I created a select query On the design tab I clicked append Run ------ the action or event has been blocked by Disabled Mode!
  5. T

    the action or event has been blocked by Disabled Mode!

    i am attempting to create a new table using data from another (normalization)
  6. T

    the action or event has been blocked by Disabled Mode!

    Yes, I have. I am still getting the same message.
  7. T

    the action or event has been blocked by Disabled Mode!

    I am using Access 2007 on xp
  8. T

    the action or event has been blocked by Disabled Mode!

    When trying to append to a table, I get, "the action or event has been blocked by Disabled Mode!" Any solutions will be greatly appreciated.
  9. T

    Text box does not save contents to table or display in listbox

    LicensePlateNunber is misspelled the same way in the table also
  10. T

    Text box does not save contents to table or display in listbox

    Public Function AppointmentsCheck(vStart As Date, vEnd As Date, vApptID As Long) As Long 'Checks if new appointment overlaps any existing appointment, return 0 if no or return overlapped appointment ID if yes 'Entry vStart = Start date and time of new appointment ' vEnd = End date and...
  11. T

    Text box does not save contents to table or display in listbox

    The misbehaving control is txtlicense. It does not save to the database. Private Sub cmdSave_Click() 'Save appointment data to table Dim vAppointmentID As Long Dim vNewStart As Date, vNewEnd As Date Dim vApptInfo As String On Error GoTo ErrorCode 'Check if Subject field empty and error if...
  12. T

    Text box does not save contents to table or display in listbox

    Private Sub cmdSave_Click() 'Save appointment data to table Dim vAppointmentID As Long Dim vNewStart As Date, vNewEnd As Date Dim vApptInfo As String On Error GoTo ErrorCode 'Check if Subject field empty and error if it is If Nz(Me.txtSubject) = "" Then Beep MsgBox...
  13. T

    Text box does not save contents to table or display in listbox

    no the form is not bound when i get the form to save the contents of all controls, then the misbehaving text box's contents will appear in the listbox
  14. T

    Text box does not save contents to table or display in listbox

    After cllicking the save buttong all controls on my form save their contents, however, one text box does not save contents to table or display in listbox. How might this problem be solved?
Back
Top Bottom