Search results

  1. K

    Save Item in listbox to a table please help

    Save Item in listbox (Row source type : Value list) to a table in a database .
  2. K

    User Password Reset

    I have this code to change user password Private Sub Command3_Click() If IsNull(Me.cboEmployee) Or Me.cboEmployee = "" Then MsgBox "You must enter a User Name.", vbOKOnly, "Required Data" Me.cboEmployee.SetFocus Exit Sub End If If IsNull(Me.txtPassword) Or Me.txtPassword = "" Then MsgBox "You...
  3. K

    I need to separate Users and admin on login

    I need to separate Users and admin on login so that the admin can go to admin form and users to specific form using vba access here is my login code Private Sub cmdLogin_Click() 'Check to see if data is entered into the password box If IsNull(Me.cboUserName) Or Me.cboUserName = "" Then...
  4. K

    Save Item in listbox to table please help

    Please help me with the code to save data in listbox to a table in vba access
  5. K

    export data in Listbox to excel

    I have a Listbox named List5 and a search textbox named txtProperty and a table name sms , after i search in textbox the results in listbox . i would link to inport the results in listbox to excel but the code i have export the whole table to excel , please help: here is my code...
  6. K

    add item in textboxes to list box

    I have a form in Access VBA and five textboxes , but when i add the data in textboxes to Listbox it only add to single coulmn not all 5 please help? here is my code Listbox.addItem txtmajor.value Listbox.addItem txttime.value Listbox.addItem txtne.value Listbox.addItem Comboesc.value...
Back
Top Bottom