N3v3r G1v3 uP

Blog

Slank – Too Sweet To Forget

08/11/2009 15:25

Slank – Too Sweet To Forget Liric

i took my guitar
and i begin to play
those old familiar songs
from our yesterdays
*courtesy of LirikLaguIndonesia.net
but only half way through
the things i should have said
those old memories came
flown into my head

reff:
oh you’re so sweet
too sweet to forget
memories of being alone with you
it’s all in my dream

you’re just so sweet
too sweet to forget
you don’t love me the same
as i love you
it’s not to be i regret

hmmm days are passing by
the wind begins to blow
season’s changing and
the leaves begin to grow

but the words inside my head
would forever stay true
wherever i may go
whatever i may do

repeat reff

and inside cold dark lonely night
memories of the two of us
begin to take flight

you’re just so sweet
too sweet to forget
but you don’t love me like i love you
it’s not to be i regret

>>

J-Rocks - Falling In Love (English Version)

07/11/2009 20:42

Song Liric J-Rocks - Falling In Love (English Version)

 


I think I'm in love for the first time
And it's makin my heart confused
Tell me what exactly happened
How I wonder it will be

You touching my heart and my soul
While you hands in my hand indeed
Tell me what exactly happened
Make me feel I'm drowning to deep
Seems weird for me
I will never let this feeling go

*
If you are mine
Sharing all our up and down
I'm gonna be around and forever it would be

Reff:
Coz I'm fallin' in love
I'm fallin' in love
Yes I'm fallin' in love
I'm fallin' in love
Yes I'm fallin' in love
I'm fallin' in love with you

You touching my heart and my soul
While you hands in my hand indeed
Tell me what exactly happened
Make me feel I'm drowning to deep
Seems weird for me
I will never let this feeling go

Back to *, Reff

>>

Extrapolation proses with rekursi

06/11/2009 11:58

1. Design form and control program like this

 

2. double click on the rekursi Fibonasi botton and write listing procedure like below

Private Sub Command1_Click()
    Dim jml As Integer
    Dim a As Integer
    Cls
    jml = InputBox("Banyaknya data:")
    Print "cetak " & jml & "Bilangan Fibonanci : ";
    For a = 1 To jml
    Print FIBO(a)
    Next a
End Sub

3. make function with the name FIBO where inside its function wrote listing rekursi proses to counting fibonansi

Function FIBO(N As Integer) As Integer
    If (N = 1) Or (N = 2) Then
       FIBO = 1
    Else
       FIBO = FIBO(N - 1) + FIBO(N - 2)
    End If
End Function

4. double click on the Rekursi faktorial botton and make procedure listing like this below

Private Sub Command2_Click()
    Dim x As Integer
    Cls
    x = InputBox("banyaknya data:")
    Print "faktorial dari bilangan " & x & ":" & faktor(x)
End Sub

5. make fuction with the name faktor where has rekursi proses in it

Function faktor(p As Integer) As Integer
    If (p = 0) Then
        faktor = 1
    Else
        faktor = p * faktor(p - 1)
    End If
End Function

6. make procedure keluar with listing like below

Private Sub Command3_Click()
Unload Me
End Sub

7. Finally the result is

 

>>

take and give a point with LET and GET property

05/11/2009 12:38

design program in VB 6.0 to take and give a point with property LET and GET. the steps are

1. design from the form and the control program see pic below

2. make declaration variable and constanta on the general procedure, like below

Dim Currentcolor As String
Const black = &H80000012, red = &HFF&
Const green = &HFF00&, blue = &HF0000

3. give list of color in combobox

Private Sub Form_Load()
Combo1.AddItem "black"
Combo1.AddItem "red"
Combo1.AddItem "green"
Combo1.AddItem "blue"
End Sub

4. double click on the LET botton and type script like below

Private Sub Command1_Click()
pencolor = Combo1.text
Form3.BackColor = Currentcolor
End Sub

5. double clck on the GET botton and the fill with the script like below

Private Sub Command2_Click()
Form3.Caption = "backcolor is " & pencolor
End Sub

6. double click on the EXIT botton and write script like below

Private Sub Command3_Click()
Unload Me
End Sub

7. make property LET and GET and filled with listing like below

Property Let pencolor(colorname As String)
Select Case colorname
   Case "red"
     Currentcolor = red
   Case "green"
     Currentcolor = green
    Case "blue"
     curentcolor = blue
  Case Else
     Currentcolor = black
 End Select
End Property


Property Get pencolor() As String
Select Case curentcolor
  Case red
    pencolor = "red"
  Case green
    pencolor = "green"
  Case blue
    pencolor = "blue"
  Case Else
    pencolor = "black"
 End Select
End Property

