Re: [perl-win32-gui-users] Can't find "PL_memory_wrap" in "perl58.dll"....

2007-02-10 Thread Robert May
[Please keep discussion on the list] marco hofmann wrote: > Hello, > I have ActivePerl5.8 and WindowsXP > > after installing version 1.05 as described > (with ppm install ./Win32-GUI.ppd after removing the old win32::gui > installation) and starting a script, come the error message in a > window

Re: [perl-win32-gui-users] RicheEdit Missing Append() method [Was: Textfield overflow or buffer limit ??]

2007-02-10 Thread Robert May
Jim Salisbury wrote: > I could not figure out how to use richedit as it does not have an > Append() method as does textfield. For the RichEdit control, you can use: $richedit->SetSel(-1,-1); # Move insertion point to the end $richedit->ReplaceSel($new_text); # Insert at the inserti