I am a little confused however.
You posted to the VB group, but don't want to include the Microsoft.VisualBasic
dll?
You really can't do anything without that.
If you are running the IDE with a VB project open, that is automatically
referenced, and won't even appear in the references.
Are you confusing this dll with the Compatibility dll?
Gerald
"Nikhil Patel" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> CableWizard,
> Thanks. It worked.
>
> "Cablewizard" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
> > You fail to mention the Text Encoding used, so I will assume the Integer
> in
> > question already represents ASCII.
> > Here is just a couple of the available methods, there are more depending
> upon
> > encoding.
> >
> > Dim intChar As Integer = 65 'ASCII "A"
> > Dim c As Char
> >
> > c = Chr(intChar)
> > c = Convert.ToChar(intChar)
> >
> > Gerald
> >
> > "Nikhil Patel" <(E-Mail Removed)> wrote in message
> > news:(E-Mail Removed)...
> > > Hi all,
> > > How can I convert an integer to its equivalent ascii character
> without
> > > using Microsoft.VisualBasic dll or any other dll(I want to reference
> only
> > > System.dll).
> > >
> > > Thanks.
> > >
> > > -Nikhil
> > >
> > >
> >
> >
>
>
|