\
And they are not turning on. do I have a syntax error here? I think I'll
just do a simpler version of opening a small window, and then using a
do.cmdOpenFrom from that window, and set the property to Dialog
--
see my other answer with a solution. keep in mind is no setting in a form to
open a form as dialog, it's when you open it using the open command is where
the setting takes place. note that a dialog form can only have the focus,
and not even built and menu bars for ribbons can receive the focus when a
dialog form is opened.
So, we have:
Diaglog fomrs
model forms
popup forms
regular forms
All in the above forms are very distinctly different and have different
uses. If your goal is to have an information form displayed, *while* the
focus can be had in other forms during operation of the application, then
the correct choice is to use a popup form, this is exactly what they are
designed for.
So you can use my suggestion in the other thread in which you simply drop
the form into another form as a sub form, and then set the popup of that
"main" form. You will not have to maintain two forms this way, nor will you
have to write any code to set or manage this particular setting, you just
open either one of the forms, which will both display the same form, but one
is actually displayed as a sub form inside of a parent form...