Re: [perl-win32-gui-users] Re: Re: (no subject)

2002-02-24 Thread Ultimate Red Dragon
Yeah, that seems to work. Thanks. I wonder if tracking will ever be completely incorperated into it. It would be nice if a person could just push the up arrow and expect it to scroll up with them. *Adds to wish list* Thanks again. Now all I need to do is figure out how to allow people to

Re: [perl-win32-gui-users] Re: Re: (no subject)

2002-02-24 Thread Sean Healy
#This IS executing, I can tell because $changes is being set to 1... sub reDesc_Change{ $changes = 1; my ($x,$y) = $main->reDesc->Selection; my $currentline = $main->reDesc->LineFromChar($x); while (1) { my $firstline = $main->reDesc->FirstVisibleLine; my $linecount = $main->r

Re: [perl-win32-gui-users] Re: Re: (no subject)

2002-02-24 Thread Ultimate Red Dragon
Hmm, it's still not working for me. Here, i'll post what I currently have: (All thats relevant) $main = Win32::GUI::Window->new(-width=>429, -height=>532, -style=> WS_MINIMIZEBOX | WS_SYSMENU, -text=>'Test', -name=>'Main', -menu=>$menu, -dialogui=>1 ); $ma

Re: [perl-win32-gui-users] (no subject)

2002-02-24 Thread Johan Lindstrom
At 12:57 2002-02-23 -0500, Ultimate Red Dragon wrote: Has anyone written/know how it could easily be done, a WYSIWYG HTML editor using a RichEdit field? It doesn't need to do much, just links, bold, italics, underline. Reading my answer I understand you asked the quite opposite from what I a

Re: [perl-win32-gui-users] (no subject)

2002-02-24 Thread Johan Lindstrom
At 12:57 2002-02-23 -0500, Ultimate Red Dragon wrote: Has anyone written/know how it could easily be done, a WYSIWYG HTML editor using a RichEdit field? It doesn't need to do much, just links, bold, italics, underline. RichEdit accepts RTF (Rich Text Format), så an HTML 2 RTF converter should

Re: [perl-win32-gui-users] Re: Re: (no subject)

2002-02-24 Thread Sean Healy
Well, to get the _Change event working, just send this message: $RichEdit->SendMessage(0x445, 0, 1); This will help me. This has probably been posted before. I wish the search function on the mailing archives would work. Ah well, if wishes were fishes... Unfortunately, theres a slight pr