At 03:56 PM 4/27/2010, A.G. IJntema wrote:

I run a MDI form, but it is always centered in the screen.
I have tried to make use of the properties.

  EDIT USING PJT_PROJECT_TREE WHERE &G_SELECT MDI
  PROPERTY PJT_PROJECT_TREE TOP 0
  PROPERTY PJT_PROJECT_TREE LEFT 0
  PROPERTY PJT_PROJECT_TREE REFRESHLIST 'True'

I like to have it on the upper left in the screen

What am I doing wrong?

Tony,

Once finalized and coordinated accordingly, use the appropriate
TOP and LEFT coordinates for each individual form as "On After
Start" EEP.

For Example:

For Form_A use the following PROPERTY commands as On After Start
EEP:

PROPERTY RBASE_FORM TOP 14
PROPERTY RBASE_FORM LEFT 20
EDIT USING Form_B MDI AS 'Form_B'
RETURN

For Form_B use the following PROPERTY commands as On After Start
EEP:

PROPERTY RBASE_FORM TOP 14
PROPERTY RBASE_FORM LEFT 520
EDIT USING Form_C MDI AS 'Form_C'
RETURN

For Form_C use the following PROPERTY commands as On After Start
EEP:

PROPERTY RBASE_FORM TOP 410
PROPERTY RBASE_FORM LEFT 20
EDIT USING Form_D MDI AS 'Form_D'
RETURN

For Form_D use the following PROPERTY commands as On After Start
EEP:

PROPERTY RBASE_FORM TOP 410
PROPERTY RBASE_FORM LEFT 520
RETURN

For a sample application to demonstrate the use of such technique,
take a look at your SAT Sample Applications for the following:

Sample Application: Designing MDI Applications
Folder: \Super_Advanced_Training\DesigningMDIApplications
Database: MDIForms
Startup File: DesigningMDIApplications.DAT

Hope that helps!

Very Best R:egards,

Razzak.


Reply via email to