Just wondering, is there a way to tell access to only display the forms/reports without displaying the access window itself (the "shell" window that the access forms populate inside of).
just wondering.
|
|
Just wondering, is there a way to tell access to only display the forms/reports without displaying the access window itself (the "shell" window that the access forms populate inside of). just wondering.
|
||
|
|
|
|
To do so, I take advantage of a piece of code written by some clever guys and available on the net (I think it was originaly written by Terry Kreft?) and refering to some windows API. I have first this:
and that
When starting my program, I will then call the function this way
The screen will 'flicker' a little bit, and the main window will appear briefly, then disappear. My focussed window will then be displayed alone. |
||||||||
|
|
|
Yes, you can. See "Setting Startup Options" from Basics for Building Microsoft Office Access 2003 Runtime-Based Solutions.
|
||||
|
|
|
No. Access is a classic Multiple Document Interface (MDI) where all the child windows are inside a parent window. However, Access does have a lot of ways you can change the Parent Window Menu's and Toolbars. You can create your own menu and toolbar layouts that only have what you want in them. Google creating menu bars and toolbars in Access and it should point you in the right direction. EDIT: JP nailed it.... My brain forgot that little nugget.... |
|||
|
|
|
|
If you create an MDE and run it under the Access Runtime, it will execute your program stripped of (most, if not all of) the Access GUI. This is by design. The Access Runtime is intended to allow you to distribute a copy of your application, while depriving your users of the regular Access trappings. |
||||||||
|