PC Review


Reply
Thread Tools Rate Thread

convert ToChar question

 
 
=?Utf-8?B?UGRvYw==?=
Guest
Posts: n/a
 
      9th Jun 2005
I am trying to use some special character. When I try to use the unicode
hexadecimal number to convert to the character I can only select from
Tahoma's character map and maybe a couple of others.

I thougt I read that CF supported all the fonts and you could use any
charcode to get special character. Am I mistaken?

Code looks like:

Dim sd As Integer = "&HFFFC"
Dim chrIndicator As Char = Convert.ToChar(sd)
lblIndicatorMode.Text = chrIndicator


 
Reply With Quote
 
 
 
 
Guest
Posts: n/a
 
      9th Jun 2005
What Font are you using to render it? Does it have the glyph in the
codepage?

-Chris


"Pdoc" <(E-Mail Removed)> wrote in message
news:F5FA8339-CD20-43BA-AE5E-(E-Mail Removed)...
> I am trying to use some special character. When I try to use the
> unicode
> hexadecimal number to convert to the character I can only select from
> Tahoma's character map and maybe a couple of others.
>
> I thougt I read that CF supported all the fonts and you could use any
> charcode to get special character. Am I mistaken?
>
> Code looks like:
>
> Dim sd As Integer = "&HFFFC"
> Dim chrIndicator As Char = Convert.ToChar(sd)
> lblIndicatorMode.Text = chrIndicator
>
>



 
Reply With Quote
 
=?Utf-8?B?UGRvYw==?=
Guest
Posts: n/a
 
      9th Jun 2005
I am trying to render glyphs from wingding. I am not sure if I have the font
set properly. I am trying to render it in a textbox or label. I set the
textbox font to wingding. That didn't help. It still seems to want to
render only from tahoma. Is there a different way to set this up?

"<ctacke/>" wrote:

> What Font are you using to render it? Does it have the glyph in the
> codepage?
>
> -Chris
>
>
> "Pdoc" <(E-Mail Removed)> wrote in message
> news:F5FA8339-CD20-43BA-AE5E-(E-Mail Removed)...
> > I am trying to use some special character. When I try to use the
> > unicode
> > hexadecimal number to convert to the character I can only select from
> > Tahoma's character map and maybe a couple of others.
> >
> > I thougt I read that CF supported all the fonts and you could use any
> > charcode to get special character. Am I mistaken?
> >
> > Code looks like:
> >
> > Dim sd As Integer = "&HFFFC"
> > Dim chrIndicator As Char = Convert.ToChar(sd)
> > lblIndicatorMode.Text = chrIndicator
> >
> >

>
>
>

 
Reply With Quote
 
Guest
Posts: n/a
 
      9th Jun 2005
Is the WingDing font on the device?

-Chris

"Pdoc" <(E-Mail Removed)> wrote in message
news:1080B1CB-BD3A-4080-9B17-(E-Mail Removed)...
>I am trying to render glyphs from wingding. I am not sure if I have the
>font
> set properly. I am trying to render it in a textbox or label. I set the
> textbox font to wingding. That didn't help. It still seems to want to
> render only from tahoma. Is there a different way to set this up?
>
> "<ctacke/>" wrote:
>
>> What Font are you using to render it? Does it have the glyph in the
>> codepage?
>>
>> -Chris
>>
>>
>> "Pdoc" <(E-Mail Removed)> wrote in message
>> news:F5FA8339-CD20-43BA-AE5E-(E-Mail Removed)...
>> > I am trying to use some special character. When I try to use the
>> > unicode
>> > hexadecimal number to convert to the character I can only select from
>> > Tahoma's character map and maybe a couple of others.
>> >
>> > I thougt I read that CF supported all the fonts and you could use
>> > any
>> > charcode to get special character. Am I mistaken?
>> >
>> > Code looks like:
>> >
>> > Dim sd As Integer = "&HFFFC"
>> > Dim chrIndicator As Char = Convert.ToChar(sd)
>> > lblIndicatorMode.Text = chrIndicator
>> >
>> >

>>
>>
>>



 
Reply With Quote
 
=?Utf-8?B?UGRvYw==?=
Guest
Posts: n/a
 
      9th Jun 2005
I don't know. And I don't know how to find out. It is a Pocket PC. I am
getting the feeling that using non standard symbols and fonts might not be
tha way to go. Basically I am trying to avoid using images on my buttons as
the performance seems dismal when switching between form.

