|
-
Jul 24th, 2003, 10:10 AM
#1
Thread Starter
Sleep mode
VB.NET equivalent??[Resolved]
What is the .NET version that accept two param as (string , integer) and does the same job .
VB Code:
Dim sBuffer As String
sBuffer = VB.Left(sBuffer, lNullPos - 1)
Last edited by Pirate; Jul 24th, 2003 at 10:33 AM.
-
Jul 24th, 2003, 10:19 AM
#2
i dont quite follow if you want the Left equivalent , but here's an example ( you use SubString in .net rather than Left )
VB Code:
Dim sBuffer As String = "some text".Substring(0, 4)
MessageBox.Show(sBuffer)
~
if a post is resolved, please mark it as [Resolved]
protected string get_Signature(){return Censored;}
[vbcode][php] please use code tags when posting any code [/php][/vbcode]
-
Jul 24th, 2003, 10:32 AM
#3
Thread Starter
Sleep mode
Thank You .
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
|