Jump to content

طلب كود بسرعه


Recommended Posts

سلام عليكم

انا عامل لوحة فيها 3 ايديت

عاوز اليكتب في ال3 ايديت ويضعط علي button

يروح الحاجات الكتبها

في الوحة التاني في القريد لست

القريد لست ي 3 كلوم

اسمو

Name - Mail - Card

عاوز الكتب علي الايديت باي شي ال3 ايدات

وضعط علي البيتون

يروح ال3 حاجات علي ال3 كلومات في القريد لست

وملحوظه لازم يكتب في ال3 ايدات

Link to comment

مشكلتك تتطلب وتاخذ جاهز بس ماتفهم للاكواد

المفروض تتعلم من الجاهز وتعتمد على نفسك

وطلبك ذا انت طالبه قبل كذا يمكن عشر مرات

حاول تتعلم يااخي حرام عليك :oops:

Link to comment

ارجو الرد انا جربت اعمله ما عمل

GRID = guiCreateGridList(9, 21, 443, 220, false, wnd) 
        local clom = guiGridListAddColumn(GRID, "Name", 0.3) 

addEventHandler ( "onClientGUIClick", resourceRoot,function () 
if ( source == send ) then 
local row = guiGridListAddRow (GRID) 
if guiGetText(editname) ~= '' then 
guiGridListSetItemText (GRID, row,clom,guiGetText(editname), false, false) 
end 
end 
end) 

Link to comment

بالتأكيد ماراح يقعدون يصلحون لك اكواد جاهزه

لازم تتعلم وتشوف كيف يتم تركيب الاكواد

الفنكشنات اللازمة

  
guiGetText 
guiGridListAddRow 
if guiGetText(...) ~= "" then 
guiGridListSetItemText 
  
Link to comment

شف ما ظبت

addEventHandler ( "onClientGUIClick", resourceRoot,function () 
if ( source == send ) then 
local row = guiGridListAddRow (GRID) 
if guiGetText(editname) ~= '' then 
guiGridListSetItemText (GRID, row,clom,guiGetText(editname), false, false) 
end 
end 
end) 

GRID = guiCreateGridList(9, 21, 443, 220, false, wnd) 
        local clom = guiGridListAddColumn(GRID, "Name", 0.3) 

Link to comment
  
  
GRID = guiCreateGridList(9, 21, 443, 220, false, wnd) 
clom = guiGridListAddColumn(GRID, "Name", 0.3) 
  
  
  
]addEventHandler ( "onClientGUIClick", root,function () 
if  source == send  then 
local row = guiGridListAddRow (GRID) 
  
local Guitext =  guiGetText(editname) 
  
  
  
if Guitext ~=  ""  then return end 
  
guiGridListSetItemText (GRID, row,clom,Guitext, false, false) 
  
end 
  
end 
  
  
  
) 

Link to comment
addEventHandler ( "onClientGUIClick", root,function () 
if  source == send then  
  
  
  
  
  
local Text_1 =  guiGetText( editname ) 
  
  
  
 if Text_1 ==  ""  then outputChatBox("# Error",0,255,0) return end 
  
local row = guiGridListAddRow ( GRID) 
  
  
  
  
  
 guiGridListSetItemText (GRID, row,clom,Text_1, false, false) 
  
  
  
  
end 
  
end 
  
  
  
) 

Link to comment

يعني انت عملاهالي تيجي في كلوم واحد ويكتب في ايديت واحد

انا عاوز يكتب في 3 ايدات

و يجي في ال3 كلوم

clom = guiGridListAddColumn(GRID, "Name", 0.3) 
        guiGridListAddColumn(GRID, "MailName", 0.3) 
        guiGridListAddColumn(GRID, "Card", 0.3)  

Link to comment

سؤال بسيط

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

Name

MailName

Card

ليش تبي تحط 3 ايديت بوكس ويجيب نفس الكلام ويحطه بالكولمن !

م انت تقدر تحطهم من ال

guieditor

:|

Link to comment

ما عملت

addEventHandler ( "onClientGUIClick", root,function () 
if  source == send then 
local Text_1 =  guiGetText( editname ) 
local Text_2 =  guiGetText( editmail ) 
local Text_3 =  guiGetText( dito ) 
 if Text_1 ==  ""  then 
 if Text_2 ==  ""  then 
 if Text_3 ==  ""  then 
local row = guiGridListAddRow ( GRID) 
 guiGridListSetItemText (GRID,row,Column1,guiGetText(editname),false,false) 
guiGridListSetItemText (GRID,row,Column2,guiGetText(editmail),false,false) 
guiGridListSetItemText (GRID,row,Column3,guiGetText(dito),false,false) 
end 
end 
end 
end 
end  
  
) 

Link to comment

لان اوسكار فاهم طلبك غلط

تفضل طلبك كامل مكمل مع لوحة

  
addEventHandler("onClientResourceStart", resourceRoot, 
    function() 
local screenW, screenH = guiGetScreenSize() 
        window = guiCreateWindow((screenW - 579) / 2, (screenH - 286) / 2, 579, 286, ":: [ 6LAB LE3BA ] ::", false) 
        guiWindowSetSizable(window, false) 
        guiSetAlpha(window, 0.97) 
        guiSetVisible(window,true) 
        GridList = guiCreateGridList(10, 25, 208, 245, false, window) 
        Edit1 = guiCreateEdit(228, 85, 111, 28, "", false, window) 
        Edit2 = guiCreateEdit(349, 85, 111, 28, "", false, window) 
        Edit3 = guiCreateEdit(470, 85, 97, 28, "", false, window) 
        EnterButton = guiCreateButton(300, 148, 210, 35, "Enter", false, window) 
        guiSetFont(EnterButton, "clear-normal") 
        guiSetProperty(EnterButton, "NormalTextColour", "FFFFFEFE") 
        CloseButton = guiCreateButton(359, 211, 98, 32, "Close", false, window) 
        guiSetFont(CloseButton, "clear-normal") 
        guiSetProperty(CloseButton, "NormalTextColour", "FFFFFEFE")     
    end 
) 
  
  
  
 addEventHandler("onClientGUIClick",root, 
    function () 
        if ( source == CloseButton ) then 
            guiSetVisible(window,false) 
            showCursor(false) 
            guiSetInputEnabled(false) 
             
        elseif ( source == EnterButton) then 
            if ( guiGetText ( Edit1 ) and guiGetText ( Edit2 ) and guiGetText ( Edit3 ) ~= '' ) then 
               guiGridListAddColumn ( GridList, guiGetText ( Edit1 ), 0.5 ) 
               guiGridListAddColumn ( GridList, guiGetText ( Edit2 ), 0.5 ) 
               guiGridListAddColumn ( GridList, guiGetText ( Edit3 ), 0.5 ) 
            else 
           outputChatBox ( "#FF0000 Please Enter Text In The EditBox !! ",255,255,255, true) 
            end 
        end 
    end 
) 
  

بالتوفيق

Link to comment
معلش بس انت عامل الكود

بيعمل كلوم جديد

انا عاوز يكتب في الرة

row

سؤال بسيط

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

Name

MailName

Card

ليش تبي تحط 3 ايديت بوكس ويجيب نفس الكلام ويحطه بالكولمن !

م انت تقدر تحطهم من ال

guieditor

:|

انا اعرف

لاكن انا عامل بفكر في شي

انا ابي 3 ايديت يكتب فيهم ويضعط علي ال button

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

؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟

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