View Single Post
  #8  
Old 07-21-2007, 02:25 AM
coreys coreys is offline
N-Pulse Assistant Manager
coreys's Avatar
Join Date: Mar 2005
Posts: 2,180
coreys has a spectacular aura about
Send a message via AIM to coreys Send a message via MSN to coreys Send a message via Yahoo to coreys
Nope...here's the entire code:
PHP Code:
//#CLIENTSIDE
public function showParty() {
  
PartyMain.destroy();
  new 
GuiWindowCtrl(PartyMain) {
    
GraalControl.width 1800;
    
extent = {180350};
    
alpha .5;
    
text "  Party";
    new 
GuiScrollCtrl(PartyListScroll) {
      
725;
      
extent = {165150};
      
hScrollBar "alwaysOff";
      
vScrollBar "dynamic";
      new 
GuiTextListCtrl("Test_List") {
        
profile GuiBlueTextListProfile;
        
0;
        
width 140;
        
fitparentwidth true;
     
        
clearrows();
        
addrow(0,"TextList");
        
addrow(1,"Second line");
        
setSelectedRow(1);
      }
    }
  }

__________________

Quote:
*SlikRick: so should I even ask about your aim status?
*Xor: well if you want to
*Xor: but i am LARPING
*SlikRick: While on a computer?
*Xor: yes
*Xor: in my living room
*SlikRick: ahh
*Xor: i have a fort setup to hide from beasts
Reply With Quote