Author |
Message |
MysticAngel
|
Posted: Thu May 22, 2003 8:26 pm Post subject: VB.net |
|
|
just wondering if anyone has tried VB.NET ???
I wanted to lean but i dont know how good it is |
|
|
|
|
|
Sponsor Sponsor
|
|
|
Tony
|
Posted: Thu May 22, 2003 10:37 pm Post subject: (No subject) |
|
|
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 |
Tony's programming blog. DWITE - a programming contest. |
|
|
|
|
DrDave
|
Posted: Thu Sep 04, 2003 7:31 pm Post subject: (No subject) |
|
|
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 |
|
|
|
|
|
Dan
|
Posted: Thu Sep 04, 2003 10:15 pm Post subject: (No subject) |
|
|
DrDave wrote: The only Con to .net is that it requires the .net framework
ROFL
Then why not just use VB? |
Computer Science Canada
Help with programming in C, C++, Java, PHP, Ruby, Turing, VB and more! |
|
|
|
|
DrDave
|
Posted: Sat Sep 06, 2003 8:30 pm Post subject: (No subject) |
|
|
Can you do this in vb old?
code: | Dim TW As IO.TextReader = IO.File.OpenText("c:\text.txt")
Dim data as string = TW.ReadToEnd()
TW.Close
MsgBox(data) |
or this?
code: |
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
|
Posted: Sat Sep 06, 2003 9:02 pm Post subject: (No subject) |
|
|
ohh new stuff...
Dave - dont worry too much about Dan, he doesnt know any VB so he wouldn't know. |
Tony's programming blog. DWITE - a programming contest. |
|
|
|
|
rizzix
|
Posted: Sat Sep 06, 2003 9:44 pm Post subject: (No subject) |
|
|
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
|
Posted: Sat Sep 06, 2003 11:35 pm Post subject: (No subject) |
|
|
rizzix wrote: programming ur washing machine!!!
rizzix - share the code after you're done, I wanna customize my washing cycles too |
Tony's programming blog. DWITE - a programming contest. |
|
|
|
|
Sponsor Sponsor
|
|
|
bugzpodder
|
Posted: Mon Sep 08, 2003 7:37 pm Post subject: (No subject) |
|
|
easy to drag and make buttons of your choices |
|
|
|
|
|
Dan
|
Posted: Tue Sep 09, 2003 8:56 pm Post subject: (No subject) |
|
|
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 |
Computer Science Canada
Help with programming in C, C++, Java, PHP, Ruby, Turing, VB and more! |
|
|
|
|
FDisk87
|
Posted: Fri Dec 05, 2003 4:53 pm Post subject: (No subject) |
|
|
I like VB.Net much better, it has become much more object orriented. |
|
|
|
|
|
|