dear friends i need visual basic tutorial & books on pdf or video formet plz post for me i am biggener for this ..........
thanks......... in advance........

Recommended Answers

All 5 Replies

dear friends i need visual basic tutorial & books on pdf or video formet plz post for me i am biggener for this ..........
thanks......... in advance........

If u seriously need those what u requested for then I've the resources for u. Just send me a notification mail to my email id and I'll send u what u want within a few moments.My e-mail id is :-

choudhuryshouvik@yahoo.com

or u can try

choudhuryshouvik@gmail.com
bye!!!

Hi, I've sent the resources to ur mail.Check ur email id.

thanks friends thanks lot

hi frendz
i need the coding for fibonacci series in visual basic with do until command
plz send it fast. i really need it.
thanks in advance as i know u all r very helpful

'take a textbox(txtno) and a commandbutton(command1)

Private Sub Command1_Click()
Dim no, s, t, t1, i As Integer

no = Val(Trim(txtno.Text))
t = 1
t1 = 1
s = 0
i = 1

lstseries.Clear
lstseries.AddItem t
lstseries.AddItem t1

Do Until i > no - 2
s = t + t1
t = t1
t1 = s
lstseries.AddItem s
i = i + 1
Loop
End Sub

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.