hello,
i have 2 forms that i want to display in 2 different ways.
form1 shows form2 with vbmodal as default.
then on form2 i have a check button thay says: 'always on top'.
when you click on it you change the default setting either to on top or not on top.
i only managed to get this work after reloading form2 from withing the program (at realtime) because i use:
form2.show 1 ' vbmodal
form2.show 0
so how can i make the change without reloading form2?
thanks..