I only need a couple of buttons with symbols so maybe I will just stick
with images on those and text on the rest. Thank you for all your help, if
you have any further ideas I'd still like to hear them. Thanks

Pat

"<ctacke/>" wrote:

> Is the WingDing font on the device?
>
> -Chris
>
> "Pdoc" <(E-Mail Removed)> wrote in message
> news:1080B1CB-BD3A-4080-9B17-(E-Mail Removed)...
> >I am trying to render glyphs from wingding. I am not sure if I have the
> >font
> > set properly. I am trying to render it in a textbox or label. I set the
> > textbox font to wingding. That didn't help. It still seems to want to
> > render only from tahoma. Is there a different way to set this up?
> >
> > "<ctacke/>" wrote:
> >
> >> What Font are you using to render it? Does it have the glyph in the
> >> codepage?
> >>
> >> -Chris
> >>
> >>
> >> "Pdoc" <(E-Mail Removed)> wrote in message
> >> news:F5FA8339-CD20-43BA-AE5E-(E-Mail Removed)...
> >> > I am trying to use some special character. When I try to use the
> >> > unicode
> >> > hexadecimal number to convert to the character I can only select from
> >> > Tahoma's character map and maybe a couple of others.
> >> >
> >> > I thougt I read that CF supported all the fonts and you could use
> >> > any
> >> > charcode to get special character. Am I mistaken?
> >> >
> >> > Code looks like:
> >> >
> >> > Dim sd As Integer = "&HFFFC"
> >> > Dim chrIndicator As Char = Convert.ToChar(sd)
> >> > lblIndicatorMode.Text = chrIndicator
> >> >
> >> >
> >>
> >>
> >>

>
>
>

 
Reply With Quote
 
=?Utf-8?B?UGRvYw==?=
Guest
Posts: n/a
 
      9th Jun 2005
I found the fonts folder. It is empty. I guess the device needs the correct
font installed. To make the program more universal(assuming the use of
nonstandard fonts) I am assuming the installation would have to check for
fonts installed and then deploy the fonts required. Does that sound correct?
Admittedly I am a lightweight at this but that sounds somewhat like a pain.
Are there any samples on this?



"Pdoc" wrote:

> I don't know. And I don't know how to find out. It is a Pocket PC. I am
> getting the feeling that using non standard symbols and fonts might not be
> tha way to go. Basically I am trying to avoid using images on my buttons as
> the performance seems dismal when switching between form.
>
> I only need a couple of buttons with symbols so maybe I will just stick
> with images on those and text on the rest. Thank you for all your help, if
> you have any further ideas I'd still like to hear them. Thanks
>
> Pat
>
> "<ctacke/>" wrote:
>
> > Is the WingDing font on the device?
> >
> > -Chris
> >
> > "Pdoc" <(E-Mail Removed)> wrote in message
> > news:1080B1CB-BD3A-4080-9B17-(E-Mail Removed)...
> > >I am trying to render glyphs from wingding. I am not sure if I have the
> > >font
> > > set properly. I am trying to render it in a textbox or label. I set the
> > > textbox font to wingding. That didn't help. It still seems to want to
> > > render only from tahoma. Is there a different way to set this up?
> > >
> > > "<ctacke/>" wrote:
> > >
> > >> What Font are you using to render it? Does it have the glyph in the
> > >> codepage?
> > >>
> > >> -Chris
> > >>
> > >>
> > >> "Pdoc" <(E-Mail Removed)> wrote in message
> > >> news:F5FA8339-CD20-43BA-AE5E-(E-Mail Removed)...
> > >> > I am trying to use some special character. When I try to use the
> > >> > unicode
> > >> > hexadecimal number to convert to the character I can only select from
> > >> > Tahoma's character map and maybe a couple of others.
> > >> >
> > >> > I thougt I read that CF supported all the fonts and you could use
> > >> > any
> > >> > charcode to get special character. Am I mistaken?
> > >> >
> > >> > Code looks like:
> > >> >
> > >> > Dim sd As Integer = "&HFFFC"
> > >> > Dim chrIndicator As Char = Convert.ToChar(sd)
> > >> > lblIndicatorMode.Text = chrIndicator
> > >> >
> > >> >
> > >>
> > >>
> > >>

> >
> >
> >

 
Reply With Quote
 
Paul G. Tobey [eMVP]
Guest
Posts: n/a
 
      9th Jun 2005
Make sure that Explorer is configured to show everything. Even if it is, it
doesn't show *everything*, so you might want to use the Remote File Viewer
(from eVC), to check the contents of both the \Windows folder and the fonts
folder.

