Click here to Skip to main content
15,905,913 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: how to find applications running in system tray and close it ? Pin
Dave Kreskowiak10-Jun-04 3:12
mveDave Kreskowiak10-Jun-04 3:12 
Generalhyperlink text as content in outlookexpress Pin
skoizumi291109-Jun-04 13:16
sussskoizumi291109-Jun-04 13:16 
GeneralEscape Char Pin
Jon G9-Jun-04 8:37
Jon G9-Jun-04 8:37 
GeneralRe: Escape Char Pin
Dave Kreskowiak9-Jun-04 8:51
mveDave Kreskowiak9-Jun-04 8:51 
GeneralRe: Escape Char Pin
Aaron Eldreth9-Jun-04 13:23
Aaron Eldreth9-Jun-04 13:23 
GeneralRe: Escape Char Pin
Dave Kreskowiak9-Jun-04 15:15
mveDave Kreskowiak9-Jun-04 15:15 
GeneralRe: Escape Char Pin
Jon G10-Jun-04 1:15
Jon G10-Jun-04 1:15 
GeneralRe: Escape Char Pin
Dave Kreskowiak10-Jun-04 3:04
mveDave Kreskowiak10-Jun-04 3:04 
This is taken straight out of the MSDN documentation:

Public Function Chr(ByVal CharCode As Integer) As Char
Public Function ChrW(ByVal CharCode As Integer) As Char

Chr uses the Encoding class in the System.Text namespace to determine if the current thread is using a single-byte character set (SBCS) or a double-byte character set (DBCS). It then takes CharCode as a code point in the appropriate set. The range can be 0 through 255 for SBCS characters and -32768 through 65535 for DBCS characters. The returned character depends on the code page for the current thread, which is contained in the ANSICodePage property of the TextInfo class. TextInfo.ANSICodePage can be obtained by specifying System.Globalization.CultureInfo.CurrentCulture.TextInfo.ANSICodePage.

ChrW takes CharCode as a Unicode code point. The range is independent of the culture and code page settings for the current thread. Values from -32768 through -1 are treated the same as values in the range +32768 through +65535.

Numbers from 0 through 31 are the same as standard, nonprintable ASCII codes. For example, Chr(10) returns a linefeed character.


RageInTheMachine9532
"...a pungent, ghastly, stinky piece of cheese!" -- The Roaming Gnome

Question<![CDATA[NULL]]>is parsable? Pin
skoizumi291109-Jun-04 6:47
sussskoizumi291109-Jun-04 6:47 
AnswerRe: <![CDATA[NULL]]>is parsable? Pin
Dave Kreskowiak9-Jun-04 8:50
mveDave Kreskowiak9-Jun-04 8:50 
GeneralRe: <![CDATA[NULL]]>is parsable? Pin
vancouver7779-Jun-04 13:06
vancouver7779-Jun-04 13:06 
QuestionHow to get computer id? Pin
viettho9-Jun-04 5:37
viettho9-Jun-04 5:37 
AnswerRe: How to get computer id? Pin
Dave Kreskowiak9-Jun-04 6:45
mveDave Kreskowiak9-Jun-04 6:45 
GeneralProgress bar and dataadapter fill Pin
jshofner9-Jun-04 1:56
jshofner9-Jun-04 1:56 
GeneralRe: Progress bar and dataadapter fill Pin
Dave Kreskowiak9-Jun-04 6:43
mveDave Kreskowiak9-Jun-04 6:43 
GeneralWhy onpaint doesn't work in numericupdown Pin
beifangcc8-Jun-04 23:39
beifangcc8-Jun-04 23:39 
GeneralRe: Why onpaint doesn't work in numericupdown Pin
Aaron Eldreth9-Jun-04 3:02
Aaron Eldreth9-Jun-04 3:02 
GeneralRe: Why onpaint doesn't work in numericupdown Pin
beifangcc9-Jun-04 17:30
beifangcc9-Jun-04 17:30 
GeneralRe: Why onpaint doesn't work in numericupdown Pin
10-Jun-04 4:16
suss
10-Jun-04 4:16 
GeneralRe: Why onpaint doesn't work in numericupdown Pin
beifangcc10-Jun-04 15:55
beifangcc10-Jun-04 15:55 
GeneralRe: Why onpaint doesn't work in numericupdown Pin
Aaron Eldreth11-Jun-04 3:20
Aaron Eldreth11-Jun-04 3:20 
GeneralDropdownlist Pin
dotnet_cpp8-Jun-04 19:50
dotnet_cpp8-Jun-04 19:50 
GeneralRe: Dropdownlist Pin
Dave Kreskowiak9-Jun-04 0:07
mveDave Kreskowiak9-Jun-04 0:07 
Generalgetting listbox contents.. Pin
JasonRey8-Jun-04 16:54
JasonRey8-Jun-04 16:54 
GeneralRe: getting listbox contents.. Pin
Dave Kreskowiak9-Jun-04 6:57
mveDave Kreskowiak9-Jun-04 6:57 

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.