UML class convert to Perl OO

2005-06-13 Thread peace under the tree
Dear all I have problem to convert the UML's classes into Perl Object oriented, coz, I can't find a good example to do with it. Anyone know, where can I can some good example on the net. Thank you very much. -- May GOD blesses you, and your family

Win32::GUI::AxWindow

2005-06-13 Thread Anton Ganeshalingam
Hello to all, I'm trying to write a Win32::GUI::AxWindow application by opening a web page. But for some reason I'm not able to get my javascript work and also I couldn't load the following scripts loaded in my active x window: link rel=stylesheet type=text/css

Win32::Perms-AddAudit

2005-06-13 Thread Christopher Rosen
Trying to add file audit settings, but the following is not working. $file = new Win32::Perms(c:\\test.txt); if ($file-AddAudit(Everyone, ALL, SUCCESS || FAILURE)) { print (\nSet audit.\n); } else { print (\nDid not set audit.\n); } Thanks -

Re: Photo EXIF information ????

2005-06-13 Thread Leigh Sharpe
Image::Info can do it. For examples, have a look at the photo gallery software available at www.fuzzymonkey.org ___ Perl-Win32-Users mailing list Perl-Win32-Users@listserv.ActiveState.com To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Win32:OLE - Speech.VoiceText

2005-06-13 Thread Jon Bjornstad
This code: use Win32::Ole; my $voice = Win32::Ole-new(Speech.VoiceText); $voice-Register('', 'Perl'); $voice-speak(hello world); STDIN;# wait til it finishes speaking has been used succesfully on Windows98 (with the Microsoft Speech SDK installed) and on Windows 2000 (which has it

RE: Win32:OLE - Speech.VoiceText

2005-06-13 Thread Allegakoen, Justin Devanandan
--8--- has been used succesfully on Windows98 (with the Microsoft Speech SDK installed) and on Windows 2000 (which has it installed by default, apparently). The same code does not, however, work on Windows XP. What has changed? There IS a text-to-speech service on XP. How do I

evaluating a math statement

2005-06-13 Thread Shain Edge
I know I can use Eval, but I'm uncertain how to do it. $x = 5+4*3-2+1; I would like the program to give me the answer to the string math. How do I go about it? Shain -- RPG-Edge Forum: http://rpg-edge.ketnar.org/vbb Up and comming new singer- Kendall Gaveck:

Re: Win32:OLE - Speech.VoiceText

2005-06-13 Thread Sisyphus
- Original Message - From: Jon Bjornstad [EMAIL PROTECTED] To: perl-win32-users@listserv.ActiveState.com Sent: Tuesday, June 14, 2005 9:26 AM Subject: Win32:OLE - Speech.VoiceText This code: use Win32::Ole; my $voice = Win32::Ole-new(Speech.VoiceText); $voice-Register('', 'Perl');

RE: Win32:OLE - Speech.VoiceText

2005-06-13 Thread Jan Dubois
On Mon, 13 Jun 2005, Sisyphus wrote: - Original Message - On Tue, 14 Jun 2005, Jon Bjornstad [EMAIL PROTECTED] wrote: This code: use Win32::Ole; my $voice = Win32::Ole-new(Speech.VoiceText); $voice-Register('', 'Perl'); $voice-speak(hello world); STDIN;# wait til

Re: evaluating a math statement

2005-06-13 Thread Sisyphus
- Original Message - From: Shain Edge [EMAIL PROTECTED] To: Perl-Win32-Users@listserv.ActiveState.com Sent: Tuesday, June 14, 2005 11:06 AM Subject: evaluating a math statement I know I can use Eval, but I'm uncertain how to do it. $x = 5+4*3-2+1; Untested: use warnings; $x =

Re: evaluating a math statement

2005-06-13 Thread $Bill Luebkert
Shain Edge wrote: I know I can use Eval, but I'm uncertain how to do it. $x = 5+4*3-2+1; I would like the program to give me the answer to the string math. How do I go about it? use strict; use warnings; my $x; eval \$x = 5+4*3-2+1; # you need to escape $x so it's not interpolated before

Re: Win32:OLE - Speech.VoiceText

2005-06-13 Thread Jon Bjornstad
Sisyphus, Jan, all, Right. I'm sitting here copying code between an un-networked Win98 laptop, an XP machine and my Apple iBook and apologize for the sloppy copying. This code does work on Win98 (with the Speech SDK installed) and Win2000 (stock) but not on XP: use Win::OLE; my $voice =

RE: Win32:OLE - Speech.VoiceText

2005-06-13 Thread Jan Dubois
On Mon, 13 Jun 2005, Jon Bjornstad wrote: This code does work on Win98 (with the Speech SDK installed) and Win2000 (stock) but not on XP: use Win::OLE; my $voice = Win32::OLE-new('Speech.VoiceText'); die no voice: $!\n unless $voice; $voice-Register('', 'Perl'); while (STDIN) {

Re: Win32:OLE - Speech.VoiceText

2005-06-13 Thread Sisyphus
- Original Message - From: Jon Bjornstad [EMAIL PROTECTED] To: Jan Dubois [EMAIL PROTECTED] Cc: 'Sisyphus' [EMAIL PROTECTED]; perl-win32-users@listserv.ActiveState.com Sent: Tuesday, June 14, 2005 1:13 PM Subject: Re: Win32:OLE - Speech.VoiceText Sisyphus, Jan, all, Right. I'm