#STZ Posted May 30, 2017 Share Posted May 30, 2017 السلام عليكم عندي مشكلة في ذا الكود SkinsTable = { {'White - الثوب الأبيض', 46}, {'Black - الثوب الأسود', 124}, {'cJ - سي جي', 0}, {'SWAT - سوات', 285} } PlacesTable = { {'Naqhil - النخيل', {2123.20996, 1397.87036,10.81252}}, {'Dairy - الدائري', {1700.37024, 1377.66125, 10.76069}}, {'Long street - الشارع الطويل', {-3029.71167, 8151.00195, 5.00000}}, {'Starten - البداية', {-3676.61963, -3250.80664, 13.59219}} } for i, pl in ipairs(PlacesTable) do local item = guiGridListAddRow(PlacesGridListEnterUserPanel) local itemText = guiGridListSetItemText(PlacesGridListEnterUserPanel , item, 1, pl[1], false, false) local itemID = guiGridListSetItemData(PlacesGridListEnterUserPanel , item, 1, pl[2]) local itemColor = guiGridListSetItemColor(PlacesGridListEnterUserPanel, item, 1, 255, 255, 0) end for i, sk in ipairs(SkinsTable) do local item = guiGridListAddRow(SkinsGridListEnterUserPanel) local itemText = guiGridListSetItemText(SkinsGridListEnterUserPanel , item, 1, sk[1], false, false) local itemID = guiGridListSetItemData(SkinsGridListEnterUserPanel , item, 1, sk[2]) local itemColor = guiGridListSetItemColor(SkinsGridListEnterUserPanel , item, 1, 255, 255, 0) end الجريد ليست يجي فاضي Link to comment
iMr.WiFi..! Posted May 30, 2017 Share Posted May 30, 2017 وعليكم السلام SkinsTable = { {'White - الثوب الأبيض', 46}, {'Black - الثوب الأسود', 124}, {'cJ - سي جي', 0}, {'SWAT - سوات', 285} } PlacesTable = { {'Naqhil - النخيل', 2123.20996, 1397.87036,10.81252}, {'Dairy - الدائري', 1700.37024, 1377.66125, 10.76069}, {'Long street - الشارع الطويل', -3029.71167, 8151.00195, 5.00000}, {'Starten - البداية', -3676.61963, -3250.80664, 13.59219} } for i, pl in ipairs(PlacesTable) do local item = guiGridListAddRow(PlacesGridListEnterUserPanel) local itemText = guiGridListSetItemText(PlacesGridListEnterUserPanel , item, 1, pl[1], false, false) local itemID = guiGridListSetItemData(PlacesGridListEnterUserPanel , item, 1, {pl[2],pl[3],pl[4]}) local itemColor = guiGridListSetItemColor(PlacesGridListEnterUserPanel, item, 1, 255, 255, 0) end for i, sk in ipairs(SkinsTable) do local item = guiGridListAddRow(SkinsGridListEnterUserPanel) local itemText = guiGridListSetItemText(SkinsGridListEnterUserPanel , item, 1, sk[1], false, false) local itemID = guiGridListSetItemData(SkinsGridListEnterUserPanel , item, 1, sk[2]) local itemColor = guiGridListSetItemColor(SkinsGridListEnterUserPanel , item, 1, 255, 255, 0) end Link to comment
Mhmd.z Posted May 30, 2017 Share Posted May 30, 2017 كتابة الجداول عندك خطأ , سويها كذه مثلا {"White - 46", "الثوب الأبيض"}, and {'Naqhil - 1397, 10, 2123", "النخيل"}, Link to comment
iMr.WiFi..! Posted May 30, 2017 Share Posted May 30, 2017 1 minute ago, Mhmd.z said: كتابة الجداول عندك خطأ , سويها كذه مثلا {"White - 46", "الثوب الأبيض"}, and {'Naqhil - 1397, 10, 2123", "النخيل"}, لا مافي خطأ .. في المنتدى عند كتابة جدول مع كلام عربي يظهر لك بهذا الشكل شوفه بنوت باد بتلاقيه غير Link to comment
Mhmd.z Posted May 30, 2017 Share Posted May 30, 2017 Just now, iMr.WiFi..! said: لا مافي خطأ .. في المنتدى عند كتابة جدول مع كلام عربي يظهر لك بهذا الشكل شوفه بنوت باد بتلاقيه غير اها , شكرا على التنبيه Link to comment
iMr.WiFi..! Posted May 30, 2017 Share Posted May 30, 2017 Just now, Mhmd.z said: اها , شكرا على التنبيه عفواً + وش صار معك ي صاحب الموضوع ؟ Link to comment
iMr.WiFi..! Posted May 30, 2017 Share Posted May 30, 2017 (edited) 3 minutes ago, #STZ said: @iMr.WiFi..! ما ظبط ديبق ؟ , + وريني حدث عند الضغط .. + جرب SkinsTable = { {'White - الثوب الأبيض', 46}, {'Black - الثوب الأسود', 124}, {'cJ - سي جي', 0}, {'SWAT - سوات', 285} } PlacesTable = { {'Naqhil - النخيل', 2123.20996, 1397.87036,10.81252}, {'Dairy - الدائري', 1700.37024, 1377.66125, 10.76069}, {'Long street - الشارع الطويل', -3029.71167, 8151.00195, 5.00000}, {'Starten - البداية', -3676.61963, -3250.80664, 13.59219} } for i, pl in ipairs(PlacesTable) do local item = guiGridListAddRow(PlacesGridListEnterUserPanel) guiGridListSetItemText(PlacesGridListEnterUserPanel , item, 1, pl[1], false, false) guiGridListSetItemData(PlacesGridListEnterUserPanel , item, 1, {pl[2],pl[3],pl[4]}) guiGridListSetItemColor(PlacesGridListEnterUserPanel, item, 1, 255, 255, 0) end for i, sk in ipairs(SkinsTable) do local item = guiGridListAddRow(SkinsGridListEnterUserPanel) guiGridListSetItemText(SkinsGridListEnterUserPanel , item, 1, sk[1], false, false) guiGridListSetItemData(SkinsGridListEnterUserPanel , item, 1, sk[2]) guiGridListSetItemColor(SkinsGridListEnterUserPanel , item, 1, 255, 255, 0) end Edited May 30, 2017 by iMr.WiFi..! Link to comment
#STZ Posted May 30, 2017 Author Share Posted May 30, 2017 حدث الشغط علي الزر متاكد منه 100% Link to comment
^iiEcoo'x_) Posted May 30, 2017 Share Posted May 30, 2017 ضيفه تحت كود إنشاء القريد ليست ^ Link to comment
iMr.WiFi..! Posted May 30, 2017 Share Posted May 30, 2017 (edited) Just now, #STZ said: @iMr.WiFi..! تأكد من اسم الجريد ليست + او ضيفه تحت الانشاء زي ماقال ايكو Edited May 30, 2017 by iMr.WiFi..! Link to comment
^iiEcoo'x_) Posted May 30, 2017 Share Posted May 30, 2017 ضيفه تحت كود إنشاء القريد ليست , ضيف اللوب والجدول حطه بأول السكربت Link to comment
iMr.WiFi..! Posted May 30, 2017 Share Posted May 30, 2017 Just now, #STZ said: @iMr.WiFi..! مسوي كذا تأكد من اسم الجريد ليست , الديبق يقول انه مافي جريد ليست بهذا الاسم Link to comment
^iiEcoo'x_) Posted May 30, 2017 Share Posted May 30, 2017 يعني ضيف اللوب تحت انشاء القريد ليست والجدول خله بأول السكربت Link to comment
iMr.WiFi..! Posted May 30, 2017 Share Posted May 30, 2017 Just now, #STZ said: ما ظبط تأكد من وجود الكولمنات اطرح كود انشاء الجريد ليست Link to comment
#STZ Posted May 30, 2017 Author Share Posted May 30, 2017 PlacesGridListEnterUserPanel = guiCreateGridList(23, 105, 234, 377, false, GUIEditor.window[2]) guiGridListAddColumn(PlacesGridListEnterUserPanel, "Places", 0.9) @#_iMr.[E]coo عامل كدا اصلا Link to comment
^iiEcoo'x_) Posted May 30, 2017 Share Posted May 30, 2017 جرب local PlacesGridListEnterUserPanel = guiCreateGridList(23, 105, 234, 377, false, GUIEditor.window[2]) guiGridListAddColumn(PlacesGridListEnterUserPanel, "Places", 0.9) اذا ما زبط , فجرب تعدل جميع اسماء الوحات والازرار .. الخ , وتسويهن بدون جدول , يعني تحط اسماء عادية Link to comment
iMr.WiFi..! Posted May 30, 2017 Share Posted May 30, 2017 الخطأ منك @#STZ جرب الكود ثاني مره وصور الديبق Link to comment
^iiEcoo'x_) Posted May 30, 2017 Share Posted May 30, 2017 أخر شيء جرب ذا function inPut ( ) for i, sk in ipairs(SkinsTable) do local item = guiGridListAddRow(SkinsGridListEnterUserPanel) guiGridListSetItemText(SkinsGridListEnterUserPanel , item, 1, sk[1], false, false) guiGridListSetItemData(SkinsGridListEnterUserPanel , item, 1, sk[2]) guiGridListSetItemColor(SkinsGridListEnterUserPanel , item, 1, 255, 255, 0) end end حطه باول السكربت وحط ذا بكود فتح الوحة inPut ( ) Link to comment
iMr.WiFi..! Posted May 30, 2017 Share Posted May 30, 2017 1 minute ago, #_iMr.[E]coo said: أخر شيء جرب ذا function inPut ( ) for i, sk in ipairs(SkinsTable) do local item = guiGridListAddRow(SkinsGridListEnterUserPanel) guiGridListSetItemText(SkinsGridListEnterUserPanel , item, 1, sk[1], false, false) guiGridListSetItemData(SkinsGridListEnterUserPanel , item, 1, sk[2]) guiGridListSetItemColor(SkinsGridListEnterUserPanel , item, 1, 255, 255, 0) end end حطه باول السكربت وحط ذا بكود فتح الوحة inPut ( ) + guiGridListClear 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