Search results

  1. H

    Delete selected item from list box

    I tried it with and without the * . Thank you again !
  2. H

    Delete selected item from list box

    Thank you for replying . I have * in there.
  3. H

    Delete selected item from list box

    it is ID.
  4. H

    Delete selected item from list box

    error 3131 - syntax error in from clause Also attached a screen shot. Thank you so much for helping
  5. H

    Delete selected item from list box

    Thank you once again .
  6. H

    Delete selected item from list box

    Yes I did .
  7. H

    Delete selected item from list box

    Thank you so much for taking the time to reply . However it gives me an error on the last statement CurrentDb.Execute strSQL, dbFailOnError . I wonder if I have to do some kind of variable declaration.
  8. H

    Delete selected item from list box

    Did you mean the total number of columns in the lisbox ? If yes it is 22
  9. H

    Delete selected item from list box

    The ID column
  10. H

    Delete selected item from list box

    No ...
  11. H

    Delete selected item from list box

    I am trying to write a piece of code that works on button click and deletes a selected row from the Table . Not sure how I can reference the entire row. ID is the primary key in the table . Any ideas ?
  12. H

    Combo Box value / Text

    you sir are a genuis !
  13. H

    Combo Box value / Text

    here it is
  14. H

    Combo Box value / Text

    Also changing bound column to 2 fixed it . Thanks .
  15. H

    Combo Box value / Text

    rs!EffortType = cmbEffortType This one. Also on the click event of the combox box I have a another text box being updated. Me.txtEffortCost.Value = Round((cmbEffortType.Column(1) / 220), 2)
  16. H

    Combo Box value / Text

    Can i share my database with you privately ?
  17. H

    Combo Box value / Text

    This is the code I am using Private Sub cmdAddRow_Click() MsgBox "Adding new row to database..." 'CurrentDb.Execute "INSERT into BR_Master([BRID], [Analyst], [Branch])VALUES (1, 'Kelly', 'PSPC');" On Error GoTo trap Dim db As DAO.Database Dim rs As DAO.Recordset Set db = CurrentDb() Set rs =...
  18. H

    Combo Box value / Text

    I am assuming you are saying the keys then should be referenced in a query to pull the data ?
Back
Top Bottom