Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

perl windowing problem with win32!

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
I need to know how to change the color on a window i created, i need the step by step process of it, if possible.
 
and what window is it, exactly, that you created? i don't have any here on my terminal, maybe it didn't get created at all...
pardon the sarcasm, please be more specific - os, how you created the window, et cetera. if it's obscure, code samples would also help. "If you think you're too small to make a difference, try spending a night in a closed tent with a mosquito."
 
i used win32::GUI::Window

$W2 = new Win32::GUI::Window(
-name => "W2",
-title => "LOGIN!",
-topmost => 1,
-style => "Fixed",
-pos => [ -10, -10 ],
-size => [ 1500, 1500 ],
-font => $G,
);
$W2->Show();

 
the window is created, its just that i can't get the background to change color. the documentation that came with GUI doesn't help.

thanks for anyhelp you can give me!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top