<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Rizq Technology - Exploring Your iDea. &#187; multi tier</title>
	<atom:link href="http://rizqtech.net/tag/multi-tier/feed/" rel="self" type="application/rss+xml" />
	<link>http://rizqtech.net</link>
	<description>All about My Experiences, Knowledge and Thoughts.</description>
	<lastBuildDate>Sat, 14 Jan 2012 17:20:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Delphi Basic#1</title>
		<link>http://rizqtech.net/2009/03/24/4gl-multi-tier-with-delphi/</link>
		<comments>http://rizqtech.net/2009/03/24/4gl-multi-tier-with-delphi/#comments</comments>
		<pubDate>Tue, 24 Mar 2009 14:17:29 +0000</pubDate>
		<dc:creator>Rizky</dc:creator>
				<category><![CDATA[Delphi]]></category>
		<category><![CDATA[4gl]]></category>
		<category><![CDATA[multi tier]]></category>
		<category><![CDATA[object]]></category>
		<category><![CDATA[tform]]></category>

		<guid isPermaLink="false">http://rizqtech.net/?p=495</guid>
		<description><![CDATA[#CHAPTER 1 1.How to create simple pop up Welcome Text in Delphi ? unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs; type TForm1 = class(TForm) procedure formclick(Sender: TObject); private { Private declarations } public { Public declarations } end; var Form1: TForm1; implementation {$R *.dfm} procedure TForm1.formclick(Sender: TObject); begin Application.MessageBox('Welcome [...]]]></description>
			<content:encoded><![CDATA[<p><strong>#CHAPTER 1</strong></p>
<p>1.How to create simple pop up Welcome Text in Delphi ?</p>
<pre name="code" class="delphi">

unit Unit1;

interface

uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs;

type
TForm1 = class(TForm)
procedure formclick(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;

var
Form1: TForm1;

implementation

{$R *.dfm}

procedure TForm1.formclick(Sender: TObject);
begin
Application.MessageBox('Welcome to Delphi and Rizq Technology','Information',MB_OKCancel or MB_ICONINFORMATION);

end;

end.</pre>
<p>2. How to create simple button with text appear ?</p>
<pre name="code" class="delphi">

unit Unit1;

interface

uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls;

type
TForm1 = class(TForm)
Button1: TButton;
Button2: TButton;
Button3: TButton;
Edit1: TEdit;
Edit2: TEdit;
Edit3: TEdit;
Button4: TButton;
procedure formclick(Sender: TObject);
procedure formclose(Sender: TObject; var Action: TCloseAction);
procedure Button1Click(Sender: TObject);
procedure Button2Click(Sender: TObject);
procedure Button3Click(Sender: TObject);
procedure Button4Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;

var
Form1: TForm1;

implementation

{$R *.dfm}

procedure TForm1.formclick(Sender: TObject);
begin
Application.MessageBox('Welcome to Delphi and Rizq Technology','Information',MB_OKCancel or MB_ICONINFORMATION);

end;

procedure TForm1.formclose(Sender: TObject; var Action: TCloseAction);
begin
Application.MessageBox('Mau kemana Bro....!!','WARNING!!!',MB_ICONINFORMATION);
end;

procedure TForm1.Button1Click(Sender:TObject);
begin
edit1.Text:='Saya';
end;

procedure TForm1.Button2Click(Sender:TObject);
begin
edit2.Text:='Belajar';
end;

procedure TForm1.Button3Click(Sender:TObject);
begin
edit3.Text:='Delphi';
end;

procedure TForm1.Button4Click(Sender:Tobject);
begin
edit1.Text:='';
edit2.Text:='';
edit3.Text:='';
end;

end.</pre>
<p>SCREENSHOOT</p>
<p><img class="size-full wp-image-497 alignleft" title="Screenshoot 2" src="http://rizqtech.net/wp-content/uploads/2009/03/screenshoot-latihan-2.jpg" alt="Screenshoot 2" width="553" height="381" /></p>
<p>3.How to Create button affected changed background color ?</p>
<pre name="code" class="delphi">
unit Unit3;

interface

uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls;

type
TForm3 = class(TForm)
Button1: TButton;
Button2: TButton;
Button3: TButton;
Button4: TButton;
procedure Button1Click(Sender: TObject);
procedure Button2Click(Sender: TObject);
procedure Button3Click(Sender: TObject);
procedure Button4Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;

var
Form3: TForm3;

implementation

{$R *.dfm}

procedure TForm3.Button1Click(Sender: TObject);
begin
form3.Color:=clyellow
end;

procedure TForm3.Button2Click(Sender: TObject);
begin
form3.Color:=clred
end;

procedure TForm3.Button3Click(Sender: TObject);
begin
form3.Color:=clgreen
end;

procedure TForm3.Button4Click(Sender: TObject);
begin
application.Terminate;
end;

end.
</pre>
<p>SCREENSHOOT</p>
<p><img class="size-full wp-image-496 alignleft" title="Screenshoot 3" src="http://rizqtech.net/wp-content/uploads/2009/03/screenshoot-latihan-3.jpg" alt="Screenshoot 3" width="563" height="389" /></p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Frizqtech.net%2F2009%2F03%2F24%2F4gl-multi-tier-with-delphi%2F';
  addthis_title  = 'Delphi+Basic%231';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
<h3  class="related_post_title">Related Post </h3><ul class="related_post"><li><a href="http://rizqtech.net/2009/04/26/delphi-basic5/"  title="Delphi Basic#5">Delphi Basic#5</a></li><li><a href="http://rizqtech.net/2009/04/19/delphi-basic3/"  title="Delphi Basic#3">Delphi Basic#3</a></li><li><a href="http://rizqtech.net/2009/04/19/delphi-basic2/"  title="Delphi Basic#2">Delphi Basic#2</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://rizqtech.net/2009/03/24/4gl-multi-tier-with-delphi/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

