Microsoft
Software
Hardware
Network
Question : Returning Parts of String Variables in VB
I’m really new to Visual Basic and can’t find a particular string function. In Pascal, if I wanted to test the first three characters of a string, I could use the Copy command as follows:
AString:='Washington';
BString:=Copy(AString,1,3)
;
In this example, BString would be “Was” because the Copy function as used in the example returns three characters of AString starting at character position 1.
Is there a similar function in VB that I can use to return parts of strings?
Answer : Returning Parts of String Variables in VB
Or, more flexibly:
Bstring = Mid(Astring, 1, 3)
Random Solutions
Create chart that ignores zero values
SAS or SATA
I can't find the audio driver for a Satellite P30
Remove Columns from CSV file, save results to new file
how to find date when Win7 Home was installed
Anyone knows what this fruit is called in english and if I can buy it in the USA somewhere even online
using setTimeout with window.opener.location.rel
oad();
Validate/Verify US zip codes
Anti-Spam Plugin (Outlook 2007)
DB2 Equivalent of Brackets in Access