Thread: Gui Help
View Single Post
  #12  
Old 06-11-2011, 01:19 PM
patrickp2p patrickp2p is offline
Registered User
patrickp2p's Avatar
Join Date: May 2011
Location: Maryland
Posts: 159
patrickp2p is an unknown quantity at this point
PHP Code:
//#CLIENTSIDE
function onCreated() {
  new 
GuiWindowCtrl("MyGUI_Window4") {
    
profile = GuiBlueWindowProfile;
    
clientrelative = true;
    
clientextent = "320,240";

    
canmove = false;
    
canresize = false;
    
closequery = false;
    
destroyonhide = false;
    
text = "UPDATE";
    
x = 509;
    
y = 203;

    new 
GuiTextCtrl("MyGUI_Text2") {
      
profile = GuiBlueTextProfile;
      
height = 20;
      
text = "HIRINGS";
      
width = 70;
      
x = 7;
      
y = 4;
    }
    new 
GuiTextCtrl("MyGUI_Text3") {
      
profile = GuiBlueTextProfile;
      
height = 20;
      
text = "--------------------------------------";
      
width = 380;
      
y = 18;
    }
    new 
GuiTextCtrl("MyGUI_Text4") {
      
profile = GuiBlueTextProfile;
      
height = 20;
      
text = "|";
      
width = 10;
      
x = 79;
    }
    new 
GuiTextCtrl("MyGUI_Text5") {
      
profile = GuiBlueTextProfile;
      
height = 20;
      
text = "|";
      
width = 10;
      
x = 79;
      
y = 11;
    }
    new 
GuiTextCtrl("MyGUI_Text6") {
      
profile = GuiBlueTextProfile;
      
height = 20;
      
text = "BY: P@TR!CK (Owner)";
      
width = 190;
      
x = 105;
      
y = 2;
    }
    new 
GuiTextCtrl("MyGUI_Text7") {
      
profile = GuiBlueTextProfile;
      
height = 20;
      
text = "DATE:";
      
width = 50;
      
x = 12;
      
y = 31;
    }
    new 
GuiTextCtrl("MyGUI_Text8") {
      
profile = GuiBlueTextProfile;
      
height = 20;
      
text = "------------------------------------";
      
width = 360;
      
y = 45;
    }
    new 
GuiTextCtrl("MyGUI_Text9") {
      
profile = GuiBlueTextProfile;
      
height = 20;
      
text = "|";
      
width = 10;
      
x = 79;
      
y = 23;
    }
    new 
GuiTextCtrl("MyGUI_Text10") {
      
profile = GuiBlueTextProfile;
      
height = 20;
      
text = "|";
      
width = 10;
      
x = 79;
      
y = 36;
    }
    new 
GuiTextCtrl("MyGUI_Text11") {
      
profile = GuiBlueTextProfile;
      
height = 20;
      
text = "June 10th 2011";
      
width = 140;
      
x = 110;
      
y = 30;
    }
    new 
GuiScrollCtrl("MyGUI_MultiLine1_Scroll") {
      
profile = GuiBlueScrollProfile;
      
height = 171;
      
hscrollbar = "dynamic";
      
vscrollbar = "dynamic";
      
width = 320;
      
y = 67;

      new 
GuiMLTextCtrl("MyGUI_MultiLine1") {
        
profile = GuiBlueMLTextProfile;
        
horizsizing = "width";
        
text = "Hello and welcome to Bellview! We are currently undergoing HEAVY cunstruction and we need a strong staff team. We are currently hiring all Development positions. Please contact P@TR!CK at [email][email protected][/email]. Thanks.";
        
width = 295;
      }
    }
  }
} 
__________________
"If your bible got caught in a rain and thunderstorm, would it rip? My bible is the rain and the thunder."

Love me or hate me? O:

<--Are Questions Accepted Here? (:

Last edited by Tigairius; 06-11-2011 at 06:23 PM.. Reason: [php]text[/php]
Reply With Quote