Ok, as long as you understand the limitations.
Here are some instructions I have posted in the past:
>>>>>
1. Create a back-up copy of your database file. Don't skip t*his step!!
2. Go to this web site:
http://www.mvps.org/access/api/api0019.htm
Copy all that code to a new standard module.
Standard Module, *not* a form module!
3. Compile the code, save the module and name it modHideAcce*ssWindow.
4. Open your main form (the one that you want the users to s*ee) and go to Design View.
5. Set these Form's Properties:
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=12820
Auto Center- Yes
Pop-Up - Yes
Modal - Yes
6. Open the code behind the form and copy this code into the* Form's Open event:
Private Sub Form_Open(Cancel As Integer)
Me.Visible = True
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=12820
fSetAccessWindow (SW_HIDE)
End Sub
7. You MUST put an exit command button on this form that clo*ses all of Access. Something with a
line like:
DoCmd.Quit
...in the button's Click event.
8. Compile the code, close and save the form.
9. Close the database and then re-open. It *should* now comp*letely hide the Access window and only
show the data entry form.
>>>>>
--
Jeff Conrad
Access Junkie - MVP
http://home.bendbroadband.com/conrad...essjunkie.html http://www.access.qbuilt.com/html/articles.html
"H2OBOWL" wrote in message:
news:FBCFE74F-A5B9-44F4-8E97-3D1CE0A82C20@microsoft.com...
> After reading what you suggested I would like to test doing this. My db is
> just one I'm playing with and practicing because I like Access and the db is
> quite simple, plus I'm doing backups so if something went wrong it shouldn't
> be that much of a problem.
>
> I was trying to impliment it and I see the code below the instructions but I
> don't understand this part:
> ....call the fSetAccessWindow function with SW_HIDE as the argument.
>
> My Access skills are nothing to brag about...