Hi Everyone , have a nice day

VB Code:
  1. Private Sub Command1_Click()
  2. Dim txt As String
  3. Dim strline() As String
  4. Dim word As String
  5. Dim mean As String
  6. Dim strvalues() As String
  7. FF = FreeFile
  8. Open App.Path & "\words.txt" For Input As FF
  9.              txt = Input(LOF(FF), FF)    'Read the whole file
  10.         Close FF
  11.            strline = Split(txt, vbNewLine)
  12.   For z = 0 To 3203
  13.                     strvalues = Split((strline(z)), "|")
  14.                   word = strvalues(0)
  15.                   mean = strvalues(1)
  16.                   Label1.Caption = word
  17.                   Label2.Caption = mean
  18.     Next z
  19.          
  20. End Sub
  21.  
  22. Private Sub Command4_Click()
  23. Unload Form1
  24. End Sub

The code given above is what i have done till now . words.txt is basically a file having vocabulary in which one word is on each line and its meaning is separated by "|".
now what i want to do is that i have couple of more cummand buttons on my form like "next word" , "show meaning" , which should have capability of moving to next word without meanings display ... or show meanings .. and then proceed to next word .. but i donno how should i put that feasibility here ..
like i had in my mind if i could give something like .. within z loop

if commandbutton2_click = true
then label1.caption=word
but this doesnt work ..
i hope i making myself clear enuff

Regards and waiting for responce