[perl-win32-gui-users] Outlook day control

2002-05-09 Thread Jake Skinner
I am trying to replicate outlooks calender control. If anyone has either already done this, or has some ideas as to were to start, that would be great. Aldo, you were slowly working on a spreadsheet type of control, is this just that used in a different way? If it is then is that source on sour

[perl-win32-gui-users] looking for Mike Blazer - sorry this was the last place I saw him

2001-06-03 Thread Jake Skinner
this seems to be defunct! > == > Mike Blazer > [EMAIL PROTECTED] > http://base.dux.ru/guest/fno/perl/ > == Hello Mike Are you still maintaining the RAS perl module? If you are, have you created a patch for Win2K Adv Server? I am una

[perl-win32-gui-users] perl2exe stuff - what version?

2001-01-14 Thread Jake Skinner
> > "Use sockets" in my perl win32 GUI code and convert it to .exe using > > perl2exe > > > > and I try to run the code in another machine it complaines " > perlcrt.dll not > > found" I haven't run across this before. I use perl2exe and the resultant program runs on 2k/NT/9x/Me machines that I nev

[perl-win32-gui-users] Updown buddied with a texfield

2001-01-11 Thread Jake Skinner
When the textfield has the focus I would like to be able to press the uparrow and have the count increase. The textfield contains a number between 0 - 10. Also if there is a much simpler way to achieve the same result please let me know!! :) Thanks Jake

RE: [perl-win32-gui-users] Event processing - soln?

2001-01-11 Thread Jake Skinner
To make it not so clunky adding an update for the first window helps. > sub Loop_Click { > >foreach $i (0 ... 3) { > &Show_Win2($i); ie $Win->Update(); > sleep 1; >} > } Jake

[perl-win32-gui-users] Event processing - soln?

2001-01-11 Thread Jake Skinner
David does this do what you want? It is a little clunky but it does the job. Jake use Win32::GUI; $Win = new Win32::GUI::Window( -left => 341, -top=> 218, -width => 300, -height => 213, -name => "Win", -text => "Window Title" ); $Win->Show(

RE: [perl-win32-gui-users] possible problem with GetOpenFilename

2001-01-10 Thread Jake Skinner
No wonder you were so keen on fixing the memory leak bug!!! :) Jake > stuff), and save a _whole_ byte of memory (for about 15 seconds).

RE: [perl-win32-gui-users] The memory leak problem (fixed, I hope ;)

2001-01-10 Thread Jake Skinner
Well done Sam! Well done Aldo!!!