Access Forms

Wuddle

New Member
Joined
Oct 29, 2002
Messages
22
Is it possible to have a form that does not disappear when anothe rform is selected.
I have a form that data needs to be input to, however some of the information is held on another form (client Number etc etc) TO make life easier I would like to have a button that when pressed will open another form (not everyone will require this form thats whu it's not permanent). Thats not the problem, the problem is that when i try to type in information on the larger form the smaller one disappears. How can i see both forms at the same time?
 

Excel Facts

When did Power Query debut in Excel?
Although it was an add-in in Excel 2010 & Excel 2013, Power Query became a part of Excel in 2016, in Data, Get & Transform Data.
Window-Tile Vertically or Horizontally. Not sure if there's a VBA command for this, apart from MoveSize.
 
Upvote 0
Yes, MoveSize is correct. Or, you can set the Auto Center of each form to No, place them where you want them, then save. They should stay where they are (so you could save one form to the left and the other to the right - so you could see both).

HTH,

Russell
 
Upvote 0
Thanks for that folks. Is there a way that i can create a button that when pressed will make fields (or forms) that are invisible, visible.
 
Upvote 0
Absolutely. Using VBA, if your form name is frm1, you'd hide it like this:

Forms!frm1.Visible = False

and to unhide it,

Forms!frm1.Visible = True


HTH,

Russell
This message was edited by Russell Hauf on 2002-12-16 12:38
 
Upvote 0

Forum statistics

Threads
1,221,498
Messages
6,160,161
Members
451,627
Latest member
WORBY10

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top