Hi
I store a form name in a table and later i retrive the same in string
and now i want to convert it to form object. how can i do this
thanks
ASM
Printable View
Hi
I store a form name in a table and later i retrive the same in string
and now i want to convert it to form object. how can i do this
thanks
ASM
I suggest that you store the form object and then access the property of your form instear of storing the form name only.
My idea is -- change the back color / fore color/ font of form for that
I store the form name in table. And public function i write in module
and call it in each form when it is active.
Code:Public Sub ColorScheme(ByRef frm As Form)
frm.BackColor = Color.FromArgb(233, 106, 69)
frm.ForeColor = Color.FromArgb(255, 255, 128)
End Sub