Anthony George wrote:
> 
> I have an app that I need a popup calendar for, wondering if there's
> something someone has written(even if it's just the backend stuff,
> figuring out what day would be what-future/past/etc), I ran around CPAN
> a bit, didn't see much I though would help me....
> TIA
> >tony

Maybe u can use this:

=================================
use Win32::GUI;

$W = new GUI::Window(
    -title    => "Win32::GUI DateTime",
    -left     => 100, 
    -top      => 100, 
    -width    => 240, 
    -height   => 70,
    -name     => "Window",
);

new Win32::GUI::DateTime(
        $W,
    -left     => 10,
    -top      => 10, 
    -width    => 200, 
    -height   => 20,
    -name     => "DateTime",
);

$W->Show;
Win32::GUI::Dialog();

sub Window_Terminate {
    return -1;
}
=================================

Or use the DateCalc module (CPAN)!

-- 
Met vriendelijke groet,
Danny Hoffman, Elements Internet Producties, http://www.elements.nl

Reply via email to