Thread: Few questions
View Single Post
  #2  
Old 07-20-2008, 08:31 PM
cbk1994 cbk1994 is offline
the fake one
cbk1994's Avatar
Join Date: Mar 2003
Location: San Francisco
Posts: 10,718
cbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond repute
Send a message via AIM to cbk1994
First: I'm not certain that onAction() is called for a GuiMLTextCtrl ... I recommend simply a GuiTextCtrl, there's no reason you need a multi-line one anyway.

Second: Text list columns work like this:
PHP Code:
new GuiScrollCtrl"blah" )
{
  
// stuff here
  
new GuiTextListCtrl"blahblah" )
  {
    
columns = { 050100120 }; // Where (the x value) at where the new column starts
    
addRow0"Hi \t Yo \t ;o \t sup ); // You don't need the spaces, that's just to show.
  }

Third: How are you using saveLines?
PHP Code:
array.saveLines"path/to/file"false ); // The second paramater is to append; false to overwrite, true to append 
__________________
Reply With Quote