Seba500PLK Posted January 26, 2015 Share Posted January 26, 2015 (edited) 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 January 26, 2015 by Guest Link to comment
Malak Posted January 26, 2015 Share Posted January 26, 2015 Hi, Where is defined the variable vehicle ? mb try like that : guiGridListRemoveRow(test, rowV2) Link to comment
Seba500PLK Posted January 26, 2015 Author Share Posted January 26, 2015 Hi,Where is defined the variable vehicle ? mb try like that : guiGridListRemoveRow(test, rowV2) I change my variables Link to comment
Seba500PLK Posted January 26, 2015 Author Share Posted January 26, 2015 help me anyone? Link to comment
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now