Right now I have a hidden form frmLoadData start from the startup option. This is the code in that frmLoadData. It opens the frmsplash but only shows the title and boarder, then runs the macro maclocaldata. when that macro ends, and not until then does the body of the frmsplash appear. I need for the entire form to be displayed then the macro run.
Private Sub Form_Open(Cancel As Integer) DoCmd.OpenForm "frmsplash", acNormal, , , acFormEdit, acWindowNormal End Sub
Private Sub StartUP() DoCmd.RunMacro "MacLocalData" ' Load Data End Sub
"Linq Adams via AccessMonster.com" wrote:
[Quoted Text] > WE really need to see the code you're currently using to do all of this, in > order to make an intelligent guess at what you need to modify. You have your > database in front of you, but we don't. > > -- > There's ALWAYS more than one way to skin a cat! > > Answers/posts based on Access 2000/2003 > > Message posted via AccessMonster.com > http://www.accessmonster.com/Uwe/Forums.aspx/access-formscoding/200811/1> >
|