ria pc game
translate to English   translate to Chinese
fle game engine -
fle game engine -


Balls and holes PC game / Balls and Holes PC игра
Dragonella игра версия 17.09.2020 браузерная /скачиваемая
Многоликий: dress - hordes win/linux/android/html5 игра браузерная /скачиваемая

1 2024 23:43
   ?

megainformatic - MySQL
        - .
...

, , , , , photshop, php, c++, , delphi, cms,
   delphi xe7  Windows  #209  2


   delphi xe7  Windows  #209  2


       



     (  - 
         ,
        
   ).


,    . 

  delphi xe 7 > File > New > VCL Forms Application


    
MainForm1.Position = poScreenCenter


      5  :

+
*
/
-

     0 -  C

   
=

       
  


  

  -

TEdit    Standard
 

CalcEdit1

  
CalcEdit1.Text := 0;

 6 

TButton



PlusButton1
MinusButton1
MultiplyButton1
DivisionButton1
ClearButton1
CalcButton1

    

    ObjectInspector

PlusButton1.Caption := '+';
MinusButton1 := '-';
MultiplyButton1 := '';
DivisionButton1 := '/'
ClearButton1 := 'C';
CalcButton1 := '=';


    

  
ClearButton1

  MainForm1

      :


procedure TMainForm1.ClearButton1Click(Sender: TObject);
begin
  
end;



     -


procedure TMainForm1.ClearButton1Click(Sender: TObject);
begin
   CalcEdit1.Text := '0';
end;


. .   
      C
      CalcEdit1
   Text  0.

 ,  0  . . . 
CalcEdit1.Text       string - 
,      0  .

    ,    
 .

[dcc32 Error] CalcUnit1.pas(52): E2010 Incompatible types: 'string' and 'Integer'



   .

      - ,     C
        0.

         -
 .


    .


    + .

         .


    +,   delphi


procedure TMainForm1.PlusButton1Click(Sender: TObject);
begin
  
end;



  ,     


procedure TMainForm1.PlusButton1Click(Sender: TObject);
begin
   A_number := StrToInt(CalcEdit1.Text);
   Operation := 1;
end;


    .


A_number := StrToInt(CalcEdit1.Text); //      A_number

 A_number
  

   CalcUnit1.pas,      (       )
   Unit1.pas

 
{$R *.dfm}

  3 :
A_number, B_number, Operation: Integer;

. .    -


{$R *.dfm}

var
  A_number, B_number, Operation: Integer;
  
  
  
A_number -            
 

B_number -    

Operation -   

 ,  ,  Integer - . .    .


    +


procedure TMainForm1.PlusButton1Click(Sender: TObject);
begin
   A_number := StrToInt(CalcEdit1.Text);
   Operation := 1;
end;



Operation := 1; //    

      .



   1 

  ,   +     2 ,
        +,    
   ,      2- 
     .

       0  9.  
        .

   .

     +     
   ?

   
ActiveControl := CalcEdit1;


    +     :


procedure TMainForm1.PlusButton1Click(Sender: TObject);
begin
   A_number := StrToInt(CalcEdit1.Text);
   Operation := 1;
   ActiveControl := CalcEdit1;
end;


ActiveControl   TForm

. .    

MainForm1.ActiveControl := CalcEdit1;

     ActiveControl
      -
TMainForm1

   .

    
ActiveControl := CalcEdit1;


,  -    .


     =.


  


procedure TMainForm1.CalcButton1Click(Sender: TObject);
begin
  B_number := StrToInt(CalcEdit1.Text);

  case Operation of
    1: begin
      CalcEdit1.Text := IntToStr(A_number + B_number);
    end;    
  end;
end;



          
 =


B_number := StrToInt(CalcEdit1.Text); 
//  B_number          string 
//  Integer

  //   1 - 
  case Operation of
    1: begin
      CalcEdit1.Text := IntToStr(A_number + B_number); 
	  //      A_number -   
	  //      
	  //    
	  //B_number -         
	  //      
	  //  Integer  string      -  
	  // 
    end;    
  end;


,  -    .

 ,         
   Operation      .

         .

     ,      .

  .


type

