|
-
Apr 5th, 2004, 07:04 AM
#1
Thread Starter
Fanatic Member
Where have the chr(), asc() function gone
Does anyone know where the asc() and chr() functions have gone?
-
Apr 5th, 2004, 07:46 AM
#2
PowerPoster
Hi,
What makes you think they have gone anywhere? I can still use them in VB.NET 2003.
Taxes
The more I learn about VB.NET the more I like dBaseIII Plus
The foregoing, whilst believed to be correct, is given without guarantee as to it's accuracy and entirely without recourse. You are required to decide for yourself whether or not it is suitable for your purposes and no liability for loss of any nature can be entertained.
-
Apr 5th, 2004, 07:46 AM
#3
Code:
Imports Microsoft.VisualBasic
Module Module1
Sub Main()
Console.WriteLine(Strings.Asc("A"))
Console.ReadLine()
End Sub
End Module
Last edited by wossname; Apr 5th, 2004 at 07:58 AM.
I don't live here any more.
-
Apr 5th, 2004, 07:50 AM
#4
Thread Starter
Fanatic Member
Thanks wossname.
I could use them as asc("a") but that is vb6, to keep in with .NET I needed to find out where they had moved them to.
Daft as it is I kept typing in String. and wondered why intellesence was not coming up.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|