That solves the parameterInfo statement, thanks, but I'm still getting the same error as before for the MethodInfo bit.
Really not sure why... --- In [email protected], Dean Fiala <[EMAIL PROTECTED]> wrote: > Your variables in VB are not dimensioned as arrays as they are in C#. > Try... > > Dim mi As MethodInfo() = CType(methods.ToArray(GetType(MethodInfo)), > MethodInfo) > > Dim pi As ParameterInfo() = mi(drop1.SelectedIndex).GetParameters() > > > HTH, > > -- > Dean Fiala > Very Practical Software, Inc > http://www.vpsw.com Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/AspNetAnyQuestionIsOk/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
