how to organize 4 open windows in the same place ea day in Access

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Telecom Admin needs help - Office Version 2003 -
Want to open 4 specific minimized windows that I use everyday on a 20"
screen so they appear in the four corners of my screen so I can look at a 4
tables or applications so I can choose from them.

Clarified: Need them to open in the same location on my open Access window.
I have to arrange the same programs everyday to the same locations...there
should be a way to dock these open files,k because I need to see all of them
open and viewable at the same time.

Thanks for any help with this,

Dan R McCullough
Telecom Admin
Christ For The Natons Institute, Dallas, TX
 
What's a Naton?

If this is within Access, meaning Access is Maximized, and the four forms
are to be opened inside it, then you could use the following code:

Const cintLeft As Integer = 0
Const cintTop As Integer = 0
Const intWidth As Integer = 250
Const intHeight As Integer = 250

Dim strFormName as String
strFormName = "FormName"
DoCmd.OpenForm strFormName
With Forms(strFormName)
.Move cintLeft, cintTop, cintWidth, cintHeight
End With
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top