Paul T.

"Pdoc" <(E-Mail Removed)> wrote in message
news:496B0365-A719-4611-9E72-(E-Mail Removed)...
>I found the fonts folder. It is empty. I guess the device needs the
>correct
> font installed. To make the program more universal(assuming the use of
> nonstandard fonts) I am assuming the installation would have to check for
> fonts installed and then deploy the fonts required. Does that sound
> correct?
> Admittedly I am a lightweight at this but that sounds somewhat like a
> pain.
> Are there any samples on this?
>
>
>
> "Pdoc" wrote:
>
>> I don't know. And I don't know how to find out. It is a Pocket PC.
>> I am
>> getting the feeling that using non standard symbols and fonts might not
>> be
>> tha way to go. Basically I am trying to avoid using images on my buttons
>> as
>> the performance seems dismal when switching between form.
>>
>> I only need a couple of buttons with symbols so maybe I will just stick
>> with images on those and text on the rest. Thank you for all your help,
>> if
>> you have any further ideas I'd still like to hear them. Thanks
>>
>> Pat
>>
>> "<ctacke/>" wrote:
>>
>> > Is the WingDing font on the device?
>> >
>> > -Chris
>> >
>> > "Pdoc" <(E-Mail Removed)> wrote in message
>> > news:1080B1CB-BD3A-4080-9B17-(E-Mail Removed)...
>> > >I am trying to render glyphs from wingding. I am not sure if I have
>> > >the
>> > >font
>> > > set properly. I am trying to render it in a textbox or label. I set
>> > > the
>> > > textbox font to wingding. That didn't help. It still seems to want
>> > > to
>> > > render only from tahoma. Is there a different way to set this up?
>> > >
>> > > "<ctacke/>" wrote:
>> > >
>> > >> What Font are you using to render it? Does it have the glyph in the
>> > >> codepage?
>> > >>
>> > >> -Chris
>> > >>
>> > >>
>> > >> "Pdoc" <(E-Mail Removed)> wrote in message
>> > >> news:F5FA8339-CD20-43BA-AE5E-(E-Mail Removed)...
>> > >> > I am trying to use some special character. When I try to use
>> > >> > the
>> > >> > unicode
>> > >> > hexadecimal number to convert to the character I can only select
>> > >> > from
>> > >> > Tahoma's character map and maybe a couple of others.
>> > >> >
>> > >> > I thougt I read that CF supported all the fonts and you could
>> > >> > use
>> > >> > any
>> > >> > charcode to get special character. Am I mistaken?
>> > >> >
>> > >> > Code looks like:
>> > >> >
>> > >> > Dim sd As Integer = "&HFFFC"
>> > >> > Dim chrIndicator As Char = Convert.ToChar(sd)
>> > >> > lblIndicatorMode.Text = chrIndicator
>> > >> >
>> > >> >
>> > >>
>> > >>
>> > >>
>> >
>> >
>> >



 
Reply With Quote
 
Chris Tacke, eMVP
Guest
Posts: n/a
 
      9th Jun 2005
Don't forget that Fonts are not freely distributable either. They must be
licensed.

--
Chris Tacke
Co-founder
OpenNETCF.org
Has OpenNETCF helped you? Consider donating to support us!
http://www.opennetcf.org/donate


