• Builder 8. http://www.booksgid.com/programmer/4548-borland-c-builder-6..html 9. https://ru.wikipedia.org/wiki/C%2B%2B_Builder
  • FOYDALANILGAN ADABIYOTLAR RO`YXATI




    Download 1,12 Mb.
    Pdf ko'rish
    bet8/8
    Sana07.01.2024
    Hajmi1,12 Mb.
    #131861
    1   2   3   4   5   6   7   8
    Bog'liq
    aql charxi kop bosqichli oyin speedmath
    1.03.2 Рус тили, Fast Scan 09-12-2022 0512, 1 oktabr tadbir, 1.1.1.1.1.1 uyda ta\'limga 638 , 7-guruh Mavzu Elektron pochta xizmati strukturasi., shartnoma, javoblar B, 1 MA\'RUZA, 1-2 MAVZU, aloqa kabel , hoshya, ELMASH MI1, 1009540544, san`at muzey
    FOYDALANILGAN ADABIYOTLAR RO`YXATI 
     
    1. Архангельский А.Я. C++Builder 6. Справочное пособие. Бином, 2002г. 
    С. – 544. - ISBN: 5-9518-0007-2 
    2. Джаррод Холингворт, Боб Сворт, Марк Кэшмэн, Поль 
    Густавсон Borland C++ Builder 6. Руководство разработчика = Borland 
    C++ Builder 6 Developer’s Guide. — М.:
    «Вильямс»
    , 2004. — С. 976. —
    ISBN 0-672-32480-6

    3. Джерод Холлингворс, Дэн Баттерфилд, Боб Свот C++ Builder 5. 
    Руководство разработчика = C++ Builder 5 Developer’s Guide. —
    М.: 
    «Диалектика»
    , 2001. — С. 884. — 
    ISBN 0-672-31972-1

    4. Оb’еktgа mo‘ljаllаngаn dаsturlаsh. Sh.A. Nazirov, R.V. Qobulov. 
    5. Xalmatov. “Informatika” 
    6. 
    http://www.cyberforum.ru/cpp-builder/thread5308.html
    7. ru.wikipedia.org/wiki/C%2B%2B_Builder
    8. 
    http://www.booksgid.com/programmer/4548-borland-c-builder-6..html
    9. https://ru.wikipedia.org/wiki/C%2B%2B_Builder 
     
     


    24 
    ILOVA 
    #include  
    #pragma hdrstop 
    #include "IntroForm.h" 
    #include "RecordForm.h" 
    #include "AboutForm.h" 
    #include "InstructionForm.h" 
    #include "Game.h" 
    //--------------------------------------------------------------------------- 
    #pragma package(smart_init) 
    #pragma resource "*.dfm" 
    TForm2 *Form2; 
    //--------------------------------------------------------------------------- 
    __fastcall TForm2::TForm2(TComponent* Owner) 
    : TForm(Owner) 


    //--------------------------------------------------------------------------- 
    void __fastcall TForm2::Label2Click(TObject *Sender) 

    TForm1 *f = new TForm1(this); 
    f->ShowModal(); 

    //--------------------------------------------------------------------------- 
    void __fastcall TForm2::Label3Click(TObject *Sender) 

    TForm3 *f = new TForm3(this); 
    f->ShowModal(); 

    //--------------------------------------------------------------------------- 
    void __fastcall TForm2::Label6Click(TObject *Sender) 

    Application->Terminate();

    //--------------------------------------------------------------------------- 
    void __fastcall TForm2::Label5Click(TObject *Sender) 

    TForm4 *f = new TForm4(this); 
    f->ShowModal(); 

    //--------------------------------------------------------------------------- 
    void __fastcall TForm2::Label4Click(TObject *Sender) 

    TForm5 *f = new TForm5(this); 
    f->ShowModal(); 

    //--------------------------------------------------------------------------- 
    #ifndef CShapeH 


    25 
    #define CShapeH 
    //--------------------------------------------------------------------------- 
    #include  
    #include  
    #include  
    #include  
    #include  
    #include  
    class MyShape : public TShape 

    public: 
    __fastcall MyShape(TComponent* Owner); 
    __fastcall MyShape(TComponent* Owner, AnsiString _caption); 
    __fastcall SetCaption(); 
    __fastcall ShowCaption(AnsiString _caption); 
    __fastcall SetColor(TColor c); 
    String Caption; 
    boolean toggle; 
    int id; 
    }; 
    #endif 
    #include  
    #include  
    #include  
    #include  
    //--------------------------------------------------------------------------- 
    class TForm1 : public TForm 

    __published: 
    // IDE-managed Components 
    TPanel *Panel1; 
    TShape *Shape1; 
    TLabel *rNumber; 
    TImage *Image1; 
    TLabel *Label2; 
    TLabel *Label3; 
    TLabel *timer; 
    TLabel *llevel; 
    TLabel *lscore; 
    TTimer *Timer1; 
    void __fastcall FormCreate(TObject *Sender); 
    void __fastcall MyShapeMouseUp(TObject *Sender, TMouseButton Button
    TShiftState Shift, int X, int Y); 
    void __fastcall Timer1Timer(TObject *Sender); 
    void __fastcall FormClose(TObject *Sender, TCloseAction &Action); 
    private: // User declarations 
    public:
    // User declarations 
    __fastcall TForm1(TComponent* Owner); 
    void TForm1::resetGame(); 
    void TForm1::initLevel(int l); 
    void TForm1::startBegin(); 
    int buttonCount; 


    26 
    int colButtonsCount; 
    int rowButtonsCount; 
    int margin; 
    int panelWidth; 
    int panelHeight; 
    int buttonWidth; 
    int buttonHeight; 
    int score; 
    }; 
    //--------------------------------------------------------------------------- 
    extern PACKAGE TForm1 *Form1; 
    //--------------------------------------------------------------------------- 
    #endif 
    #include  
    #include  
    #include  
    #include  
    //--------------------------------------------------------------------------- 
    class TForm3 : public TForm 

    __published: 
    // IDE-managed Components 
    TStringGrid *StringGrid1; 
    void __fastcall FormCreate(TObject *Sender); 
    private: // User declarations 
    public:
    // User declarations 
    __fastcall TForm3(TComponent* Owner); 
    }; 
    //--------------------------------------------------------------------------- 
    extern PACKAGE TForm3 *Form3; 
    //--------------------------------------------------------------------------- 
    #endif 
    #include  
    #include  
    #include  
    #include  
    //--------------------------------------------------------------------------- 
    class TForm4 : public TForm 

    __published: 
    // IDE-managed Components 
    TImage *Image1; 
    TLabel *Label1; 
    TLabel *Label2; 
    TLabel *Label3; 
    TLabel *Label4; 
    private: // User declarations 
    public:
    // User declarations 
    __fastcall TForm4(TComponent* Owner); 
    }; 
    //--------------------------------------------------------------------------- 
    extern PACKAGE TForm4 *Form4; 
    //--------------------------------------------------------------------------- 
    #endif 
    #include  


    27 
    #include  
    #include  
    #include  
    //--------------------------------------------------------------------------- 
    class TForm5 : public TForm 

    __published: 
    // IDE-managed Components 
    TImage *Image1; 
    private: // User declarations 
    public:
    // User declarations 
    __fastcall TForm5(TComponent* Owner); 
    }; 
    //--------------------------------------------------------------------------- 
    extern PACKAGE TForm5 *Form5; 
    //--------------------------------------------------------------------------- 
    #endif 

    Download 1,12 Mb.
    1   2   3   4   5   6   7   8




    Download 1,12 Mb.
    Pdf ko'rish