http://qs1969.pair.com?node_id=915597


in reply to problem with wxTextCtrl right alignment

You want to use rich text ctrl, see http://svn.wxwidgets.org/svn/wx/wxWidgets/trunk/samples/text/text.cpp and
#!/usr/bin/perl -- use strict; use warnings; use Wx; use Wx::Demo; my $app = Wx::SimpleApp->new; my $demo = Wx::Demo->new; $demo->show_module( 'Wx::DemoModules::wxRichTextCtrl'); $demo->show_demo_window; $app->MainLoop; exit( 0 );

Replies are listed 'Best First'.
Re^2: problem with wxTextCtrl right alignment
by Swalif (Scribe) on Jul 20, 2011 at 06:30 UTC
    I really appreciate your quick response, this fixed the problem and worked perfect. best regards