Click here to Skip to main content
       

Visual Basic

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page  Show 
AnswerRe: VB6 Won't Install On Windows 7 Pro x64memberMike Deeks2-Jul-12 0:17 
QuestionGeo fix latitude longitude with VB6? for Googlemapsmemberkhardani30-Jun-12 14:11 
AnswerRe: Geo fix latitude longitude with VB6? for GooglemapsmvpRichard MacCutchan30-Jun-12 21:30 
Generalchar detection, for char replacement or formattingmemberjkirkerx30-Jun-12 8:27 
GeneralRe: char detection, for char replacement or formattingmvpLuc Pattyn30-Jun-12 9:12 
GeneralRe: char detection, for char replacement or formattingmemberjkirkerx30-Jun-12 19:09 
GeneralRe: char detection, for char replacement or formattingmemberjkirkerx2-Jul-12 11:28 
[DONE]
 
Well, more like it works, and does exactly what I need for the moment.
 
I ended up using the StringReader to read each char 1 at a time, and used Chr(9) to detect the tab char.
Do While (True)
   integerRead = charReader.Read()
   If (integerRead = -1) Then
      Exit Do
   End If
 
   characterRead = Convert.ToChar(integerRead)
   If (characterRead = Chr(9)) Then
      htmlBuilder.Append("     ")
   Else
      htmlBuilder.Append(characterRead)
   End If
Loop

QuestionSending URL to an external web browsermemberTim Reece29-Jun-12 16:20 
AnswerRe: Sending URL to an external web browsermvpRichard MacCutchan29-Jun-12 21:19 
QuestionDLL QuestionmemberNo-e29-Jun-12 5:26 
GeneralRe: DLL QuestionmvpDave Kreskowiak29-Jun-12 6:48 
AnswerRe: DLL QuestionmvpLuc Pattyn29-Jun-12 7:12 
Questiontrojans?memberNo-e28-Jun-12 8:40 
AnswerRe: trojans?memberWes Aday28-Jun-12 10:35 
GeneralRe: trojans?mvpAbhinav S28-Jun-12 17:36 
AnswerRe: trojans?memberBernhard Hiller28-Jun-12 21:16 
GeneralRe: trojans?memberNo-e29-Jun-12 5:19 
QuestionEvent on Scrolling to the end in flowlayoutpanelmemberAmmar_Ahmad28-Jun-12 7:14 
AnswerRe: Event on Scrolling to the end in flowlayoutpanelmemberNick Otten29-Jun-12 1:06 
GeneralRe: Event on Scrolling to the end in flowlayoutpanelmemberAmmar_Ahmad29-Jun-12 1:44 
GeneralRe: Event on Scrolling to the end in flowlayoutpanelmemberNick Otten29-Jun-12 1:54 
GeneralRe: Event on Scrolling to the end in flowlayoutpanelmemberAmmar_Ahmad29-Jun-12 2:03 
GeneralRe: Event on Scrolling to the end in flowlayoutpanelmemberNick Otten29-Jun-12 2:54 
GeneralRe: Event on Scrolling to the end in flowlayoutpanelmemberAmmar_Ahmad29-Jun-12 8:27 
GeneralRe: Event on Scrolling to the end in flowlayoutpanel [modified]memberNick Otten1-Jul-12 21:37 

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


Advertise | Privacy | Mobile
Web03 | 2.6.130619.1 | Last Updated 19 Jun 2013
Copyright © CodeProject, 1999-2013
All Rights Reserved. Terms of Use
Layout: fixed | fluid