8. and now RUN the program. take a look as we click LET botton you will see the color on the form. the color is appropriate with color we choose on the combo box.. and click GET botton to take color as showed on the caption form.

 

 

>>

Showing image picture in different types

03/11/2009 16:04

design program to showing image pictures in many type. steps must be doing are

1. design program like this picture below

2. makew procedure on the form activate and type program listing like below. this mean to make list on the combo box

Private Sub Form_Activate()
   Combo1.Text = "*.*"
   Combo1.AddItem "*.bmp"
   Combo1.AddItem "*.jpg"
   Combo1.AddItem "*.gif"
   Combo1.AddItem "*.*"
   Image1.Visible = False
End Sub

3. drive click on the drive1 and make procedure change this mean to choose working of drive

Private Sub Drive1_Change()
  Dir1.Path = Drive1.Drive
  gambar_kosong
End Sub

3. do double click on the object dir1 and make procedure dir1 with funtion change. this mean to choose folder and file which is saved.

Private Sub Dir1_Change()
  File1.FileName = Combo1.Text
  File1.FileName = Dir1.Path
  gambar_kosong
End Sub

4. make procedure file click this mean to choose image/picture will be showed


Private Sub File1_Click()
  On Error GoTo salah
  Image1.Visible = True
  Image1.Picture = LoadPicture(Dir1.Path & "\" & File1.FileName)
  Exit Sub
salah:
  MsgBox "file yang dipilih bukan file gambar"
  Combo1.SetFocus
End Sub

5. make procedure in combo1 like listing below

Private Sub Combo1_Click()
   File1.FileName = Combo1.Text
   gambar_kosong
End Sub

Private Sub Combo1_KeyPress(KeyAscii As Integer)
   If KeyAscii = 13 Then
   File1.FileName = Combo1.Text
   End If
End Sub

6. make procedure with command botton BERSIH, SEMBUNYI, TAMPIL DAN SELESAI. each command listing like below

Private Sub Command1_Click()
  Image1.Picture = Nothing
End Sub

Private Sub Command2_Click()
  Image1.Visible = False
End Sub

Private Sub Command3_Click()
Image1.Visible = True
End Sub

Private Sub Command4_Click()
Unload Me
End Sub

7. make procedure gambar-kosong to clean up picture or image.

Sub gambar_kosong()
  If File1.ListCount = 0 Then
    Image1.Picture = Nothing
    End If
End Sub

8. and then finally the result of the program is like picture below

>>

How Much control Program we use

03/11/2009 14:55

lets try to make program which is consisting of severel control program in VB 6.0 like example i am using are label1,text1, list1, command1, check2, option1, combo1, data1, drive1 and dir1. form of the layout is like picture below

and then next step is make procedure on common botton with click twice on command1 adn type script like below

and now run the program so u can see on list box or list1 will appear how much control program we are using... just see picture below

>>

using variable array on histogram

01/11/2009 17:09

to make this program step2 must be doing are

1. make design like this

2. and then make list program like this below

3. RUn program and u will command to fill how much data u wish..

4. and then finally the result program we make is...

>>

Make and Delete Object with Index

30/10/2009 21:48

how to make and delete object with index here is steps must be do

1. design form like pic below

2. type code program like picture below

3 and now run the program and click on the botton " Buat objeck berindex" example like i do is 4 times. the result is .....

>>

Make Project with index

30/10/2009 20:49

every object on the toolbox can be to the form with 2 mode that are no index mode and with index mode. with using no index mode every object copied will be has different name object. but with index mode will be resulting object same with the original object. which is make diffrent is index number.

steps to make index object are

  1. click object in the form (ex=text1) and then COpy (ctrl + c)
  2. and then paste (ctrl V)
  3. after we done paste will be appear aggreement Box to  make array control. and then choose Yes

example program

making 4 index object commond botton with caption " ENTRY", "UPDATE", "VIEW", "DELETE" AND " EXIT" .  give event Click to its object and if the booton clicked the others botton will be not active except the botton get click.

1. desain form dan objeck commond botton like this

2. doble click on the one of the common botton and then type code program like pic below

3. and now running the pogram and click one of the botton . the form of the program showing like pic below

 

>>

Write code program VB 6.0

30/10/2009 19:47

this simple program i try to write just try to want share little my knowlegde about VB 6,0 program here just follow us

design program is like this

the result after get run

for the code is like pic below

control program for program the above like show on the table below

 

Form Control Properties Setting
Command1

Caption

Start up Position

Cmd_ucapan

UCAPAN

 

Command2

Caption

Start up Position

Cmd_selesai

SELESAI

 

>>
All articles

Items: 21 - 30 of 62

<< 1 | 2 | 3 | 4 | 5 >>

Blog

Shakira : Waka Waka Lyrics

24/06/2010 13:11
  Oooeeeeeeeeeeeeeeeehh You're a good soldier Choosing your battles Pick yourself up And dust yourself off Get back in the saddle You're on the front line Everyone's watching You know it's serious We are getting closer This isn't over The pressure is on You feel it But you...
>>

Driver Compaq C700 for Windows XP

20/05/2010 00:02
Maybe we find dificulties as reinstal Notebookl compaq C700 series to find what suitable driver for windows XP operating system as my experience with this situation. because on the original website (compaq) doesnt give a link for its driver anymore. i have frustated as i was searching or browsing...
>>

Downgrade windows 7 or w. vista to Windows Xp

10/05/2010 10:44
sometimes we confusing how to downgrade operation system which is recent using windows 7 because of something reason of us we would like to downgrade its system operation system to windows xp which is notabene more lighter, simple and easy to operate than windows 7 or windows vista, as we know that...
>>

Setting up JAHT Wp-4001BR Acces point

25/01/2010 21:14
My office has two connection of internet those are Speedy from telkom and the other is 3Gnet. actually the main internet we are using is Telkom speedy because the connection laterly with speedy rather slow of download in this case we are hate why speedy like this. and then we decided to switch over...
>>

How to start V900 B2

21/01/2010 15:28
 Power on/off power on: turn the power switch to upside "On" position. The indicator will be light constantly with the red color for 3-5 seconds, then change to flash slowly, after about 35 seconds, the indicator change to green color flashed slowly (indicated cancel defense status) or green...
>>

Feature V900 B2

21/01/2010 12:12
Set defence/Automatic alarm set defense is making the remote camera in alarm status. in this status, the connected wireless sensors, infrared body detector and motion detector which allowed be activated are in work status. under the defense status. if any wireless sensor, motion detector is...
>>

User Authorization Level V900

21/01/2010 11:12
There are three levels remote camera user with different authority: Master: master need to store his/her mobile number in the camera, otherwise all the functions of the remote camera are disabled. only one master mobile number can be set in the remote camera. the camera will send the alarm message...
>>

Pelan-Pelan Saja - Kotak

20/01/2010 19:37
ku tahu kamu pasti rasa apa yang ku rasa ku tahu cepat atau lambat kamu kan mengerti hati bila dipaksakan pasti takkan baik pantasnya kamu mencintai yang juga cintai dirimu cuma kamu reff: lepaskanlah ikatanmu dengan aku biar kamu senang bila berat melupakan aku pelan-pelan saja tak ada niat...
>>

The Inventor of Important Things in the World

05/01/2010 23:00
do you know the inventors important things in the world. let's see who they are Inventor of steam machine is James Watt from England Inventor of Four Stroke Engine is Nicolaus Otto from German Inventor of Diesel Machine is Rudolf Diesel from German Inventor of Print machine is...
>>

Tips for a quick temper

05/01/2010 20:28
The nature of irritability or emotional is something humane for someone. Various efforts and counseling can be done to overcome these negative attitudes. However, if the nature of your irritability natural light is still in its early stages, you can anticipate this before the burst of anger. Here...
>>
1 | 2 | 3 | 4 | 5 >>

Blog

Shakira : Waka Waka Lyrics

24/06/2010 13:11
  Oooeeeeeeeeeeeeeeeehh You're a good soldier Choosing your battles Pick yourself up And dust yourself off Get back in the saddle You're on the front line Everyone's watching You know it's serious We are getting closer This isn't over The pressure is on You feel it But you...
>>

Driver Compaq C700 for Windows XP

20/05/2010 00:02
Maybe we find dificulties as reinstal Notebookl compaq C700 series to find what suitable driver for windows XP operating system as my experience with this situation. because on the original website (compaq) doesnt give a link for its driver anymore. i have frustated as i was searching or browsing...
>>

Downgrade windows 7 or w. vista to Windows Xp

10/05/2010 10:44
sometimes we confusing how to downgrade operation system which is recent using windows 7 because of something reason of us we would like to downgrade its system operation system to windows xp which is notabene more lighter, simple and easy to operate than windows 7 or windows vista, as we know that...
>>

Setting up JAHT Wp-4001BR Acces point

25/01/2010 21:14
My office has two connection of internet those are Speedy from telkom and the other is 3Gnet. actually the main internet we are using is Telkom speedy because the connection laterly with speedy rather slow of download in this case we are hate why speedy like this. and then we decided to switch over...
>>

How to start V900 B2

21/01/2010 15:28
 Power on/off power on: turn the power switch to upside "On" position. The indicator will be light constantly with the red color for 3-5 seconds, then change to flash slowly, after about 35 seconds, the indicator change to green color flashed slowly (indicated cancel defense status) or green...
>>

Feature V900 B2

21/01/2010 12:12
Set defence/Automatic alarm set defense is making the remote camera in alarm status. in this status, the connected wireless sensors, infrared body detector and motion detector which allowed be activated are in work status. under the defense status. if any wireless sensor, motion detector is...
>>

User Authorization Level V900

21/01/2010 11:12
There are three levels remote camera user with different authority: Master: master need to store his/her mobile number in the camera, otherwise all the functions of the remote camera are disabled. only one master mobile number can be set in the remote camera. the camera will send the alarm message...
>>

Pelan-Pelan Saja - Kotak

20/01/2010 19:37
ku tahu kamu pasti rasa apa yang ku rasa ku tahu cepat atau lambat kamu kan mengerti hati bila dipaksakan pasti takkan baik pantasnya kamu mencintai yang juga cintai dirimu cuma kamu reff: lepaskanlah ikatanmu dengan aku biar kamu senang bila berat melupakan aku pelan-pelan saja tak ada niat...
>>

The Inventor of Important Things in the World

05/01/2010 23:00
do you know the inventors important things in the world. let's see who they are Inventor of steam machine is James Watt from England Inventor of Four Stroke Engine is Nicolaus Otto from German Inventor of Diesel Machine is Rudolf Diesel from German Inventor of Print machine is...
>>

Tips for a quick temper

05/01/2010 20:28
The nature of irritability or emotional is something humane for someone. Various efforts and counseling can be done to overcome these negative attitudes. However, if the nature of your irritability natural light is still in its early stages, you can anticipate this before the burst of anger. Here...
>>
1 | 2 | 3 | 4 | 5 >>

My Empty Talk

Special day

13/12/2009 15:18
how happy i am that today i got good news from my campus. they just call me that on graduate this year i get appreciation the best college. feeling not bellive it that i have its prise.. although i am not study in favorite campus but with what i get now its make so happy. the graduation ceremony...
>>

voip gateway

24/11/2009 23:24
i have a task from my bos to setting up voip gateway using 3 cx software for replace pbx/pabx and for adapter voip gateway (still looking) any suggest what adapter voip gateway must be i get that mean support to 3cx 1. how about Linksys PAP2T? 2. how about Linksys SPA3102? 3. or airlive 111A? which...
>>

strange network topology

21/11/2009 21:58
how wonder i am... that speedy connection (game package) can be accessed on the networking netcafe without using router or pc server as gateway.. this topology setting i found on the net cafe's fren of mine.. the topology as like below this is incredible.. so here just using switch to spreading...
>>

My Hp is BAck

09/11/2009 19:41
i woke up earlier this morning with intent to pay the billing of speedy and remitting some money to our parents. because of i was in a hurry on the way to pay that bill my Hp fell down at that situation i thought i Hp was gone away. lucky i am bcos there is someone found my hp and after i sent sms...
>>

Sharing Internet

23/10/2009 16:36
i don't know really how to share internet using router DLINK 615, all i know i have do but the result still nothing. its job make me crazy.. the conection is like this ISP 3Gnet ----> Spliltter/Modem ----> Router Dlink 615 ----> clients I got IP Address from ISP is IP =192.168.x.x ...
>>

1st Job

19/10/2009 21:44
today is the first day im working. i did for my job today is making instalation for networking my new office. get tired really... cause today i have to climbing the wall  get the roof to attach wire of UTP. my job for today was not finish  cause the crimping isnt do yet. tomorow will be...
>>

accident

12/10/2009 21:58
finaly i got a signature from mr hidayat although i rather get difficulties to find her place. as i arrived there Rudi has been waiting for me and then he showed to meet mr hidayat in his room, after we get in front of his room i knocked the door of his room and ofcourse not forget to say hello. i...
>>

Signature

12/10/2009 10:23
i just have called from Rudi that he ask me to meet Mr Hidayat (our lecture) for a signatur.e our paper. in this case i have problem that i already have messages from Heru before  (heru ask me that as i gonna meet Mr Hidayat to take him together). today i have to meet mr hidayat but in this...
>>

So Much Thanks to Mas Ary

11/10/2009 18:23
I don't know what must i say to u mas Ary. you have much help me in anything. How to repay you have done to me. only pray to God to u right now i can do for you. May God Bless U.
>>

Acer Aspire One

10/10/2009 22:35
while i write this article im istalling aspire one whose my friend he ask me to help him. the spesifikasi its netbook are intel atom cpu N270 1.60Ghz memori ram 1.5 Gb hardisk 8 GB considering the Hardis only 8 Gb so i decided to make its hdd just one partition. this netbook doesnt...
>>
1 | 2 >>

Search site

ranto© 2010 All rights reserved.