Forum: VB.NET Feb 13th, 2009 |
| Replies: 2 Views: 646 You could also use a dictionary to check spelling |
Forum: VB.NET Feb 3rd, 2009 |
| Replies: 22 Views: 1,727 |
Forum: VB.NET Jan 28th, 2009 |
| Replies: 5 Views: 843 some other free tutorials
http://www.homeandlearn.co.uk/NET/vbNET.html
the only way to start is to start reading and messing with some of this stuff yourself. you can get visual studio for free... |
Forum: VB.NET Jan 21st, 2009 |
| Replies: 14 Views: 3,036 you're posting to a thread that's over 2 years old |
Forum: VB.NET Jan 9th, 2009 |
| Replies: 6 Views: 536 You're not supposed to post your email addy here like that
and what are you asking for? you want code to download? a program to write it? You have not said what you want so I assume it's code.
... |
Forum: VB.NET Jan 7th, 2009 |
| Replies: 22 Views: 1,596 I'm newer to vb.net so the others might change this a bit
Private Shared Sub GetInstalled()
Dim uninstallKey As String = "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall"... |
Forum: VB.NET Sep 9th, 2008 |
| Replies: 7 Views: 1,049 You run grossPay = hoursWorked * payRate
payRate is defined above it but hoursWorked is not - therefore it looks like you're running
grossPay = 0 * (the value of the textbox)
-- move your... |