النتائج 1 إلى 6 من 6
الموضوع:

اكواد برمجية لعمل برنامج المفكرة

الزوار من محركات البحث: 570 المشاهدات : 3816 الردود: 5
جميع روابطنا، مشاركاتنا، صورنا متاحة للزوار دون الحاجة إلى التسجيل ، الابلاغ عن انتهاك - Report a violation
  1. #1
    Software Developer
    Expert in Encryption
    تاريخ التسجيل: January-2010
    الدولة: البـــــصرة
    الجنس: ذكر
    المشاركات: 7,348 المواضيع: 422
    صوتيات: 7 سوالف عراقية: 0
    التقييم: 6778
    مزاجي: ****
    المهنة: مبرمج شركة Weir
    أكلتي المفضلة: ****
    موبايلي: ****
    آخر نشاط: 14/November/2022
    مقالات المدونة: 163

    اكواد برمجية لعمل برنامج المفكرة

    مرحباً :

    اكواد برمجية في لغة VB6 , وبامكانك استخدام الاكواد بالكوماندات , لكن رح يصير عندك فد شيء مو منطقي ومو حلو

    يعني يصير خيار النسخ اول اللصق من خلال كوماند , والافضل الك هو عمل هذا الخيارات من خلال القوائم وهذا الشيء الانسب والمنطقي

    وبالتالي بامكانك عمل الاختصارات لها من خلال خيارالشورت كات المهم : ما اطول عليكم هذه الاكواد من تجميعي


    النسخ :

    Clipboard.SetText Text1.SelText

    اللصق :

    Text1.SelText = Clipboard.GetText

    القص :

    Clipboard.SetText Text1.SelText

    التراجع :

    Call TextUndo(Text1)

    الخروج :

    If Text1.Text = "" Then

    End

    Else

    Value& = MsgBox("Are you want to save your changes ?", vbExclamation + vbYesNoCancel, "Text Editor")

    If Value& = vbYes Then

    If Form1.Label1.Caption = "Label1" Or Form1.Label1.Caption = "" Then

    On Error Resume Next

    Form1.CommonDialog1.Filter = "Text Document (*.txt)||All Files|*.*"

    Form1.CommonDialog1.ShowSave

    Form1.R.SaveFile Form1.CommonDialog1.FileName, rtfText

    Form1.Label1.Caption = Form1.CommonDialog1.FileName

    Form1.Caption = Form1.CommonDialog1.FileTitle + " - Text Editor"

    Else

    On Error Resume Next

    Form1.R.SaveFile Form1.Label1.Caption, rtfText

    End If

    ElseIf Value& = vbNo Then

    End

    Else

    Print

    End If

    End If

    الحفظ :

    On Error Resume Next

    If Text1.Text = "" Or R.Text = "" Then: Exit Sub

    If Label1.Caption = "Label1" Or Label1.Caption = "" Then

    CommonDialog1.FileName = ""

    CommonDialog1.Filter = "Text Document (*.txt)|*.txt|All Files|*.*"

    CommonDialog1.ShowSave

    If CommonDialog1.FileName <> "" Then

    R.SaveFile CommonDialog1.FileName, rtfText

    Label1.Caption = CommonDialog1.FileName

    Form1.Caption = Form1.CommonDialog1.FileTitle + " - Text Editor"

    R.SaveFile CommonDialog1.FileName, rtfText

    Label1.Caption = CommonDialog1.FileName

    Form1.Caption = Form1.CommonDialog1.FileTitle + " - Text Editor"

    End If

    Else

    R.SaveFile (Label1.Caption), rtfText

    End If

    الحفظ بأسم :

    On Error Resume Next

    CommonDialog1.FileName = ""

    CommonDialog1.Filter = "Text Document (*.txt)|*.txt|All Files|*.*"

    CommonDialog1.ShowSave

    If CommonDialog1.FileName <> "" Then

    R.SaveFile CommonDialog1.FileName, rtfText

    Label1.Caption = CommonDialog1.FileName

    Form1.Caption = Form1.CommonDialog1.FileTitle + " - Text Editor"

    End If

    فتح نافذة جديدة :

    On Error Resume Next

    If Form1.Label1.Caption = "Label1" Or Form1.Label1.Caption = "" Then

    CommonDialog1.Filter = "Text Document (*.txt)|*.txt|All Files|*.*"

    CommonDialog1.ShowOpen

    If CommonDialog1.FileName <> "" Then

    R.LoadFile CommonDialog1.FileName

    Text1.Text = R.Text

    Label1.Caption = CommonDialog1.FileName

    Form1.Caption = Form1.CommonDialog1.FileTitle + " - Text Editor"

    End If

    Else

    Value& = MsgBox("Are you want to save your changes ?", vbExclamation + vbYesNoCancel, "Text Editor")

    If Value& = vbYes Then

    On Error Resume Next

    R.SaveFile (Label1.Caption), rtfText

    Form1.Caption = GetFileName(Label1.Caption) + " - Text Editor"

    CommonDialog1.Filter = "Text Document (*.txt)|*.txt|All Files|*.*"

    CommonDialog1.ShowOpen

    If CommonDialog1.FileName <> "" Then

    R.LoadFile CommonDialog1.FileName

    Text1.Text = R.Text

    Label1.Caption = CommonDialog1.FileName

    Form1.Caption = Form1.CommonDialog1.FileTitle + " - Text Editor"

    On Error Resume Next

    Form1.R.SaveFile Form1.Label1.Caption, rtfText


    امر الطباعة :

    On Error Resume Next

    CommonDialog1.CancelError = True

    CommonDialog1.ShowPrinter

    Printer.Print , Text1

    تحديد الكل :

    Text1.SelStart = 0

    Text1.SelLength = Len(Text1)

    Text1.SetFocus


    عدم تحديد الكل

    Text1.SelStart = 9999

    Text1.SelLength = Len(Text1)

    Text1.SetFocus


    اظهار انواع الخطوط الموجودة بالحاسبة

    On Error Resume Next

    R.SelStart = 0

    R.SelLength = Len(R)

    R.SetFocus

    CommonDialog1.Flags = 1

    CommonDialog1.ShowFont

    Text1.FontName = CommonDialog1.FontName

    Text1.FontSize = CommonDialog1.FontSize

    Text1.FontBold = CommonDialog1.FontBold

    R.SelBold = CommonDialog1.FontBold

    R.SelFontName = CommonDialog1.FontName

    R.SelFontSize = CommonDialog1.FontSize


    محاذاة الى اليمين :

    Text1.Alignment = 1

    R.SelAlignment = 1


    توسيط :

    Text1.Alignment = 2

    R.SelAlignment = 2


    محاذاة الى اليسار :


    Text1.Alignment = 0

    R.SelAlignment = 0


    لمعرفة مواصفات الحاسبة الخاصة بك :

    Call StartSysInfo


    ان شاء الله هذه الاكواد تفيد المبرمجين المبتدئين
    من تجميعي 7\8\2010

  2. #2
    صديق مؤسس
    صاحبة الامتياز
    تاريخ التسجيل: January-2010
    الدولة: البصرة
    الجنس: أنثى
    المشاركات: 27,178 المواضيع: 3,882
    صوتيات: 103 سوالف عراقية: 65
    التقييم: 5826
    مزاجي: هادئة
    أكلتي المفضلة: مسوية رجيم
    موبايلي: Iphon 6 plus
    آخر نشاط: 5/August/2024
    مقالات المدونة: 77
    شكراا سباي ع الموضوع المميز ... ويارب يحقق الفائدة المرجوة بالنسبة لمبتدئين
    اكرر شكري لمجهودك وبداعك اخي العزيز .. تقيمي

  3. #3
    من المشرفين القدامى
    المڶڪـہ ..!
    تاريخ التسجيل: January-2010
    الجنس: أنثى
    المشاركات: 10,018 المواضيع: 943
    التقييم: 724
    آخر نشاط: 17/May/2011
    مقالات المدونة: 4
    شكرا جزيلا سباي
    ممنونين

  4. #4
    Software Developer
    Expert in Encryption
    شكراً جزيلا على مروركم

    منورين الموضوع

  5. #5
    مدير المنتدى
    تاريخ التسجيل: January-2010
    الدولة: جهنم
    الجنس: أنثى
    المشاركات: 84,944 المواضيع: 10,515
    صوتيات: 15 سوالف عراقية: 13
    التقييم: 87260
    مزاجي: متفائلة
    المهنة: Sin trabajo
    أكلتي المفضلة: pizza
    موبايلي: M12
    آخر نشاط: منذ ساعة واحدة
    مقالات المدونة: 18
    شكرا يا وردتنا

  6. #6
    Software Developer
    Expert in Encryption
    عفوا سوزان ,,

    شكرا جزيلا على مرورج منورتنا

تم تطوير موقع درر العراق بواسطة Samer

قوانين المنتديات العامة

Google+

متصفح Chrome هو الأفضل لتصفح الانترنت في الجوال