Jump to content

[HELP] What is problem?


Seba500PLK

Recommended Posts

CLIENT

Show anyone. work when I delete guiGridListRemoveRow

  
  
function show() 
  
local x, y = guiGetScreenSize() 
window = guiCreateWindow(x / 2 - 310, y / 2 - 260, 620, 520, "Panel Admina", false) 
guiWindowSetSizable ( window, false ) 
guiSetVisible(window,false) 
  
TabPanel = guiCreateTabPanel ( 0.01, 0.05, 0.98, 0.95, true, window ) 
  
    test= guiCreateGridList ( 0.53, 0.10, 0.30, 0.83, true, window  ) 
    local columnV = guiGridListAddColumn( test, "Test", 0.5 ) 
  
buttonRefV = guiCreateButton(466, 263, 92, 17, "Refresh", false, aTab1.Tab) 
  
  
  
  
  
addEventHandler ( "onClientGUIClick", getResourceRootElement(getThisResource()),  
function () 
if (source == buttonRefV) then 
            local rowV2 = guiGridListAddRow ( test) 
             
            guiGridListRemoveRow(test, rowV2) 
            guiGridListSetItemText ( test, rowV2, columnV, "5", false, false )   
         
end 
end) 
  
  
  
  
  
end 
  
  

Edited by Guest
Link to comment

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...