TCalcOperationTypes = (cotNone, cotAdd, cotSub, cotMult, cotDiv);


  CalcUnit1.pas ( Unit1.pas        - )

     type

    

TCalcOperationTypes = (cotNone, cotAdd, cotSub, cotMult, cotDiv);


      - :

type

  TCalcOperationTypes = (cotNone, cotAdd, cotSub, cotMult, cotDiv);


  TMainForm1 = class(TForm)
  
  
  
 

cotNone = 0 //  
cotAdd = 1	// 

cotSub, cotMult, cotDiv



2, 3, 4 - ,   


 ,   Operation  




 
procedure TMainForm1.PlusButton1Click(Sender: TObject);



Operation := 1;



Operation := cotAdd;



 
procedure TMainForm1.CalcButton1Click(Sender: TObject);



1: begin



Operation := cotAdd;


      Operation

var
  //A_number, B_number, Operation: Integer;
  A_number, B_number: Integer;
  Operation: TCalcOperationTypes;

. .       ,   ,    
TCalcOperationTypes

    ,     0, 1, 2, 3, 4  
   ,    -

TCalcOperationTypes = (cotNone, cotAdd, cotSub, cotMult, cotDiv);


           .

   , . .    -     
           -  
    .



 .


      ,    
    , . . 

         C,
     3  : ,   .

       .


    -, x, /


procedure TMainForm1.MinusButton1Click(Sender: TObject);
begin
  
end;

procedure TMainForm1.MultiplyButton1Click(Sender: TObject);
begin
  
end;


procedure TMainForm1.DivisionButton1Click(Sender: TObject);
begin
	
end;


    MainForm1     CalcUnit1.pas
   [F12],       View > Forms


 

   


  A_number := StrToInt(CalcEdit1.Text);
  Operation := cotSub;
  ActiveControl := CalcEdit1;

  
  
     ,    
Operation := cotSub;

         .

        
  ,   

  
procedure SaveBOperandAndMakeOperation();


   
  TMainForm1 = class(TForm)
  
 
  private

 
procedure SaveBOperandAndMakeOperation(); 
  

  private
    { Private declarations }
    procedure SaveBOperandAndMakeOperation();  
	
	
   
implementation

  

(    implementation)

 


procedure TMainForm1.SaveBOperandAndMakeOperation();
begin
  A_number := StrToInt(CalcEdit1.Text);
  ActiveControl := CalcEdit1;
end;


  


procedure TMainForm1.PlusButton1Click(Sender: TObject);
begin
   A_number := StrToInt(CalcEdit1.Text);
   Operation := cotAdd;
   ActiveControl := CalcEdit1;
end;


       


procedure TMainForm1.PlusButton1Click(Sender: TObject);
begin
   SaveBOperandAndMakeOperation();
   Operation := cotAdd;
end;



    ,    
 :


procedure TMainForm1.DivisionButton1Click(Sender: TObject);
begin
  SaveBOperandAndMakeOperation();
  Operation := cotDiv;
end;

procedure TMainForm1.MinusButton1Click(Sender: TObject);
begin
  SaveBOperandAndMakeOperation();
  Operation := cotSub;
end;

procedure TMainForm1.MultiplyButton1Click(Sender: TObject);
begin
  SaveBOperandAndMakeOperation();
  Operation := cotMult;
end;



 ,        :

)      :

	  
	
	SaveBOperandAndMakeOperation();
	
	   ,  ,      ,
	         - 1  
	.
	
	    
	
	Operation := cotMult;
	
	Operation := cotSub;
	
	 - 
	            
	  
	
)       :

	         SaveBOperandAndMakeOperation
	        ,    
	 
	SaveBOperandAndMakeOperation
	
	
)      

 ,   
  A_number := StrToInt(CalcEdit1.Text);
  ActiveControl := CalcEdit1;
  
       
SaveBOperandAndMakeOperation(); 

             
 


      -    .
           
 .

 ,      =


     =


procedure TMainForm1.CalcButton1Click(Sender: TObject);
var
  op_result: Integer;
