Search results

  1. I

    Find a solution to "undo command only run 1 time"

    Hi! I tried to make a command button which functions as Ctrl+Z (Word shortcut key), I used Private Sub Command332_Click() DoCmd.RunCommand acCmdUndo End Sub It works well but only for the first time. The next time I clicked the (undo) command button, it sent me a message Is there any...
  2. I

    Help with transfering data from Combo Box to Text Box

    Hi guys, I have a combo box and a text box, I pick a data item from the drop down of the combo box, I want that the data item is transferred to the text box, I tried Private Sub ComboBoxName_AfterUpdate() TextBoxName.Value = ComboBoxName.Value End Sub and also tried Private Sub...
Top Bottom