As part of the Visual Studio product range, Microsoft created a set of free development environments for hobbyists and novices, the Visual Studio 2005 Express series. One edition in the series is Visual Basic 2005 Express Edition, which was succeeded by Visual Basic 2008 Express Edition in the 2008 edition of Visual Studio Express.[8]
The Express Editions are targeted specifically for people learning a language. They have a streamlined version of the user interface, and lack more advanced features of the standard versions. On the other hand, Visual Basic 2005 Express Edition does contain the Visual Basic 6.0 converter, so it is a way to evaluate feasibility of conversion from older versions of Visual Basic.
</b1>
I have tried the following, but i cant figure out what's wrong. I know it isn't impossible.
Dim inputString As String = RichTextBox1.Text
Dim regex As New Regex("[<]b1[>]""[<]/b1[>]"(RegexOptions.Compiled))
Dim col As MatchCollection = Regex.Matches(inputString)
For Each match As Match In col
Console.WriteLine("[<]b1[>]" + match.Groups("[<]b1[>]").Value)
Next
I want to use .rtf because i need to save color etc. information, BUT if you know better way to do this; please tell me.
Thanks for your help, it's appreciated.

New Topic/Question
Reply





MultiQuote







|