B boblarson Sep 2, 2008 #2 In the form's On Current event put Me.YourCommandButtonNameHere.Visible = Me.NewRecord -- Bob Larson Free Tutorials and Samples at http://www.btabdevelopment.com __________________________________
In the form's On Current event put Me.YourCommandButtonNameHere.Visible = Me.NewRecord -- Bob Larson Free Tutorials and Samples at http://www.btabdevelopment.com __________________________________
D Dirk Goldgar Sep 2, 2008 #3 RHartwick said: How can I make a command button visible with a new record only? Click to expand... You could use an event procedure like this for the form's Current event: Private Sub Form_Current() Me!cmdMyButton.Visible = Me.NewRecord End Sub You must substitute the name of your command button for "cmdMyButton" above.
RHartwick said: How can I make a command button visible with a new record only? Click to expand... You could use an event procedure like this for the form's Current event: Private Sub Form_Current() Me!cmdMyButton.Visible = Me.NewRecord End Sub You must substitute the name of your command button for "cmdMyButton" above.