Jump to content

طلب كود البحث بالقريد ليست


Recommended Posts

السلام عليكم

الحين انا معي كود لمبرمج يبحث في قريد ليست لكن يبحث في جداول

function refreshShort()
guiGridListClear(System_grid)
    for i, GR in ipairs(Copy_List) do
        local row = guiGridListAddRow(System_grid)
        guiGridListSetItemText(System_grid, row, 1, GR[1], false, false)
        guiGridListSetItemColor(System_grid, row, 1, math.random(1, 255), math.random(2, 255), math.random(3, 255))
    end
end


addEventHandler('onClientGUIChanged', resourceRoot, function()
    if source == System_Box then
    local textVar = guiGetText(System_Box)
        if textVar == '' then
            refreshShort()
        else
guiGridListClear(System_grid)
            for k, v in ipairs(Copy_List) do
                if string.find(v[1]:upper(), textVar:upper()) then
                    local row = guiGridListAddRow(System_grid)
                    guiGridListSetItemText(System_grid, row, 1, v[1], false, false);
                    guiGridListSetItemColor(System_grid, row, 1, math.random(1, 255), math.random(2, 255), math.random(3, 255))
                end
            end
        end
    end
end)

دا لازم القريد ليست يكون فيه جداول

الحين انا سويت قريد ليست يجي فيه لوقات كلام واشياء كتير ابيه يبحث فيهم

وهاددا الكود حق وضع اللوق في القريد ليست

addEvent(":1", true)
addEventHandler(:1", root, 
function(LogHo)
	guiGridListClear(Wnd2.gridlist[1])
	for Key, Value in ipairs(LogHo) do
		local Row = guiGridListInsertRowAfter(Wnd2.gridlist[1], -1)
		guiGridListSetItemText(Wnd2.gridlist[1], Row, 1,Value.Time.." "..Value.Action, false, false)
		guiGridListSetItemColor(Wnd2.gridlist[1], Row, 1, Value.R, Value.G, Value.B)
	end
end
)

 

Link to comment
9 minutes ago, Mr.Mostafa said:

السلام عليكم

الحين انا معي كود لمبرمج يبحث في قريد ليست لكن يبحث في جداول


function refreshShort()
guiGridListClear(System_grid)
    for i, GR in ipairs(Copy_List) do
        local row = guiGridListAddRow(System_grid)
        guiGridListSetItemText(System_grid, row, 1, GR[1], false, false)
        guiGridListSetItemColor(System_grid, row, 1, math.random(1, 255), math.random(2, 255), math.random(3, 255))
    end
end


addEventHandler('onClientGUIChanged', resourceRoot, function()
    if source == System_Box then
    local textVar = guiGetText(System_Box)
        if textVar == '' then
            refreshShort()
        else
guiGridListClear(System_grid)
            for k, v in ipairs(Copy_List) do
                if string.find(v[1]:upper(), textVar:upper()) then
                    local row = guiGridListAddRow(System_grid)
                    guiGridListSetItemText(System_grid, row, 1, v[1], false, false);
                    guiGridListSetItemColor(System_grid, row, 1, math.random(1, 255), math.random(2, 255), math.random(3, 255))
                end
            end
        end
    end
end)

دا لازم القريد ليست يكون فيه جداول

الحين انا سويت قريد ليست يجي فيه لوقات كلام واشياء كتير ابيه يبحث فيهم

وهاددا الكود حق وضع اللوق في القريد ليست


addEvent(":1", true)
addEventHandler(:1", root, 
function(LogHo)
	guiGridListClear(Wnd2.gridlist[1])
	for Key, Value in ipairs(LogHo) do
		local Row = guiGridListInsertRowAfter(Wnd2.gridlist[1], -1)
		guiGridListSetItemText(Wnd2.gridlist[1], Row, 1,Value.Time.." "..Value.Action, false, false)
		guiGridListSetItemColor(Wnd2.gridlist[1], Row, 1, Value.R, Value.G, Value.B)
	end
end
)

 

كمل في موضوعك السابق

 

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...