ashalshaikh
زيزوومى فضى
غير متصل
من فضلك قم بتحديث الصفحة لمشاهدة المحتوى المخفي
بسم الله الرحمن الرحيم ..
اللهم صلي على محمد وآله وصحبه أجميعين ..
كتابة الـ GUI
إعداد : Ashalshaikh
تحديد الستايل والمقابض
نكمل ..
بعد عمل جميع الـ Controls
يكون بالشكل التالي :ـ
بالشكل التالي :ـ
نبدأ الآن نحدد النصوص التلقائية ..
طيب الآن معلومة مهمة جدا ..
دائما دائما دائما ..
الدوال التي تنتهي بـ Create
ترجع مقبض العنصر أو النافذة !!
الآن نضع متغيرات نحدد بها المقابض ..
شوف كذا
يمكنك تسميته أي شيء تريده .. ولكن يفضل أن تكون مرتبة تدل على وظيفة العنصر ونوعه
الآن وصلنا مرحلة جيدة ..
لنحدد Style العناصر حسب المراد ..
لنطبق ذلك على Edit نريده ReadOnly القراءة فقط ..
نفتح ملف الـ Help ونذهب إلى العنوان التالي :ـ
نختار أي عنصر في القائمة ..
ومن قائمة : Style
تضغط على المحدد بالأصفر
تجد أمامك التالي :ـ
تنسخ المحدد بالأصفر فوق في السكربت ..
يكون كذا :ـ
الآن يجب أن تعرف أن صيغة إنشاء الـعناصر هكذا
الآن لنبحث عن ReadOnly في القائمة السابقة ..
الآن يكون الكود كالتالي :ـ
النتيجة النهائية
شكرا لكم ..
شدو حيلكم ..
اللهم صلي على محمد وآله وصحبه أجميعين ..
كتابة الـ GUI
إعداد : Ashalshaikh
تحديد الستايل والمقابض
يجب عليك
تسجيل الدخول
او
تسجيل لمشاهدة الرابط المخفي
نكمل ..
بعد عمل جميع الـ Controls
يكون بالشكل التالي :ـ
كود:
[COLOR=#000090]GUICreate[/COLOR][COLOR=#ff0000]([/COLOR][COLOR=#9999cc]"FastScanner"[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]3[/COLOR][COLOR=#ac00a9]7[/COLOR][COLOR=#ac00a9]0[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]1[/COLOR][COLOR=#ac00a9]4[/COLOR][COLOR=#ac00a9]0[/COLOR][COLOR=#ff0000])[/COLOR]
[COLOR=#000090]GUICtrlCreateInput[/COLOR][COLOR=#ff0000]([/COLOR][COLOR=#9999cc]"Input"[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]8[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]2[/COLOR][COLOR=#ac00a9]4[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]3[/COLOR][COLOR=#ac00a9]0[/COLOR][COLOR=#ac00a9]5[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]2[/COLOR][COLOR=#ac00a9]1[/COLOR][COLOR=#ff0000])[/COLOR]
[COLOR=#000090]GUICtrlCreateButTon[/COLOR][COLOR=#ff0000]([/COLOR][COLOR=#9999cc]"Button"[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]3[/COLOR][COLOR=#ac00a9]2[/COLOR][COLOR=#ac00a9]0[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]2[/COLOR][COLOR=#ac00a9]4[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]4[/COLOR][COLOR=#ac00a9]3[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]2[/COLOR][COLOR=#ac00a9]1[/COLOR][COLOR=#ff0000])[/COLOR]
[COLOR=#000090]GUICtrlCreateEdit[/COLOR][COLOR=#ff0000]([/COLOR][COLOR=#9999cc]""[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]8[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]4[/COLOR][COLOR=#ac00a9]8[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]3[/COLOR][COLOR=#ac00a9]5[/COLOR][COLOR=#ac00a9]3[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]5[/COLOR][COLOR=#ac00a9]7[/COLOR][COLOR=#ff0000])[/COLOR]
[COLOR=#000090]GUICtrlCreateButTon[/COLOR][COLOR=#ff0000]([/COLOR][COLOR=#9999cc]"Button2"[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]2[/COLOR][COLOR=#ac00a9]0[/COLOR][COLOR=#ac00a9]8[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]1[/COLOR][COLOR=#ac00a9]1[/COLOR][COLOR=#ac00a9]2[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]7[/COLOR][COLOR=#ac00a9]5[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]2[/COLOR][COLOR=#ac00a9]5[/COLOR][COLOR=#ff0000])[/COLOR]
[COLOR=#000090]GUICtrlCreateButTon[/COLOR][COLOR=#ff0000]([/COLOR][COLOR=#9999cc]"Button"[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]8[/COLOR][COLOR=#ac00a9]8[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]1[/COLOR][COLOR=#ac00a9]1[/COLOR][COLOR=#ac00a9]2[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]7[/COLOR][COLOR=#ac00a9]5[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]2[/COLOR][COLOR=#ac00a9]5[/COLOR][COLOR=#ff0000])[/COLOR]
[COLOR=#000090]GUISetState[/COLOR][COLOR=#ff0000]([/COLOR][COLOR=#ff33ff]@SW_SHOW[/COLOR][COLOR=#ff0000])[/COLOR]
[COLOR=#0000ff]While[/COLOR] [COLOR=#ac00a9]1[/COLOR]
[COLOR=#0000ff]WEnd[/COLOR]

نبدأ الآن نحدد النصوص التلقائية ..
كود:
[COLOR=#000090]GUICreate[/COLOR][COLOR=#ff0000]([/COLOR][COLOR=#9999cc]"FastScanner"[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]3[/COLOR][COLOR=#ac00a9]7[/COLOR][COLOR=#ac00a9]0[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]1[/COLOR][COLOR=#ac00a9]4[/COLOR][COLOR=#ac00a9]0[/COLOR][COLOR=#ff0000])[/COLOR]
[COLOR=#000090]GUICtrlCreateInput[/COLOR][COLOR=#ff0000]([/COLOR][COLOR=#9999cc]""[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]8[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]2[/COLOR][COLOR=#ac00a9]4[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]3[/COLOR][COLOR=#ac00a9]0[/COLOR][COLOR=#ac00a9]5[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]2[/COLOR][COLOR=#ac00a9]1[/COLOR][COLOR=#ff0000])[/COLOR]
[COLOR=#000090]GUICtrlCreateButTon[/COLOR][COLOR=#ff0000]([/COLOR][COLOR=#9999cc]"..."[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]3[/COLOR][COLOR=#ac00a9]2[/COLOR][COLOR=#ac00a9]0[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]2[/COLOR][COLOR=#ac00a9]4[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]4[/COLOR][COLOR=#ac00a9]3[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]2[/COLOR][COLOR=#ac00a9]1[/COLOR][COLOR=#ff0000])[/COLOR]
[COLOR=#000090]GUICtrlCreateEdit[/COLOR][COLOR=#ff0000]([/COLOR][COLOR=#9999cc]""[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]8[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]4[/COLOR][COLOR=#ac00a9]8[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]3[/COLOR][COLOR=#ac00a9]5[/COLOR][COLOR=#ac00a9]3[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]5[/COLOR][COLOR=#ac00a9]7[/COLOR][COLOR=#ff0000])[/COLOR]
[COLOR=#000090]GUICtrlCreateButTon[/COLOR][COLOR=#ff0000]([/COLOR][COLOR=#9999cc]"About"[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]2[/COLOR][COLOR=#ac00a9]0[/COLOR][COLOR=#ac00a9]8[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]1[/COLOR][COLOR=#ac00a9]1[/COLOR][COLOR=#ac00a9]2[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]7[/COLOR][COLOR=#ac00a9]5[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]2[/COLOR][COLOR=#ac00a9]5[/COLOR][COLOR=#ff0000])[/COLOR]
[COLOR=#000090]GUICtrlCreateButTon[/COLOR][COLOR=#ff0000]([/COLOR][COLOR=#9999cc]"Exit"[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]8[/COLOR][COLOR=#ac00a9]8[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]1[/COLOR][COLOR=#ac00a9]1[/COLOR][COLOR=#ac00a9]2[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]7[/COLOR][COLOR=#ac00a9]5[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]2[/COLOR][COLOR=#ac00a9]5[/COLOR][COLOR=#ff0000])[/COLOR]
[COLOR=#000090]GUISetState[/COLOR][COLOR=#ff0000]([/COLOR][COLOR=#ff33ff]@SW_SHOW[/COLOR][COLOR=#ff0000])[/COLOR]
[COLOR=#0000ff]While[/COLOR] [COLOR=#ac00a9]1[/COLOR]
[COLOR=#0000ff]WEnd[/COLOR]
دائما دائما دائما ..
الدوال التي تنتهي بـ Create
ترجع مقبض العنصر أو النافذة !!
الآن نضع متغيرات نحدد بها المقابض ..
شوف كذا
كود:
[COLOR=#aa0000]$GUI[/COLOR] [COLOR=#ff0000]=[/COLOR] [COLOR=#000090]GUICreate[/COLOR][COLOR=#ff0000]([/COLOR][COLOR=#9999cc]"FastScanner"[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]3[/COLOR][COLOR=#ac00a9]7[/COLOR][COLOR=#ac00a9]0[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]1[/COLOR][COLOR=#ac00a9]4[/COLOR][COLOR=#ac00a9]0[/COLOR][COLOR=#ff0000])[/COLOR]
[COLOR=#aa0000]$FilePath_inp[/COLOR] [COLOR=#ff0000]=[/COLOR] [COLOR=#000090]GUICtrlCreateInput[/COLOR][COLOR=#ff0000]([/COLOR][COLOR=#9999cc]""[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]8[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]2[/COLOR][COLOR=#ac00a9]4[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]3[/COLOR][COLOR=#ac00a9]0[/COLOR][COLOR=#ac00a9]5[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]2[/COLOR][COLOR=#ac00a9]1[/COLOR][COLOR=#ff0000])[/COLOR]
[COLOR=#aa0000]$Browse_Btn[/COLOR] [COLOR=#ff0000]=[/COLOR] [COLOR=#000090]GUICtrlCreateButTon[/COLOR][COLOR=#ff0000]([/COLOR][COLOR=#9999cc]"..."[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]3[/COLOR][COLOR=#ac00a9]2[/COLOR][COLOR=#ac00a9]0[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]2[/COLOR][COLOR=#ac00a9]4[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]4[/COLOR][COLOR=#ac00a9]3[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]2[/COLOR][COLOR=#ac00a9]1[/COLOR][COLOR=#ff0000])[/COLOR]
[COLOR=#aa0000]$Report_Edt[/COLOR] [COLOR=#ff0000]=[/COLOR] [COLOR=#000090]GUICtrlCreateEdit[/COLOR][COLOR=#ff0000]([/COLOR][COLOR=#9999cc]""[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]8[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]4[/COLOR][COLOR=#ac00a9]8[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]3[/COLOR][COLOR=#ac00a9]5[/COLOR][COLOR=#ac00a9]3[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]5[/COLOR][COLOR=#ac00a9]7[/COLOR][COLOR=#ff0000])[/COLOR]
[COLOR=#aa0000]$About_Btn[/COLOR] [COLOR=#ff0000]=[/COLOR] [COLOR=#000090]GUICtrlCreateButTon[/COLOR][COLOR=#ff0000]([/COLOR][COLOR=#9999cc]"About"[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]2[/COLOR][COLOR=#ac00a9]0[/COLOR][COLOR=#ac00a9]8[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]1[/COLOR][COLOR=#ac00a9]1[/COLOR][COLOR=#ac00a9]2[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]7[/COLOR][COLOR=#ac00a9]5[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]2[/COLOR][COLOR=#ac00a9]5[/COLOR][COLOR=#ff0000])[/COLOR]
[COLOR=#aa0000]$Exit_Btn[/COLOR] [COLOR=#000090]GUICtrlCreateButTon[/COLOR][COLOR=#ff0000]([/COLOR][COLOR=#9999cc]"Exit"[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]8[/COLOR][COLOR=#ac00a9]8[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]1[/COLOR][COLOR=#ac00a9]1[/COLOR][COLOR=#ac00a9]2[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]7[/COLOR][COLOR=#ac00a9]5[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]2[/COLOR][COLOR=#ac00a9]5[/COLOR][COLOR=#ff0000])[/COLOR]
[COLOR=#000090]GUISetState[/COLOR][COLOR=#ff0000]([/COLOR][COLOR=#ff33ff]@SW_SHOW[/COLOR][COLOR=#ff0000])[/COLOR]
[COLOR=#0000ff]While[/COLOR] [COLOR=#ac00a9]1[/COLOR]
[COLOR=#0000ff]WEnd[/COLOR]
الآن وصلنا مرحلة جيدة ..
لنحدد Style العناصر حسب المراد ..
لنطبق ذلك على Edit نريده ReadOnly القراءة فقط ..
نفتح ملف الـ Help ونذهب إلى العنوان التالي :ـ

نختار أي عنصر في القائمة ..
ومن قائمة : Style
تضغط على المحدد بالأصفر

تجد أمامك التالي :ـ

تنسخ المحدد بالأصفر فوق في السكربت ..
يكون كذا :ـ
كود:
[COLOR=#9999cc][COLOR=#f000ff]#Include[/COLOR] <EditConstants.au3>[/COLOR]
[COLOR=#aa0000]$GUI[/COLOR] [COLOR=#ff0000]=[/COLOR] [COLOR=#000090]GUICreate[/COLOR][COLOR=#ff0000]([/COLOR][COLOR=#9999cc]"FastScanner"[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]3[/COLOR][COLOR=#ac00a9]7[/COLOR][COLOR=#ac00a9]0[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]1[/COLOR][COLOR=#ac00a9]4[/COLOR][COLOR=#ac00a9]0[/COLOR][COLOR=#ff0000])[/COLOR]
[COLOR=#aa0000]$FilePath_inp[/COLOR] [COLOR=#ff0000]=[/COLOR] [COLOR=#000090]GUICtrlCreateInput[/COLOR][COLOR=#ff0000]([/COLOR][COLOR=#9999cc]""[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]8[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]2[/COLOR][COLOR=#ac00a9]4[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]3[/COLOR][COLOR=#ac00a9]0[/COLOR][COLOR=#ac00a9]5[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]2[/COLOR][COLOR=#ac00a9]1[/COLOR][COLOR=#ff0000])[/COLOR]
[COLOR=#aa0000]$Browse_Btn[/COLOR] [COLOR=#ff0000]=[/COLOR] [COLOR=#000090]GUICtrlCreateButTon[/COLOR][COLOR=#ff0000]([/COLOR][COLOR=#9999cc]"..."[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]3[/COLOR][COLOR=#ac00a9]2[/COLOR][COLOR=#ac00a9]0[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]2[/COLOR][COLOR=#ac00a9]4[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]4[/COLOR][COLOR=#ac00a9]3[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]2[/COLOR][COLOR=#ac00a9]1[/COLOR][COLOR=#ff0000])[/COLOR]
[COLOR=#aa0000]$Report_Edt[/COLOR] [COLOR=#ff0000]=[/COLOR] [COLOR=#000090]GUICtrlCreateEdit[/COLOR][COLOR=#ff0000]([/COLOR][COLOR=#9999cc]""[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]8[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]4[/COLOR][COLOR=#ac00a9]8[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]3[/COLOR][COLOR=#ac00a9]5[/COLOR][COLOR=#ac00a9]3[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]5[/COLOR][COLOR=#ac00a9]7[/COLOR][COLOR=#ff0000])[/COLOR]
[COLOR=#aa0000]$About_Btn[/COLOR] [COLOR=#ff0000]=[/COLOR] [COLOR=#000090]GUICtrlCreateButTon[/COLOR][COLOR=#ff0000]([/COLOR][COLOR=#9999cc]"About"[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]2[/COLOR][COLOR=#ac00a9]0[/COLOR][COLOR=#ac00a9]8[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]1[/COLOR][COLOR=#ac00a9]1[/COLOR][COLOR=#ac00a9]2[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]7[/COLOR][COLOR=#ac00a9]5[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]2[/COLOR][COLOR=#ac00a9]5[/COLOR][COLOR=#ff0000])[/COLOR]
[COLOR=#aa0000]$Exit_Btn[/COLOR] [COLOR=#ff0000]=[/COLOR] [COLOR=#000090]GUICtrlCreateButTon[/COLOR][COLOR=#ff0000]([/COLOR][COLOR=#9999cc]"Exit"[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]8[/COLOR][COLOR=#ac00a9]8[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]1[/COLOR][COLOR=#ac00a9]1[/COLOR][COLOR=#ac00a9]2[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]7[/COLOR][COLOR=#ac00a9]5[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]2[/COLOR][COLOR=#ac00a9]5[/COLOR][COLOR=#ff0000])[/COLOR]
[COLOR=#000090]GUISetState[/COLOR][COLOR=#ff0000]([/COLOR][COLOR=#ff33ff]@SW_SHOW[/COLOR][COLOR=#ff0000])[/COLOR]
[COLOR=#0000ff]While[/COLOR] [COLOR=#ac00a9]1[/COLOR]
[COLOR=#0000ff]WEnd[/COLOR]
كود:
[FONT=Times New Roman]
GUIXXCreate ("text", left, top , width , height ,[COLOR=Red]style[/COLOR])
[/FONT]
الآن لنبحث عن ReadOnly في القائمة السابقة ..

الآن يكون الكود كالتالي :ـ
كود:
[COLOR=#9999cc][COLOR=#f000ff]#Include[/COLOR] <EditConstants.au3>[/COLOR]
[COLOR=#aa0000]$GUI[/COLOR] [COLOR=#ff0000]=[/COLOR] [COLOR=#000090]GUICreate[/COLOR][COLOR=#ff0000]([/COLOR][COLOR=#9999cc]"FastScanner"[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]3[/COLOR][COLOR=#ac00a9]7[/COLOR][COLOR=#ac00a9]0[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]1[/COLOR][COLOR=#ac00a9]4[/COLOR][COLOR=#ac00a9]0[/COLOR][COLOR=#ff0000])[/COLOR]
[COLOR=#aa0000]$FilePath_inp[/COLOR] [COLOR=#ff0000]=[/COLOR] [COLOR=#000090]GUICtrlCreateInput[/COLOR][COLOR=#ff0000]([/COLOR][COLOR=#9999cc]""[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]8[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]2[/COLOR][COLOR=#ac00a9]4[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]3[/COLOR][COLOR=#ac00a9]0[/COLOR][COLOR=#ac00a9]5[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]2[/COLOR][COLOR=#ac00a9]1[/COLOR][COLOR=#ff0000],[/COLOR][COLOR=#aa0000]$ES_READONLY[/COLOR][COLOR=#ff0000])[/COLOR]
[COLOR=#aa0000]$Browse_Btn[/COLOR] [COLOR=#ff0000]=[/COLOR] [COLOR=#000090]GUICtrlCreateButTon[/COLOR][COLOR=#ff0000]([/COLOR][COLOR=#9999cc]"..."[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]3[/COLOR][COLOR=#ac00a9]2[/COLOR][COLOR=#ac00a9]0[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]2[/COLOR][COLOR=#ac00a9]4[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]4[/COLOR][COLOR=#ac00a9]3[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]2[/COLOR][COLOR=#ac00a9]1[/COLOR][COLOR=#ff0000])[/COLOR]
[COLOR=#aa0000]$Report_Edt[/COLOR] [COLOR=#ff0000]=[/COLOR] [COLOR=#000090]GUICtrlCreateEdit[/COLOR][COLOR=#ff0000]([/COLOR][COLOR=#9999cc]""[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]8[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]4[/COLOR][COLOR=#ac00a9]8[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]3[/COLOR][COLOR=#ac00a9]5[/COLOR][COLOR=#ac00a9]3[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]5[/COLOR][COLOR=#ac00a9]7[/COLOR][COLOR=#ff0000],[/COLOR][COLOR=#aa0000]$ES_READONLY[/COLOR][COLOR=#ff0000])[/COLOR]
[COLOR=#aa0000]$About_Btn[/COLOR] [COLOR=#ff0000]=[/COLOR] [COLOR=#000090]GUICtrlCreateButTon[/COLOR][COLOR=#ff0000]([/COLOR][COLOR=#9999cc]"About"[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]2[/COLOR][COLOR=#ac00a9]0[/COLOR][COLOR=#ac00a9]8[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]1[/COLOR][COLOR=#ac00a9]1[/COLOR][COLOR=#ac00a9]2[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]7[/COLOR][COLOR=#ac00a9]5[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]2[/COLOR][COLOR=#ac00a9]5[/COLOR][COLOR=#ff0000])[/COLOR]
[COLOR=#aa0000]$Exit_Btn[/COLOR] [COLOR=#ff0000]=[/COLOR] [COLOR=#000090]GUICtrlCreateButTon[/COLOR][COLOR=#ff0000]([/COLOR][COLOR=#9999cc]"Exit"[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]8[/COLOR][COLOR=#ac00a9]8[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]1[/COLOR][COLOR=#ac00a9]1[/COLOR][COLOR=#ac00a9]2[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]7[/COLOR][COLOR=#ac00a9]5[/COLOR][COLOR=#ff0000],[/COLOR] [COLOR=#ac00a9]2[/COLOR][COLOR=#ac00a9]5[/COLOR][COLOR=#ff0000])[/COLOR]
[COLOR=#000090]GUISetState[/COLOR][COLOR=#ff0000]([/COLOR][COLOR=#ff33ff]@SW_SHOW[/COLOR][COLOR=#ff0000])[/COLOR]
[COLOR=#0000ff]While[/COLOR] [COLOR=#ac00a9]1[/COLOR]
[COLOR=#0000ff]WEnd[/COLOR]

شكرا لكم ..
شدو حيلكم ..
