Click here to Skip to main content
16,007,885 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Crystal Report Pie chart Pin
Ritesh123411-Jan-06 19:03
Ritesh123411-Jan-06 19:03 
GeneralRe: Crystal Report Pie chart Pin
shabonaa12-Jan-06 6:13
shabonaa12-Jan-06 6:13 
GeneralRe: Crystal Report Pie chart Pin
Ritesh123412-Jan-06 17:22
Ritesh123412-Jan-06 17:22 
GeneralRe: Crystal Report Pie chart Pin
shabonaa13-Jan-06 2:44
shabonaa13-Jan-06 2:44 
GeneralRe: Crystal Report Pie chart Pin
Ritesh123413-Jan-06 17:46
Ritesh123413-Jan-06 17:46 
GeneralRe: Crystal Report Pie chart Pin
shabonaa13-Jan-06 22:48
shabonaa13-Jan-06 22:48 
QuestionSource code comment line removal Pin
kevingpo11-Jan-06 0:43
kevingpo11-Jan-06 0:43 
AnswerRe: Source code comment line removal Pin
KaptinKrunch11-Jan-06 2:57
KaptinKrunch11-Jan-06 2:57 
I can't see this being all that hard to make.
I'd do something like...

If (System.IO.File.Exists(filepath)) Then
Dim sr As New System.IO.StreamReader(filepath)
Dim line, output As String

output = String.Empty
Dim c() As Char
Do
line = sr.ReadLine()
c = line.ToCharArray()
Select Case (c(0))

Case "<"
'This section will be hit the hardest as most tags begin with the less than symbol
'Look at the next position
If (String.Compare(c(1), "!") = 0) Then
'The -1)
Else
Console.WriteLine("File not found.")
End If

Thats an idea anyway, of course you will have to write the output to a file.
Questioninitialize variable type Pin
Marc Soleda11-Jan-06 0:24
Marc Soleda11-Jan-06 0:24 
AnswerRe: initialize variable type Pin
Dave Kreskowiak11-Jan-06 2:27
mveDave Kreskowiak11-Jan-06 2:27 
GeneralRe: initialize variable type Pin
Marc Soleda11-Jan-06 5:37
Marc Soleda11-Jan-06 5:37 
QuestionMemory Leakage Pin
mayandi11-Jan-06 0:13
mayandi11-Jan-06 0:13 
AnswerRe: Memory Leakage Pin
Colin Angus Mackay11-Jan-06 0:16
Colin Angus Mackay11-Jan-06 0:16 
AnswerRe: Memory Leakage Pin
Steve Pullan11-Jan-06 0:17
Steve Pullan11-Jan-06 0:17 
QuestionPass a VB Module to a Excel Workbook and run procedures Pin
TheKriminal10-Jan-06 23:45
TheKriminal10-Jan-06 23:45 
QuestionConnecting to Access using VB.Net Pin
mayhem_rules10-Jan-06 22:19
mayhem_rules10-Jan-06 22:19 
AnswerRe: Connecting to Access using VB.Net Pin
mr_debasishdas10-Jan-06 23:29
mr_debasishdas10-Jan-06 23:29 
Questionhow to send text to another machine Pin
Paritos10-Jan-06 22:13
Paritos10-Jan-06 22:13 
AnswerRe: how to send text to another machine Pin
Briga11-Jan-06 0:00
Briga11-Jan-06 0:00 
QuestionVB.NET Application crashes Pin
melvis_vaz10-Jan-06 21:56
melvis_vaz10-Jan-06 21:56 
AnswerRe: VB.NET Application crashes Pin
Duncan Edwards Jones10-Jan-06 22:19
professionalDuncan Edwards Jones10-Jan-06 22:19 
AnswerRe: VB.NET Application crashes Pin
Steve Pullan10-Jan-06 22:23
Steve Pullan10-Jan-06 22:23 
GeneralRe: VB.NET Application crashes Pin
melvis_vaz10-Jan-06 22:35
melvis_vaz10-Jan-06 22:35 
GeneralRe: VB.NET Application crashes Pin
Guffa10-Jan-06 22:53
Guffa10-Jan-06 22:53 
GeneralRe: VB.NET Application crashes Pin
melvis_vaz10-Jan-06 23:23
melvis_vaz10-Jan-06 23:23 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.