"Paul G. Tobey [eMVP]" <ptobey no spam AT no instrument no spam DOT com>
wrote in message news:(E-Mail Removed)...
> Make sure that Explorer is configured to show everything. Even if it is,
> it doesn't show *everything*, so you might want to use the Remote File
> Viewer (from eVC), to check the contents of both the \Windows folder and
> the fonts folder.
>
> Paul T.
>
> "Pdoc" <(E-Mail Removed)> wrote in message
> news:496B0365-A719-4611-9E72-(E-Mail Removed)...
>>I found the fonts folder. It is empty. I guess the device needs the
>>correct
>> font installed. To make the program more universal(assuming the use of
>> nonstandard fonts) I am assuming the installation would have to check for
>> fonts installed and then deploy the fonts required. Does that sound
>> correct?
>> Admittedly I am a lightweight at this but that sounds somewhat like a
>> pain.
>> Are there any samples on this?
>>
>>
>>
>> "Pdoc" wrote:
>>
>>> I don't know. And I don't know how to find out. It is a Pocket PC.
>>> I am
>>> getting the feeling that using non standard symbols and fonts might not
>>> be
>>> tha way to go. Basically I am trying to avoid using images on my
>>> buttons as
>>> the performance seems dismal when switching between form.
>>>
>>> I only need a couple of buttons with symbols so maybe I will just
>>> stick
>>> with images on those and text on the rest. Thank you for all your help,
>>> if
>>> you have any further ideas I'd still like to hear them. Thanks
>>>
>>> Pat
>>>
>>> "<ctacke/>" wrote:
>>>
>>> > Is the WingDing font on the device?
>>> >
>>> > -Chris
>>> >
>>> > "Pdoc" <(E-Mail Removed)> wrote in message
>>> > news:1080B1CB-BD3A-4080-9B17-(E-Mail Removed)...
>>> > >I am trying to render glyphs from wingding. I am not sure if I have
>>> > >the
>>> > >font
>>> > > set properly. I am trying to render it in a textbox or label. I
>>> > > set the
>>> > > textbox font to wingding. That didn't help. It still seems to want
>>> > > to
>>> > > render only from tahoma. Is there a different way to set this up?
>>> > >
>>> > > "<ctacke/>" wrote:
>>> > >
>>> > >> What Font are you using to render it? Does it have the glyph in
>>> > >> the
>>> > >> codepage?
>>> > >>
>>> > >> -Chris
>>> > >>
>>> > >>
>>> > >> "Pdoc" <(E-Mail Removed)> wrote in message
>>> > >> news:F5FA8339-CD20-43BA-AE5E-(E-Mail Removed)...
>>> > >> > I am trying to use some special character. When I try to use
>>> > >> > the
>>> > >> > unicode
>>> > >> > hexadecimal number to convert to the character I can only select
>>> > >> > from
>>> > >> > Tahoma's character map and maybe a couple of others.
>>> > >> >
>>> > >> > I thougt I read that CF supported all the fonts and you could
>>> > >> > use
>>> > >> > any
>>> > >> > charcode to get special character. Am I mistaken?
>>> > >> >
>>> > >> > Code looks like:
>>> > >> >
>>> > >> > Dim sd As Integer = "&HFFFC"
>>> > >> > Dim chrIndicator As Char = Convert.ToChar(sd)
>>> > >> > lblIndicatorMode.Text = chrIndicator
>>> > >> >
>>> > >> >
>>> > >>
>>> > >>
>>> > >>
>>> >
>>> >
>>> >

>
>



 
Reply With Quote
 
=?Utf-8?B?UGRvYw==?=
Guest
Posts: n/a
 
      9th Jun 2005
Thanks Guys, I got...and it is not a big task as I appeared at first.

Ok, the licenseing statement got me... I hadn't thought of that. I take it
some fonts must be freely distributable or if the user installs them it would
be acceptable? Do you have a link on the details? I am only looking to use
simple arrows, certainly there must be free arrows.

Thank again




"Chris Tacke, eMVP" wrote:

