3ssol Posted May 15, 2013 Share Posted May 15, 2013 شباااب بغيت وش الكود الي لما تضغط علي الشي بـ القريد ليست يجي لون ازرق وش اسم هل كود لني بديت افهم للقريد ليست Link to comment
3ssol Posted May 15, 2013 Author Share Posted May 15, 2013 شباااب فهممت للقريد ليست بس ابي واحد شنب ابن شنب يشرحلي هذووول local row, col = guiGridListGetSelectedItem ( GUIEditor_Grid[1] ) local get = guiGridListGetItemText(GUIEditor_Grid[1], row, 1 ) if ( row and col and row ~= -1 and col ~= -1 ) then ابي شرح مفهوووم مو ع السريع Link to comment
кιηg-αвα∂у Posted May 15, 2013 Share Posted May 15, 2013 local row, col = guiGridListGetSelectedItem ( GUIEditor_Grid[1] ) -- يجيب الشي الي محدد بالماوس local get = guiGridListGetItemText(GUIEditor_Grid[1], row, 1 ) -- يجيب النص المكتوب if ( row and col and row ~= -1 and col ~= -1 ) then -- جملة شرطية مانقدر نشرحها لك بدون القيم Link to comment
3ssol Posted May 15, 2013 Author Share Posted May 15, 2013 local get = guiGridListGetItemText(GUIEditor_Grid[1], row, 1 ) -- يجيب النص وضحلي هنا لاهنت Link to comment
кιηg-αвα∂у Posted May 16, 2013 Share Posted May 16, 2013 local get = guiGridListGetItemText(GUIEditor_Grid[1], row, 1 ) -- يجيب النص وضحلي هنا لاهنت يعني مثلآ انت مسوي لستت اسماء واللسته 1- king-abady 2- 3ssol 3-#1De[4]gle, - noop وفي زر تضغط عليه يجيب انت وش محدد افرض انك حددت اسمي وضغطت على الزر نجيب التحديد guiGridListGetSelectedItems ويجيب النص للممحدد بـ guiGridListGetItemText(GUIEditor_Grid[1], row, 1 ) king-abady وراح تطلع النتيجة يعني مثلآ guiGridListGetItemText(GUIEditor_Grid[1], guiGridListGetSelectedItems(GUIEditor_Grid[1]), 1) -- هذه راح يجيب التحديد والنص المكتوب في سطر التحديد Link to comment
3ssol Posted May 16, 2013 Author Share Posted May 16, 2013 اهاا فهمت يعطيك العافيه بس ابيك تشرحلي هنا شرح بسيط for i, v in ipairs ( CarsTable ) do local row = guiGridListAddRow ( GUIEditor_Grid[1] ) -- وش يسوي ؟ guiGridListSetItemText ( GUIEditor_Grid[1], row, 1, v[1], false, true ) end وش يعني رقم 1 الي قدام كلمة راو ووش يعني v[1] ???? ووش تعني falsr , true Link to comment
кιηg-αвα∂у Posted May 16, 2013 Share Posted May 16, 2013 for i, v in ipairs ( CarsTable ) do local row = guiGridListAddRow ( GUIEditor_Grid[1] ) -- يضيف سطر guiGridListSetItemText ( GUIEditor_Grid[1], row, 1, v[1], false, true ) -- guiSetText يضيف كلآم للسطر يعني مثل end وبالنسبة لـ1 هذه رقم الترتيب للعامود يعني مثلآ ---- هذه مثال للتوضيح ---- العامود الي فيه الأسم رقم 1 والعامود الي فيه الحالة متصل او لآ رقم 2 ---- هذه مثال للتوضيح ---- v1وبالنسبة لـ هاذي القيمة رقم واحد من الجدول Link to comment
3ssol Posted May 16, 2013 Author Share Posted May 16, 2013 يعطيك العااااااااااااااااااافيه شرح جمممممميل Link to comment
3NAD Posted May 16, 2013 Share Posted May 16, 2013 local row, col = guiGridListGetSelectedItem ( GUIEditor_Grid[1] ) -- يجيب الشي الي محدد بالماوس local get = guiGridListGetItemText(GUIEditor_Grid[1], row, 1 ) -- يجيب النص المكتوب if ( row and col and row ~= -1 and col ~= -1 ) then -- جملة شرطية مانقدر نشرحها لك بدون القيم بإمكانك تختصر الشرط بشكل اوضح local get_ = guiGridListGetItemText(GUIEditor_Grid[1], row, 1 ) if ( get_ == "" ) or ( get_ == " " ) then return end Link to comment
Tete omar Posted May 16, 2013 Share Posted May 16, 2013 local row, col = guiGridListGetSelectedItem ( GUIEditor_Grid[1] ) -- يجيب الشي الي محدد بالماوس local get = guiGridListGetItemText(GUIEditor_Grid[1], row, 1 ) -- يجيب النص المكتوب if ( row and col and row ~= -1 and col ~= -1 ) then -- جملة شرطية مانقدر نشرحها لك بدون القيم بإمكانك تختصر الشرط بشكل اوضح if ( row == "" ) or ( row == " " ) then return end row ?? 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