Re: [wxlua-users] problem with call back

2008-12-07 Thread arpin
> I'd use a print statement and handle the error as gracefully as > possible so the program can continue. > This is also old and repetitive I will wait longer in between sending messages. They did not appear for a few days. Andre

Re: [wxlua-users] problem with call back

2008-11-25 Thread John Labenski
On Tue, Nov 25, 2008 at 12:19 PM, arpin <[EMAIL PROTECTED]> wrote: > arpin <[EMAIL PROTECTED]> writes: > >> >> If one code the following function >> >> --wxString BugsGridTable::GetRowLabelValue( int col ) >> gridtable.GetRowLabelValue = function( self, row ) >> error("unexpected ro

Re: [wxlua-users] problem with call back

2008-11-25 Thread arpin
arpin <[EMAIL PROTECTED]> writes: > > If one code the following function > > --wxString BugsGridTable::GetRowLabelValue( int col ) > gridtable.GetRowLabelValue = function( self, row ) > error("unexpected row"); > return "x"..row; > end > This occurs when you are in t

Re: [wxlua-users] problem with call back

2008-11-25 Thread John Labenski
On Tue, Nov 25, 2008 at 8:36 AM, arpin <[EMAIL PROTECTED]> wrote: > If one code the following function > >--wxString BugsGridTable::GetRowLabelValue( int col ) >gridtable.GetRowLabelValue = function( self, row ) >error("unexpected row"); >return "x"..row; >end > > then t

[wxlua-users] problem with call back

2008-11-25 Thread arpin
If one code the following function --wxString BugsGridTable::GetRowLabelValue( int col ) gridtable.GetRowLabelValue = function( self, row ) error("unexpected row"); return "x"..row; end then the program crash instead of reporting the error Andre