Forum: VB.NET Feb 20th, 2009 |
| Replies: 2 Views: 736 You would probably have to play with the count and where the message box is displayed to get this to be exactly what you want, but I think something like this should work.
Public Class Form1
... |
Forum: VB.NET Feb 13th, 2009 |
| Replies: 2 Views: 558 Have you tried just reading in the lines and splitting based on the "." and "{"?
Dim streamRead as StreamReader = new StreamReader("xyz.css")
Dim input As String = streamRead.ReadLine()
Dim... |
Forum: VB.NET Nov 26th, 2008 |
| Replies: 3 Views: 1,121 I'm assuming you want to check the values before making the call to the FV function. If that's the case, you could accomplish what you're trying to do with three simple if statements. Something like... |