cancel
Showing results for 
Search instead for 
Did you mean: 

Model Form

former_member325312
Active Contributor
0 Kudos

Hi All

I have created a fom which is a child form.I need the fuctionality to be worked as the child form is active parent should be inactive and it should not alow to select any other form if this child form is active.

The fuctionality will be same like our Model form in sample programs.

regards

Jennifer

Edited by: Rui Pereira on Dec 23, 2008 3:36 PM

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

hi,

use a public Boolean variable

Public Bool as Boolean = False

after opening the Model Form give next line code as

Bool = True

Now when check for what ever the event they perform as below

If Bool = True Then
BubbleEvent=False
End If

and while closing the Model form means on FormClose Event use the following

Bool = False

guess the above solves your problem

regards,

varma

former_member325312
Active Contributor
0 Kudos

Hi Verma

Thank you for U R Reply.This Logic ios not Working

Regards

Jennifer