Dim arr(2,2) As String
arr(0,0) = "A"
arr(0,1) = "B"
arr(0,2) = "C"
arr(1,0) = "A"
arr(1,1) = "B"
arr(1,2) = "C"
arr(2,0) = "A"
arr(2,1) = "B"
arr(2,2) = "C"
For _i As Integer = 0 To 2
For _j As Integer = 0 To 2
For _k As Integer = 0 To 2
Console.Writeline(arr(_i,_i) & arr(_i,_j) & arr(_i,_k))
Next
Next
Next
> Hi,
> Need help to permutate all the posible combination of string for example
[quoted text clipped - 7 lines]
>
> Thanks.
Nick Malik [Microsoft] - 14 Aug 2005 18:16 GMT
Hi Stephany,
On this and similar forums, it is seen as bad form to answer homework
questions. Let's try to avoid doing that, OK?

Signature
--- Nick Malik [Microsoft]
MCSD, CFPS, Certified Scrummaster
http://blogs.msdn.com/nickmalik
Disclaimer: Opinions expressed in this forum are my own, and not
representative of my employer.
I do not answer questions on behalf of my employer. I'm just a
programmer helping programmers.
--
> Dim arr(2,2) As String
>
[quoted text clipped - 27 lines]
>>
>> Thanks.