bomb6767 Posted May 1, 2016 Share Posted May 1, 2016 السلام عليكم ممكن كود البحث لان عندي مود انتقالات وفيه اماكن كثيرة وحطيت اديت فوق لكن ما ادري وش الكود . Link to comment
[iMr]-W[i]Fi,.! Posted May 2, 2016 Share Posted May 2, 2016 addEventHandler("onClientGUIChanged",editname, function () local edit = guiGetText (editname) if edit == "" then for i,mk in ipairs(Plases) do local row = guiGridListAddRow(gridname) guiGridListSetItemText(gridname,row,1,mk[1],false,false) guiGridListSetItemData(gridname,row,1,{mk[2],mk[3],mk[4]}) end else guiGridListClear (gridname) for i,k in ipairs (Plases) do local placeName = k[1] if string.find (string.upper(placeName),string.upper(edit)) then local row = guiGridListAddRow (gridname) guiGridListSetItemText (gridname,row,1,placeName,false,false) guiGridListSetItemData(gridname,row,1,{k[2],k[3],k[4]}) end end end end ) 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