SajidAttar
Programmer
Hi Guys!
While writing vb programm it is not neccesarry to add line number to each line. I have observed some of programmer use to add line number in theire programms. I think this practice helps them to navigate theire programms also we can jump to any line using 'goto <Line Number>' statement.
Is there any other reasons to do such? I looked in this forum and googled on web but could not get satisfactory reason and I believe you guys are having the knowledge of this practice. may be some of you are use to do this practice.
Thanks in advance,
Sajid
While writing vb programm it is not neccesarry to add line number to each line. I have observed some of programmer use to add line number in theire programms. I think this practice helps them to navigate theire programms also we can jump to any line using 'goto <Line Number>' statement.
Code:
Private Sub Command1_Click()
100 MsgBox Text1.Text
101 MsgBox Text2.Text
102 . . .
109 . . . 'no need to add line numbers in sequence
106 . . . 'but it sould be unique in its scope
End Sub
Is there any other reasons to do such? I looked in this forum and googled on web but could not get satisfactory reason and I believe you guys are having the knowledge of this practice. may be some of you are use to do this practice.
Thanks in advance,
Sajid