realitycheck
New Member
- Joined
- Aug 29, 2014
- Messages
- 9
This should be fairly easy...
Sometimes the form is mostly filled with good data... Then the user wants to change something on the DATA tab without cancelling out of the form and losing what was there...
So I created a button on the form called Hide & Change.
Behind which has this running code...
Where my comment is is where the break needs to be along with a new button to recall the partially filled form.
Anyone got any ideas on how to make the button appear on the Data Tab which allows for changes to be made and then returns to the form?
Sometimes the form is mostly filled with good data... Then the user wants to change something on the DATA tab without cancelling out of the form and losing what was there...
So I created a button on the form called Hide & Change.
Behind which has this running code...
Code:
Private Sub CommandButton1_Click()
frmPartLoc.Hide
Sheets("DATA").Select
'something needs to go here to allow manual data input on the data tab and the code needs to create a button that allows you to return to the form upon click right from that data tab.
frmPartLoc.Show
End Sub
Where my comment is is where the break needs to be along with a new button to recall the partially filled form.
Anyone got any ideas on how to make the button appear on the Data Tab which allows for changes to be made and then returns to the form?