> Don't forget that Fonts are not freely distributable either. They must be
> licensed.
>
> --
> Chris Tacke
> Co-founder
> OpenNETCF.org
> Has OpenNETCF helped you? Consider donating to support us!
> http://www.opennetcf.org/donate
>
>
> "Paul G. Tobey [eMVP]" <ptobey no spam AT no instrument no spam DOT com>
> wrote in message news:(E-Mail Removed)...
> > Make sure that Explorer is configured to show everything. Even if it is,
> > it doesn't show *everything*, so you might want to use the Remote File
> > Viewer (from eVC), to check the contents of both the \Windows folder and
> > the fonts folder.
> >
> > Paul T.
> >
> > "Pdoc" <(E-Mail Removed)> wrote in message
> > news:496B0365-A719-4611-9E72-(E-Mail Removed)...
> >>I found the fonts folder. It is empty. I guess the device needs the
> >>correct
> >> font installed. To make the program more universal(assuming the use of
> >> nonstandard fonts) I am assuming the installation would have to check for
> >> fonts installed and then deploy the fonts required. Does that sound
> >> correct?
> >> Admittedly I am a lightweight at this but that sounds somewhat like a
> >> pain.
> >> Are there any samples on this?
> >>
> >>
> >>
> >> "Pdoc" wrote:
> >>
> >>> I don't know. And I don't know how to find out. It is a Pocket PC.
> >>> I am
> >>> getting the feeling that using non standard symbols and fonts might not
> >>> be
> >>> tha way to go. Basically I am trying to avoid using images on my
> >>> buttons as
> >>> the performance seems dismal when switching between form.
> >>>
> >>> I only need a couple of buttons with symbols so maybe I will just
> >>> stick
> >>> with images on those and text on the rest. Thank you for all your help,
> >>> if
> >>> you have any further ideas I'd still like to hear them. Thanks
> >>>
> >>> Pat
> >>>
> >>> "<ctacke/>" wrote:
> >>>
> >>> > Is the WingDing font on the device?
> >>> >
> >>> > -Chris
> >>> >
> >>> > "Pdoc" <(E-Mail Removed)> wrote in message
> >>> > news:1080B1CB-BD3A-4080-9B17-(E-Mail Removed)...
> >>> > >I am trying to render glyphs from wingding. I am not sure if I have
> >>> > >the
> >>> > >font
> >>> > > set properly. I am trying to render it in a textbox or label. I
> >>> > > set the
> >>> > > textbox font to wingding. That didn't help. It still seems to want
> >>> > > to
> >>> > > render only from tahoma. Is there a different way to set this up?
> >>> > >
> >>> > > "<ctacke/>" wrote:
> >>> > >
> >>> > >> What Font are you using to render it? Does it have the glyph in
> >>> > >> the
> >>> > >> codepage?
> >>> > >>
> >>> > >> -Chris
> >>> > >>
> >>> > >>
> >>> > >> "Pdoc" <(E-Mail Removed)> wrote in message
> >>> > >> news:F5FA8339-CD20-43BA-AE5E-(E-Mail Removed)...
> >>> > >> > I am trying to use some special character. When I try to use
> >>> > >> > the
> >>> > >> > unicode
> >>> > >> > hexadecimal number to convert to the character I can only select
> >>> > >> > from
> >>> > >> > Tahoma's character map and maybe a couple of others.
> >>> > >> >
> >>> > >> > I thougt I read that CF supported all the fonts and you could
> >>> > >> > use
> >>> > >> > any
> >>> > >> > charcode to get special character. Am I mistaken?
> >>> > >> >
> >>> > >> > Code looks like:
> >>> > >> >
> >>> > >> > Dim sd As Integer = "&HFFFC"
> >>> > >> > Dim chrIndicator As Char = Convert.ToChar(sd)
> >>> > >> > lblIndicatorMode.Text = chrIndicator
> >>> > >> >
> >>> > >> >
> >>> > >>
> >>> > >>
> >>> > >>
> >>> >
> >>> >
> >>> >

> >
> >

>
>
>

 
Reply With Quote
 
Paul G. Tobey [eMVP]
Guest
Posts: n/a
 
      9th Jun 2005
There are few. You can imagine the amount of effort a typographer would
take to figure out the spline(s) that defines the outline of a lower case
'g', or whatever. A complete font with Latin characters is the equivalent
of a fairly sizable program for a software guy. You should make sure,
before you go looking for free fonts that there isn't an appropriate
character in what's already in the device. I think that you should be able
to temporarily download the .ttf file from the device to your PC for viewing
with, say, the Character Map accessory. I don't see arrows in Tahoma, but
maybe one of the others will give you better luck.

Paul T.

