eastwind19 Posted January 10, 2004 Posted January 10, 2004 Need help to dim fmtstr when the number of elements is a inputed variable. Quote
Moderators Robby Posted January 10, 2004 Moderators Posted January 10, 2004 Can you provide some details. Quote Visit...Bassic Software
eastwind19 Posted January 11, 2004 Author Posted January 11, 2004 example Dim fmtstr as string ="{0,2}{1,2}........" the first number is a variable example ....String= "[x,3}{.... Quote
Administrators PlausiblyDamp Posted January 11, 2004 Administrators Posted January 11, 2004 something like Dim i, j As Integer i = 4 j = 3 Dim fmtstr(,) As String ReDim fmtstr(i, j) Quote Posting Guidelines FAQ Post Formatting Intellectuals solve problems; geniuses prevent them. -- Albert Einstein
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.