in reply to Re^3: Cursor at end of Richedit control
in thread Cursor at end of Richedit control
and I now wish - using your terminology - to "Give the richedit control the focus, so that the text cursor (otherwise known as the insertion point), appears with the richedit control" AND at the end of it. Hope that helps?sub ::cbParameter_Change{defined(my $win = $Win32::GUI::Loft::window{H +allblacks} ) or return(1); my $fh; # general filehandle my $list = $win-> cbParameter-> GetLBText($win-> cbParameter-> Get +CurSel()); my $path = getdcwd()."\\Lists\\$list.txt"; if (!(-e $path)) { open($fh, ">$path"); close $fh; }; $win-> reReport-> Load($path, 1); }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: Cursor at end of Richedit control
by BrowserUk (Patriarch) on Aug 18, 2007 at 20:22 UTC | |
|
Re^5: Cursor at end of Richedit control
by briannz556 (Beadle) on Aug 18, 2007 at 21:12 UTC | |
by BrowserUk (Patriarch) on Aug 18, 2007 at 21:30 UTC |