From: Guillem C. W. <vac...@es...> - 2002-06-05 18:45:55
|
Hi again, In this case I would like to Disable a Window from a external module, I = have declared a Window with "Our".=20 package Mailtool::gethttp; our $WindowGet =3D Win32::GUI::Window->new ( ... Is this possible to change his properties externaly, I have tried thinks such as: package Mailtool::accesweb; use Mailtool::gethttp; if ($Mailtool::gethttp::WindowGet->IsVisible()) { $Mailtool::gethttp::WindowGet->Disable(); } but no results... The only way to do this is passing the WindoGet as a parameter ? Guillem |