Re: [perl-win32-gui-users] The DateTime control, XS and building win::gui from scratch

2003-10-20 Thread Laurent ROCHER
Hi, > I need to be able to set and read the minutes and seconds for a date time > control, but from the XS code it looks like this is not possible (!?). Yes, Win32::GUI::DateTime by default only work with date. You can turn it to a time control by adding DTS_TIMEFORMAT (0x0009) style. >

Re: [perl-win32-gui-users] scrollbars on a label?

2003-10-20 Thread Laurent ROCHER
Hello, It's possible to have a scroll bar with a label, but i don't think you can manage text scrolling. Easy way, it's to use a multiline TextEdit with Label look. my $Multitext = $Window->AddTextfield ( -name => "Multitext", -multiline => 1, -vscroll

Re: [perl-win32-gui-users] The DateTime control, XS and building win::gui from scratch

2003-10-20 Thread Laurent ROCHER
Hi, > I need to be able to set and read the minutes and seconds for a date time > control, but from the XS code it looks like this is not possible (!?). Yes, Win32::GUI::DateTime by default only work with date. You can turn it to a time control by adding DTS_TIMEFORMAT (0x0009) style. >

[perl-win32-gui-users] Removing checkboxes

2003-10-20 Thread Joseph . Vieira
Hello, How do you remove a checkbox from a window. I want to be able to click a button and remove all check boxes from the window and all references to them? Thanks, Joe

RE: [perl-win32-gui-users] Removing checkboxes

2003-10-20 Thread Peter Eisengrein
I don't think this will work, but maybe $checkbox->Hide() ? If not, you could create a blank Label to "cover" it. -Pete -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Monday, October 20, 2003 1:42 PM To: perl-win32-gui-users@lists.sourceforge.net Subject: [pe