[perl-win32-gui-users] RTF 2 HTML

2002-03-06 Thread Ultimate Red Dragon
Well, I worked for a bit tonight and I finally came up with a (admitantly pathetic) basic RTF to HTML converter. It's not that great, I don't claim it's efficient, just that it works. Currently, it supports new lines, bold, italics and underline. I'm working on converting < and > correctly, as

RE: [perl-win32-gui-users] Re: WYSIWYG

2002-03-06 Thread Frazier, Joe Jr
If you are asking for what I think, you are out of luck. Text is just what it says: Plain Text! If you want files which have some kind of formatting (font size, font style, font color, bold, etc) the files must be generated in a application which supports those things and saved as some type of

RE: [perl-win32-gui-users] change color in listbox for addstring

2002-03-06 Thread Rogers, John
Marc, AFAIK I dont think you can. ( I hope I am wrong ) Perhaps you can use ListView in a rethink? John R -Original Message- From: NAHUM Marc [mailto:[EMAIL PROTECTED] Sent: Wednesday, 6 March 2002 11:42 To: Rogers, John; perl-win32-gui-users@lists.sourceforge.net Subject: Re: [perl-win3

Re: [perl-win32-gui-users] change color in listbox for addstring

2002-03-06 Thread NAHUM Marc
I want change a unique item if ($toto==1) {$Listbox_verif_fic->AddString("$infocreation")} #in different color ... thanks, - Original Message - From: "Rogers, John" <[EMAIL PROTECTED]> To: "'NAHUM Marc'" <[EMAIL PROTECTED]>; Sent: Wednesday, March 06, 2002 2:24 PM Subject: RE: [perl-win3

RE: [perl-win32-gui-users] change color in listbox for addstring

2002-03-06 Thread Rogers, John
Hi, Do you want to change the whole list box, or each Item ? Whole ListBox, is easy something like; $Winobj->Listname->Change(-foreground=>[$r,$g,$b]) where r g b is 0 to 255 value, and/or -background Individual Items, I dunno, JohnR -Original Message- From: NAHUM Marc [mailto:[EMAIL P

RE: [perl-win32-gui-users] making windows - help w/code

2002-03-06 Thread Joe_Pfaltzgraff
Joe [EMAIL PROTECTED] 03/06/2002 08:23 AM Yup, you're right, it must be an issue with Komodo, command line works fine, Komodo doesn't. My work around for now is I tell the window to hide, and then show and it works. Thanks! "Rogers, John" <[EMAIL PROTECTED]> on 03/05/2002 06:27:20 PM To

[perl-win32-gui-users] change color in listbox for addstring

2002-03-06 Thread NAHUM Marc
hye, how can i change a color when i made a AddString into a Listbox ? thanks

Re: [perl-win32-gui-users] making windows - help w/code

2002-03-06 Thread paul . barker
Hmm, interesting. Are you by any chance trying to run the code from within a GUI debugger ? If I run your code from within Perl builder I get 2 windows. If I save the code and run it from a command window I get 3 windows ! Can't explain it but I'll keep thinking. I've replicated the behaviour w

Re: [perl-win32-gui-users] making windows - help w/code

2002-03-06 Thread paul . barker
Hi I've tried the code on XP and I don't get the first window or the button in the "Window Title" window. If I cut and paste the declaration for window 2 and call it window 3 I get another window but if I call it W1 I still don't see it ? I'll keep thinking ;-) PB ***