
-----------------------------------
MysticAngel
Thu May 22, 2003 8:26 pm

VB.net
-----------------------------------
just wondering if anyone has tried VB.NET ???

I wanted to lean but i dont know how good it is

-----------------------------------
Tony
Thu May 22, 2003 10:37 pm


-----------------------------------
VB.Net is Visual Basic for the .Net framework... much like C#, for web based applications. I have not tried it yet... I probably should give it a try over the summer and figure out if I should convince my teacher to teach .Net next year or Java as its planned  :?

-----------------------------------
DrDave
Thu Sep 04, 2003 7:31 pm


-----------------------------------
I use vb.net, I love it... Its so easy and quick to make a small application.

The only Con to .net is that it requires the .net framework  :cry:

-----------------------------------
Dan
Thu Sep 04, 2003 10:15 pm


-----------------------------------
The only Con to .net is that it requires the .net framework  :cry:

ROFL
 

Then why not just use VB?

-----------------------------------
DrDave
Sat Sep 06, 2003 8:30 pm


-----------------------------------
Can you do this in vb old?

Dim TW As IO.TextReader = IO.File.OpenText("c:\text.txt")
Dim data as string = TW.ReadToEnd()
TW.Close
MsgBox(data)


or this?


Private t as Threading.Thread
Public Sub StartAThread()
   t = New Threading.Thread(AddressOf GoThreads)
   t.Start()
End Sub
Protected Sub GoThreads()
   Dim i as int64
   Dim s as string
   For i = 0 to int64.MaxValue
      s &= "This is in its own thread, and wont bog the GUI too much."
   Next
End Sub


?

-----------------------------------
Tony
Sat Sep 06, 2003 9:02 pm


-----------------------------------
ohh  :o new stuff...

Dave - dont worry too much about Dan, he doesnt know any VB so he wouldn't know.

-----------------------------------
rizzix
Sat Sep 06, 2003 9:44 pm


-----------------------------------
actually vb.net is a major imporvement over vb. 
if u are to learn vb learn vb.net

the main imporvement is that vb.net is oo.

but if you are to ask me vb.net over java. i'll go for java. 

once you know java then next thing you know ur programming ur washing machine!!!

-----------------------------------
Tony
Sat Sep 06, 2003 11:35 pm


-----------------------------------
programming ur washing machine!!!

rizzix - share the code after you're done, I wanna customize my washing cycles too  :lol:

-----------------------------------
bugzpodder
Mon Sep 08, 2003 7:37 pm


-----------------------------------
easy to drag and make buttons of your choices ;)

-----------------------------------
Dan
Tue Sep 09, 2003 8:56 pm


-----------------------------------
i do know some stuff about vb, alought not alot about vb.net. i just thougth it was funny how it was side that vb.net whould be better with out the .net  :lol:

-----------------------------------
FDisk87
Fri Dec 05, 2003 4:53 pm


-----------------------------------
I like VB.Net much better, it has become much more object orriented.
