Minggu, 16 Januari 2011

Get More Shoppers

Get More Visitors, Get More Revenue!!!

With no day-to-day stream of customers you cannot have reliable around the clock sales.

It's not possible to get sales if no one visits your website. You have to have customers
to see your web-site, every day, 24 hours!

We help more than 30,000 clients get more customers online.

You will get more income by receiving thousands of real interested customers to see your web-site.

More Shoppers...


Increase search engine rankings

Increase your website search engine rankings

Showing up on search engines is one of the most important strategy to increase web-site
traffic and expose your product or service to customers that might be interested in your product.

All major search engines utilize an algorithm to determine your web-site ranks.

Search engines know the number of websites are linking to your web-site; more referrers and hits
better rank for your web site.

Get Better Rank...


Advertise to over 10 million users

Promote to over 10 million users around the world.

We advertise your company in global network of affiliate webpages,
each with own narrow points of interests.

Our company gives you effective promotion strategies that makes your business succeed on the Internet.

We will provide you with real and visible results and take your web-site to the next level.

Advertise to Millions users Now...


Senin, 27 Desember 2010

Make Money

affiliate program

EARN MONEY FROM YOUR WEBPAGE

Turn your valuable website visitors into money.
Work online and join our free money making affiliate program.
We offer the most pay-per-click rate to help increase your
revenue stream.

Join our income making program absolutely no charge and 100% risk free.

Sign Up...

Get revenue after you not working

Create many new money incomes
each and every hour.
Get revenue after you stop working or even retire at an young age with a
powerful cash stream.
Make this one time and get paid over and over again.
It's best way to create
mind-blowing
new levels of cash
and success on the online.

0 (ZERO) INVESTMENT PROGRAM

We designed this make money system
specifically for NO SETUP FEE methods,
to make hundreds, if not millions of dollars, without spending something.

Begin receiving steady partner revenue

Our money making system really
can make you revenue on the same day.
Start collecting steady partner income with
almost no investments at all. This is a profitable revenue
opportunity, the chance for you to build a solid, reliable,
long-term profitable business.

Home - Swom.com Social networking site for businesses and professionals

Kamis, 24 Juni 2010

Validasi Angka

Tipe data default dari komponen TEdit milik delphi itu adalah string. Disinia saya akan memberikan sedikit trik untuk mengunci agar TEdit tidak bisa diisi angka

Penggunaan perintah Insert

Untuk menyimpan data ke database ada beberapa cara yang bisa dilakukan bisa dengan perintah append, langsung mengisi pada dbgrid nya atau bisa juga dengan menggunkan perintah sql.

Sabtu, 15 Mei 2010

Tips&Trik OnKeyPress

Hallo sobat-sobat delphier. Ketemu lagi nich, jangan bosen yach kunjungi blog aq.hehehehhehe. Kali ini saya akan berbagi sedikit tips dan trik memanfaat kan perintah OnKeyPress pada form. Pernah kah kalian membuat semua aplikasi yang memiliki banyak entrian data dan untuk berpindah dari satu isian ke isian lain user minta menggunakan tombol enter. Wah...klo entrian nya cuma 5 sich gak apa2, gmn kalo misal entrian nya ada 10 atau lebih, bisa panjang banget tu coding kalian. Misal ada lima Entrian data NIM,NAMA MAHASISWA, Jenis Kelamin, Tmp.Lhr, Tgl.Lhr. Kalo isian nya cuma 5 kalian bisa aja menggunakan perintah IF key=#13 Then edNama.SetFocus dan seterus nya tp gmn kalo Entrian data nya banyak?? Jangan kwatir sobat-sobat semua ini aq pny sedikit tips dan triks utk mngtasi masalah ini.
Langkah nya :
1. Urutkan dulu Tag dari masing2 Komponent entrian data, baik itu berupa Edit, ComboBox maupun yg lain nya.
2. Kalau sudah urut rubah properti KeyPreview milik nya form menjadi Tru.
3. Langkah selanjut nya ketikkan perintah ini pada event OnKeyPressnya Form
if Key=#13 then SendMessage(Handle,WM_NEXTDLGCTL,0,0);

DDevExtension2010

Pernah kah kalian bingung ketika mencari sebuah komponent yang ada di delphi?? Apalagi kalu kita sudah banyak menginstal VCL-VCL tambahan yang abegitu banyak. Kalau tmen-tmen pernah mengalami hal itu mungkin ini bisa jadi solusi buat temen-temen. Ini saya perkenalkan sebuah komponen yang mungkin bisa membantu temen2 semua nama nya komponen DDevExtension.
Kalau berminat download saja dan instal di komputer kamu ini link download nya DDevExtension

Fungsi pada delphi

Fungsi(Function) merupakan satu teknik dalam bahasa pemrograman untuk meringkas atau mempermudah kita dalam membuat suatu aplikasi. Perlu dingat bahwa sebuah fungsi hanya bisa menampung sebuah nilai bentuk dasar dari fungsi :
1. Function [NamaFungsi]: [typeDatahasilOutput];
2. Function [NamaFungsi](parameter1:type_data1,parameter2:type_data2, ) : [typeDatahasilOutput];
Contoh:
Function kali : integer;
begin
c:=a*b; // variabel global
result :=c;// Nilai kembalian
end;
Function kali(a,b:integer) : integer;
begin
c:=a*b; // variabel lokal
result :=c;// Nilai kembalian
end;