[perl-win32-gui-users] displaying an empty Grid?

2003-07-08 Thread tivolinewbie
I wonder what the behaviour of the Win32::GUI::Grid should be if you have created a grid and before you do anything with it you just want to set it on $Grid->Show This is what I have observe. WHen I launch my program up, I have to connect to a database, ie. this picture. http://www.geocities.com/c

Re: [perl-win32-gui-users] Tooltips - do they work?

2003-07-08 Thread Laurent ROCHER
Same problem for me. I replace $Window->AddDateTime( with new Win32::GUI::DateTime( -parent => $Window, And Tootip work on Button. I don't see any NEM (New Event Model) availlable on DateTime Control in Win32::GUI Source code. Only generic event are available -events => { MouseMove => sub

RE: [perl-win32-gui-users] Tooltips - do they work?

2003-07-08 Thread Jeremy White
Thanks for the example, still not working... Also, I can't seem to get any of the events working when using the -event option in your example !? I'm using 665, perl 5.6, the binary from http://perso.club-internet.fr/rocherl/Win32GUI.html Bizarre stuff. Cheers, jez. From: "Frazier, Joe J

Re: [perl-win32-gui-users] RE: using Win32::GUI::Grid

2003-07-08 Thread Laurent Rocher
My previous message was unfinished ;o) The second parameter of InsertColumn is the cell format not Column index. I put a small sample with InsertColumn and InsertRow as attached file. Laurent. --- From: "Chris Wear

Re: [perl-win32-gui-users] using Win32::GUI::Grid

2003-07-08 Thread Laurent Rocher
Hi, I think the problem in your sample is InsertColumn. InsertColumn (strHeading, [nFormat = DT_CENTER|DT_VCENTER|DT_SINGLELINE], [nColumn = -1]) => return icol You set Laurent. > > I am trying to use Grid.pm to display rows after rows > of data I retrieve from a DB2 database. The problem is