Page 1 of 1

Window icon

Posted: Sat Feb 19, 2011 1:50 pm
by l3whmg
Hi guys.
I know that this it's not important, but to have an icon image on the window, I find this way.

Source name window.prg near line 1552 (L3W-B begin mod, L3W-E end mod)

Code: Select all

   // Set Properties
   ::oQTObject:move( ::nCol , ::nRow )
   ::oQTObject:resize( ::nWidth, ::nHeight )
   ::oQTObject:setWindowTitle( ::cTitle )
//L3W-B
   IF VALTYPE( ::cIcon ) != 'U'
    ::oQTObject:setWindowIcon( ::cIcon )
   ENDIF
//L3W-E
In this way I have image on the opened window, not at windows explorer level !

Cheers

Re: Window icon

Posted: Sat Feb 19, 2011 9:03 pm
by Rathinagiri
Thanks Luigi.