--> Delphi Tips Trick: Animation Delphi | Deskripsi Singkat Blog di Sini

For Newbie

Showing posts with label Animation Delphi. Show all posts
Showing posts with label Animation Delphi. Show all posts

Tuesday, 27 September 2011

no image

SMS WORKING MECHANISM

SMS WORKING MECHANISM
When user sends SMS to a number, the SMS is not directly sent to the destination number, but, first, it will enter the SMS Center (SMSC) of the telephone operator that the user used. SMS Center itself can be mean as a server that is responsible in SMS sending process in a operator. SMS that is sent in a mobile phone will enter this SMSC, and then continued to the destination number of that SMS. If the destination number is offline, SMSC will keep that SMS for a while until the destination number is active. The time in keeping the SMS depends on how long the time that had been determined by operator to keep the SMS. The number that receives the SMS will send report to SMSC that SMS has been received. The report then will be continued back to the sender number.


  I hope this writing can give benefit to the visitors, readers, developer and me. Thanks for visiting and availability for sharing this article by pressing 
Share this on Facebook
or just press like button under this posting

Saturday, 10 September 2011

Blinking Text In Borland Delphi

Blinking Text In Borland Delphi

Blinking Text In Borland Delphi

Blinking is a simple example for animation in Borland Delphi 7 to create simple application with interesting visualization, the following is the visualization.



Basically, the blinking text is label component which is visualized then hidden continuously, to do that automatically, using Timer component in Borland Delphi 7, that component is on Component Pallete System.

 the soruce code on timer1 event : OnTimer is:

If Label1.Visible then
begin
Label1.Visible:=False;
end
Else
Label1.Visible:=True;


this is the visualization:





 I hope this article can give benefit to the visitors, readers, developer and me. Thanks for visiting and availability for sharing this article by pressing 
Share this on Facebook
or just press like button under this posting

Friday, 9 September 2011

Running Text In Borland Delphi 7 (From Under the Form To The Upper)

Running Text In Borland Delphi 7 (From Under the Form To The Upper)

Basically, animation in software application that is made by someone will be able to add trust value by the user. In this writing will discuss about making animation in the form of running text in Delphi Form. Text that will become animation is text in “label” component. Basically, text is not moving but the label component is. So that will get an effect which give impression that the label component is moving in row with the movement of the component. This Application will create a label move Upper The Form design from from under page of the form design
Insert the following Component to the Borland Delphi 7 Form Design


No
Component Name Properties Value
Label1 Caption www.ItsToShare.Com
Timer1 - -
This is the design form of the Running Text In Borland Delphi 7 (To The Upper) Application




Picture 1. Running text visualization design in Delphi.
Insert the following Source  Code to the Borland Delphi 7 Form Design

No Component Name Event Source Code
Timer1 OnTimer Label1.top:=Label1.TOP-10;
if (Label1.TOP+Label1.Height) <= 0 then
Label1.TOP:=Form1.Height-(label1.Height+50);

The following is the screenshot picture.








 I hope this article can give benefit to the visitors, readers, developer and me. Thanks for visiting and availability for sharing this article by pressing 
Share this on Facebook
or just press like button under this posting

Wednesday, 7 September 2011

Running Text in Borland Delphi 7 (Go Along To The Left)

Running Text in Borland Delphi 7 (Go Along To The Left)

Basically, animation in software application that is made by someone will be able to add trust value by the user. In this writing will discuss about making animation in the form of running text in Delphi Form. Text that will become animation is text in “label” component. Basically, text is not moving but the label component is. So that will get an effect which give impression that the label component is moving in row with the movement of the component. This Application will create a label Go Along To The Left from the right Form design

Insert the following Component to the Borland Delphi 7 Form Design

No Component Name Properties Value
1 Label1 Caption www.ItsToShare.Com
2 Timer1 - -

This is the design form of the Running Text In Borland Delphi 7 (Go Along To The Left) Application

Picture 1. Running text visualization design in Delphi.

Insert the following Source  to Code the Borland Delphi 7 Form Design


No Component Name Event Source Code
Timer1 OnTimer Label1.Left:=Label1.left-10;
if (Label1.left+Label1.width) <= 0 then
Label1.left:=Form1.Width-(label1.Width+10);

The following is the screenshot picture.



 I hope this article can give benefit to the visitors, readers, developer and me. Thanks for visiting and availability for sharing this article by pressing 
Share this on Facebook
or just press like button under this posting

Friday, 2 September 2011

Opening Secret Partition, Appearing Picture With Jpeg Format In To Image 1 Component In Borlan Delphi 7

Opening Secret Partition, Appearing Picture With Jpeg Format In To Image 1 Component In Borlan Delphi 7

Opening Secret Partition, Appearing Picture With Jpeg Format In To Image 1 Component In Borlan Delphi 7
When trying to load picture from the folder through open dialog component to be visualized in component image, it is easy to those who knew the secret, but it was difficult for the writer at that time. Whereas the secret is just in the form of 4 letters (characters) and a reading tag.
This is the explanation of the essay theories: Picture standard format that is able to be visualized in component image Delphi (there is in Pallete component: additional) is Picture with bitmap format while the picture that will be visualized is in Jpeg format. However, it is weird when we load the picture directly through that component (image 1) before execution (through object inspector> Picture then trace the picture from computer), then the picture can appear directly. It is different when we load picture with Jpeg From folder with open dialog component.
With source code:
procedure TForm1.ButtonCariGambarClick(Sender: TObject);
begin
if opendialog1.Execute then
image1.Picture.LoadFromFile(opendialog1.FileName);
end;
Note: picture that is chosen by Jpeg Format
Then will appear error message which means the picture Format is not supported.
To solve the problem in ‘uses’ line (in source code writing unit) add Jpeg, so that become picture as follows below:

figure. Add Jpeg to uses
Next, please execute the program and load the picture from the folder through open dialog component.
the Picture Will loaded successfully

 I hope this article can give benefit to the visitors, readers, developer and me. Thanks for visiting and availability for sharing this article by pressing 
Share this on Facebook
or just press like button under this posting