Click here to Skip to main content
16,015,097 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Programmatic Calendar Control Pin
Dave Kreskowiak3-May-04 2:13
mveDave Kreskowiak3-May-04 2:13 
GeneralVB COM DLL doesn't allow to update data from database using ADO Pin
vertigo_one1-May-04 14:53
vertigo_one1-May-04 14:53 
GeneralRe: VB COM DLL doesn't allow to update data from database using ADO Pin
Hesham Amin1-May-04 20:45
Hesham Amin1-May-04 20:45 
GeneralRe: VB COM DLL doesn't allow to update data from database using ADO Pin
vertigo_one1-May-04 20:58
vertigo_one1-May-04 20:58 
QuestionGrabbing each character of a string, how? Pin
ScarberryProd1-May-04 6:26
ScarberryProd1-May-04 6:26 
AnswerRe: Grabbing each character of a string, how? Pin
Hesham Amin1-May-04 6:36
Hesham Amin1-May-04 6:36 
GeneralRe: Grabbing each character of a string, how? Pin
ScarberryProd1-May-04 7:05
ScarberryProd1-May-04 7:05 
AnswerRe: Grabbing each character of a string, how? Pin
Jeff Varszegi1-May-04 7:07
professionalJeff Varszegi1-May-04 7:07 
You can also get them easily using the Chars property:

<br />
        Dim s As String<br />
        Dim i As Integer<br />
<br />
        s = "one for the toad"<br />
        For i = 0 To (s.Length - 1)<br />
            Console.WriteLine(s.Chars(i))<br />
        Next<br />


Note that most of the properties, etc. dealing with arrays in the BCL use zero-based indexing. It can be confusing switching back and forth between zero- and one-based indexing.

[EDIT] I misunderstood, and assumed the question was for VB .NET . I apologize. Back to the C# forums for this geek. [/EDIT]


Regards,

Jeff Varszegi

EEEP!  An Extensible Expression Evaluation Package
GeneralPicture box draw commands? and text in a picture box? how Pin
ScarberryProd1-May-04 6:19
ScarberryProd1-May-04 6:19 
GeneralRe: Picture box draw commands? and text in a picture box? how Pin
Dave Kreskowiak1-May-04 12:46
mveDave Kreskowiak1-May-04 12:46 
GeneralRe: Picture box draw commands? and text in a picture box? how Pin
ScarberryProd1-May-04 12:47
ScarberryProd1-May-04 12:47 
GeneralRe: Picture box draw commands? and text in a picture box? how Pin
Dave Kreskowiak2-May-04 4:30
mveDave Kreskowiak2-May-04 4:30 
Generalprinting forms and picture boxes Pin
ScarberryProd1-May-04 6:15
ScarberryProd1-May-04 6:15 
QuestionAre dimensional arrays possible? how? Pin
ScarberryProd1-May-04 6:14
ScarberryProd1-May-04 6:14 
AnswerRe: Are dimensional arrays possible? how? Pin
Dave Kreskowiak1-May-04 12:41
mveDave Kreskowiak1-May-04 12:41 
GeneralRe: Are dimensional arrays possible? how? Pin
ScarberryProd1-May-04 12:48
ScarberryProd1-May-04 12:48 
GeneralDynamic Querystring in repeater template Pin
1-May-04 1:00
suss1-May-04 1:00 
Questionhow shall i design a TSR application Pin
NewtonOfComputers1-May-04 0:56
NewtonOfComputers1-May-04 0:56 
AnswerRe: how shall i design a TSR application Pin
Dave Kreskowiak1-May-04 3:18
mveDave Kreskowiak1-May-04 3:18 
Questionhow shall i send the picture information across the network Pin
NewtonOfComputers1-May-04 0:54
NewtonOfComputers1-May-04 0:54 
Questionhow shall i design Remote Administrtion application Pin
NewtonOfComputers1-May-04 0:51
NewtonOfComputers1-May-04 0:51 
AnswerRe: how shall i design Remote Administrtion application Pin
Dave Kreskowiak1-May-04 3:19
mveDave Kreskowiak1-May-04 3:19 
GeneralRe: how shall i design Remote Administrtion application Pin
NewtonOfComputers2-May-04 22:16
NewtonOfComputers2-May-04 22:16 
GeneralRe: how shall i design Remote Administrtion application Pin
Dave Kreskowiak3-May-04 2:38
mveDave Kreskowiak3-May-04 2:38 
GeneralHelp... limiting rows in MSACCESS for VB Pin
gen2330-Apr-04 23:25
gen2330-Apr-04 23:25 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.