"Pdoc" <(E-Mail Removed)> wrote in message
news:BCF1823F-F499-404B-8C7D-(E-Mail Removed)...
> Thanks Guys, I got...and it is not a big task as I appeared at first.
>
> Ok, the licenseing statement got me... I hadn't thought of that. I take
> it
> some fonts must be freely distributable or if the user installs them it
> would
> be acceptable? Do you have a link on the details? I am only looking to
> use
> simple arrows, certainly there must be free arrows.
>
> Thank again
>
>
>
>
> "Chris Tacke, eMVP" wrote:
>
>> Don't forget that Fonts are not freely distributable either. They must
>> be
>> licensed.
>>
>> --
>> Chris Tacke
>> Co-founder
>> OpenNETCF.org
>> Has OpenNETCF helped you? Consider donating to support us!
>> http://www.opennetcf.org/donate
>>
>>
>> "Paul G. Tobey [eMVP]" <ptobey no spam AT no instrument no spam DOT com>
>> wrote in message news:(E-Mail Removed)...
>> > Make sure that Explorer is configured to show everything. Even if it
>> > is,
>> > it doesn't show *everything*, so you might want to use the Remote File
>> > Viewer (from eVC), to check the contents of both the \Windows folder
>> > and
>> > the fonts folder.
>> >
>> > Paul T.
>> >
>> > "Pdoc" <(E-Mail Removed)> wrote in message
>> > news:496B0365-A719-4611-9E72-(E-Mail Removed)...
>> >>I found the fonts folder. It is empty. I guess the device needs the
>> >>correct
>> >> font installed. To make the program more universal(assuming the use
>> >> of
>> >> nonstandard fonts) I am assuming the installation would have to check
>> >> for
>> >> fonts installed and then deploy the fonts required. Does that sound
>> >> correct?
>> >> Admittedly I am a lightweight at this but that sounds somewhat like a
>> >> pain.
>> >> Are there any samples on this?
>> >>
>> >>
>> >>
>> >> "Pdoc" wrote:
>> >>
>> >>> I don't know. And I don't know how to find out. It is a Pocket
>> >>> PC.
>> >>> I am
>> >>> getting the feeling that using non standard symbols and fonts might
>> >>> not
>> >>> be
>> >>> tha way to go. Basically I am trying to avoid using images on my
>> >>> buttons as
>> >>> the performance seems dismal when switching between form.
>> >>>
>> >>> I only need a couple of buttons with symbols so maybe I will just
>> >>> stick
>> >>> with images on those and text on the rest. Thank you for all your
>> >>> help,
>> >>> if
>> >>> you have any further ideas I'd still like to hear them. Thanks
>> >>>
>> >>> Pat
>> >>>
>> >>> "<ctacke/>" wrote:
>> >>>
>> >>> > Is the WingDing font on the device?
>> >>> >
>> >>> > -Chris
>> >>> >
>> >>> > "Pdoc" <(E-Mail Removed)> wrote in message
>> >>> > news:1080B1CB-BD3A-4080-9B17-(E-Mail Removed)...
>> >>> > >I am trying to render glyphs from wingding. I am not sure if I
>> >>> > >have
>> >>> > >the
>> >>> > >font
>> >>> > > set properly. I am trying to render it in a textbox or label. I
>> >>> > > set the
>> >>> > > textbox font to wingding. That didn't help. It still seems to
>> >>> > > want
>> >>> > > to
>> >>> > > render only from tahoma. Is there a different way to set this
>> >>> > > up?
>> >>> > >
>> >>> > > "<ctacke/>" wrote:
>> >>> > >
>> >>> > >> What Font are you using to render it? Does it have the glyph in
>> >>> > >> the
>> >>> > >> codepage?
>> >>> > >>
>> >>> > >> -Chris
>> >>> > >>
>> >>> > >>
>> >>> > >> "Pdoc" <(E-Mail Removed)> wrote in message
>> >>> > >> news:F5FA8339-CD20-43BA-AE5E-(E-Mail Removed)...
>> >>> > >> > I am trying to use some special character. When I try to
>> >>> > >> > use
>> >>> > >> > the
>> >>> > >> > unicode
>> >>> > >> > hexadecimal number to convert to the character I can only
>> >>> > >> > select
>> >>> > >> > from
>> >>> > >> > Tahoma's character map and maybe a couple of others.
>> >>> > >> >
>> >>> > >> > I thougt I read that CF supported all the fonts and you
>> >>> > >> > could
>> >>> > >> > use
>> >>> > >> > any
>> >>> > >> > charcode to get special character. Am I mistaken?
>> >>> > >> >
>> >>> > >> > Code looks like:
>> >>> > >> >
>> >>> > >> > Dim sd As Integer = "&HFFFC"
>> >>> > >> > Dim chrIndicator As Char = Convert.ToChar(sd)
>> >>> > >> > lblIndicatorMode.Text = chrIndicator
>> >>> > >> >
>> >>> > >> >
>> >>> > >>
>> >>> > >>
>> >>> > >>
>> >>> >
>> >>> >
>> >>> >
>> >
>> >

>>
>>
>>



 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
C# Convert question. =?Utf-8?B?V2ViQnVpbGRlcjQ1MQ==?= Microsoft ASP .NET 4 29th Aug 2007 05:42 PM
Serialport.write(Convert.ToChar()) Error =?Utf-8?B?RyB2ZW5rYXRlc2g=?= Microsoft Dot NET Framework 0 24th Sep 2005 02:59 PM
ToChar of strange values PHead Microsoft C# .NET 1 28th Aug 2005 01:42 AM
Convert to VB question Jon Microsoft VB .NET 3 30th Dec 2004 01:29 PM
Convert VB.Net to C# Question =?Utf-8?B?QnJ1bm8gUm9kcmlndWVz?= Microsoft VB .NET 2 11th Dec 2004 11:31 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 11:21 AM.