[perl-win32-gui-users] Win32::GUI::DIBitmap & Win32::GUI::AxWindow

2002-05-30 Thread Laurent ROCHER
Hello, I have release new version of Win32::GUI::DIBitmap and Win32::GUI::AxWindow. Win32::GUI::DIBitmap = add new load/save image format and some image manipulation. Win32::GUI::AxWindow = Add ActiveX Control Hosting. See more at : http://perso.club-internet.fr/rocherl/Win32GUI.html Laurent.

Re: [perl-win32-gui-users] RichEdit update

2002-05-30 Thread Morbus Iff
>I have a routine that updates my richedit control but while it is getting >updated the control does not refresh properly. Here is my code: Try the following. This is what I use in AmphetaDesk: my ($message) = @_; # select our last line. $logbox->Select(99,99); $logbox->Rep

RE: [perl-win32-gui-users] RichEdit update

2002-05-30 Thread FARRINGTON, RYAN
if I'm reading this correctly you are wanting to replace everything in the Richedit box with your new $text? the easiest way I found was to just use $MainWindow->Results()->Text($text); if I am incorrect in my assumption please let me know so the new sub would be sub UpdateResults { my

[perl-win32-gui-users] RichEdit update

2002-05-30 Thread Jonathan Southwick
I have a routine that updates my richedit control but while it is getting updated the control does not refresh properly. Here is my code: sub UpdateResults { my ($text,$format) = @_; $MainWindow->Results->SetCharFormat(@{$ResultsTextFormat{$format}}); $MainWindow->Results->Select(9