begin
  B_number := StrToInt(CalcEdit1.Text);

  case Operation of
    cotAdd: begin
      CalcEdit1.Text := IntToStr(A_number + B_number);
    end;

    cotSub: begin
      CalcEdit1.Text := IntToStr(A_number - B_number);
    end;

    cotMult: begin
      CalcEdit1.Text := IntToStr(A_number * B_number);
    end;

    cotDiv: begin
      op_result := Integer(Round(A_number / B_number));
      //CalcEdit1.Text := IntToStr(A_number / B_number);
      CalcEdit1.Text := IntToStr(op_result);
    end;   
  end;
end;


      ,        
  .   ,        
,          Integer.

  ?

  
var
  op_result: Integer;
  
  
//CalcEdit1.Text := IntToStr(A_number / B_number);

     

  

//  ,    Round     Integer
op_result := Integer(Round(A_number / B_number)); 

CalcEdit1.Text := IntToStr(op_result); //    -   
//   



,     ,
          delphi.

 ,         
  Hello, World !       
   Delphi.




      .

     ,     
   .

 ?

      .

    

2.5 + 3.3 =

 

  

2.5 is not valid integer value

        
    -     



        
,     
   .


  :

SaveBOperandAndMakeOperation

     

SaveAOperand




       ,   c#
   c#  Visual Studio 2013





   calculator     delphi xe 7.

    zip .

 : 820 Kb.

, - . !!! , , . . !!! : !
: 200 . : +1 ( ) !
: 400 . : +2 ( ) !
: 600 .
:
0
!
0
 !


     
  -, godot,
#442  / stranger girl - -
  godot 3.4
: dress
   
     
     
  : dress - hordes 1 4
: dress - hordes  1 - win/linux/android/html5  free ,   ,
: dress - hordes  2 - win/linux/android/html5  free ,   ,
: dress - hordes  3 - win/linux/android/html5  free ,   ,
: dress - hordes  4 - win/linux/android/html5  free ,   ,
   
     
  ,
enterra   java libgdx -
enterra 3d   godot 3.5.1 -
   2023
: dress - hordes win/linux/android/html5 version -
/
   
     
     
     
     
  ,
Kate Ryan - Ella Elle L'a
sexonix
: dress - hordes pc  free  -
: dress -   - parallel reality -  -   Win, Linux,   android
   
     
     
     
  , , 2020 - ,
  gdess 2 -
ciao 2020 -  2020 -
One Way The Elevator     Dr. Perec !!!
   
     
     
  , , , .
          -   ,   ( delphi, c++, html5), ,    ,        -   1  -    14
    2006
  -      -
   
     
     
 
Witches Trainer 1.6 and Innocent Witches 0.1 -      -
Futa in the Police Academy -
gdess c
gdess2
   
     
 
Prince of Persia , , , adventure
Dreams Reality
Little Office Trouble
Tetris
   
     
     
 
Neon Battle Tank 2
Robocop
Robocop (Ocean )
Karateka ,
   
     
     
 
Prehistorik 2 -
    15 -   The Dreik, megainformatic, ,
  Mega game
Black planet   -   ,
   
     
     
 
Teenage Mutant Ninja Turtles II
2 nights
Wolfenstein 3D -
Golden Axe -
   
     
     
  (3), (1)
Aladdin
Surprise! Adlib Tracker 2 (sadt 2)
Lamborghini ,
Risky Woods
   
     
     
 
Black Box horror
  logic
Fire power
Red Ball Forever
   
     
     
 
Teresa - dos
Shadow Knights
-0010.01
0010.01 - !
The Cycles - International Grand Prix Racing
   
     
     
 
Fantastic Dizzy adventure
Ugh!
Budokan: The Martial Spirit - fighting
Vida -
   
     
     
  (3), (1)
 Starcraft
Inspace
Key shield
Team Ninja Unkende 4 - Ninja Gaiden 4   pc
   
     
     
 
Laser Adventures - fast hardcore shooter
      !!!
Ninjuzi -  neo shooter
Plants vs Zombies 3 tower defence
   
     
  ,
Shmupnage - cosmos shooter
Undercat pc
Cold station - shooter, survival
Cut the rope - ,
   
     
     
 
Crown Dungeon 2
dragonella
crush shooter
grievous medical shooter
   
     
     
 
Foxyland 2
Foxyland 2
quidget 2
quidget 2
  ,  !
