Recent content by joslinmk

  1. J

    Value from listbox into field on another form

    Thank You That worked great Thank You!
  2. J

    Value from listbox into field on another form

    I have a listbox lst_IP_OPEN with a command button IP_SEND on a form fm_IP_STATUS Im am trying to get it so that when you select 1 item from the listbox and click the button it will update the field IP on another form fm_SYSTEM. I can get it to work updating a text field on the same form. But...
  3. J

    Delete Records from a listbox

    Fixed, Final Code, Thanks for the Help Thank You for the Help. The code works Great. Here is my Final Code ______________________ Private Sub cmdDelete_Click() On Error GoTo Err_cmdDelete_Click Dim strSQL As String Dim var As Variant strSQL = "Delete * FROM tbllinkPersonel_Training WHERE...
  4. J

    Delete Records from a listbox

    I have a form with a listbox on it and I am trying to make a button that will delete the selected records from a table. The List box is filled from a query. Any help would be very appreciated. Table to delete records from = tbllinkPersonel_Training listbox = lstTraining_In...
Back
Top Bottom