Pigglet   , english
   
     
  ,
Google Media Grabber -
Anova
anova
A Knots Story
A Knots Story
Sabotage
sabotage
   
     
  ,
24500 .
satellite /  -
ria pc game robocop
star inheritance    zx spectrum
   
     
  ,
ria pc game - pink dreams come true -
/
      24.09.2019
     - megainformatic live chat
5500 .
Game Builder -
   
     
  , ,
     6
      ?
 -
150 .
   
     
  , ,
   -    -   (kk hny) -
  -   -   (kk scp) -
  2013  megainformatic  ru
    -
   
     
  , , cms,
 freeware     / Balls on lif +    / How make a game
250 .
   megainformatic cms admin files  mysql
1250 .
   -     -   (akk hiss)
350 .
   
     
  ,
dream world -  2d    fle game engine - c++  directx 9
  -   (kk kz) -
  -
   fle game engine - Simple game
   
     
  , , ria xxl , fly snow 3d , . -
    -    PC / Balls and Holes - Green Ball Holidays PC game
ria xxl -  4.09.2019
150 .
fle game generator - fle   - fly snow 3d    1.0.3.1  13.12.2016 -
350 .
 
     
  fle game engine -
fle game engine         Windows Directx 9c -
800 .
 PC  / Ria PC game
240 ./
     1   / Balls on Lift Level 1 Run The Lift  0.9.2 05.10.2016 / version 0.9.2 05.10.2016
 
     
  - / megainformatic cms express files -
 /
700 .
1250 .
larry xxl     4.09.2019
150 .
   -04     7.07.2019
500 .
 
     
  Flash, Flash - .
 Flash
 flash
    cms
2500 .
megainformatic cms rs
14000 .
 
     
  (multi lang), , . - (megainformatic cms social), megainformatic cms groupon, keywords gen + , .
500 .
megainformatic cms social
12000 .
megainformatic cms groupon
14000 .
 -

megainformatic.ru/webjob/ - -

 
 

megainformatic.ru/webjob/

megainformatic.ru/webjob/
webjob
template selector
350 .
megainformatic cms express files +  slider
300 .

megainformatic.ru/webjob/ - -

 
     
 

,

megainformatic cms admin
1250 .
 delphi direct x 3d
megainformatic cms seo
550 .
megainformatic cms stat kit
500 .

megainformatic cms admin -

 
     
 
megainformatic cms express
350 .
megainformatic cms e-mailer
5800 .
megainformatic cms e-shop
3000 .
megainformatic cms e-pro
500 .
 
 
 
 
     
     
 

megainformatic cms free - Photoshop

megainformatic cms free
 photoshop
650 .
 photoshop -  !
700 .
 photoshop -
750 .

, Adobe Photoshop. , - GIMP, Corel Photo Paint .

 

 
 
     
 

2d 3d, , !

  ,  !
300 .
Donuts 3D
:

. , , !!! ( , ! ).

 
     
 
 
 
     
 

, : -

  -
350 .
  -
510 .
   ?
fle game engine
:  -

- , , , . - - : -

 
     
 
 
 
     
 

, 3ds max, photoshop, c++, directx, delphi php.

 3ds max
 c++  directx
 php
 3d   delphi directx
500 .
300 .

, .

.

 
     
 
 
 
     
     
 

   , !  delphi directx
  CJ andy -    mp3
 Photoshop free ( )
megainformatic cms express -     php + my sql
400 .

Photoshop free, delphi directx - , !, mp3 - , megainformatic cms express - php + my sql.

 
     
 
 
 
     
 

,

450 .
 Delphi Directx 8.1
   3d studio max
   FL Studio

, delphi directx 8.1 ( 3d ), 3d studio max, - Fruity Loops Studio

 
     
 
 
 
     
     
     
 
megainformatic cms express files

- megainformatic cms express files

megainformatic cms express files - , . mysql. . php, my sql.

- !!!

3 , , .

...

 
 
fle game engine -
fle game engine -


Something: Unexplained 2 captive of desires / :  2
     - 6 , 81 , 220 mp3
Quidget 2    -  , english
megainformatic
megainformatic live chat
X
: 0,2105