Page 1 of 1

OCX and Parameter Values

Posted: Tue Jul 22, 2003 2:56 pm
by wbrown_(Guest)
We are using v9.0.009 and the rrw32.ocx and are trying to pass parameter values with the:____ControlName.Parameters(ArrayIndex)__[= ParameterName$=ParameterValue$]____function from Visual FoxPro 6.0. We can not figure out how pass a user defined value from FoxPro to R&R, when we hard code the "riparamname=value";____thisform.rrw1.parameters(0) ="month=July"____it works fine, but we can not use a variable;____varMonth="month=July"__thisform.rrw1.parameters(0) = varMonth____Thanks____Ward Brown____

=> RE: OCX and Parameter Values

Posted: Tue Jul 22, 2003 4:13 pm
by wbrown_(Guest)
We found the answer.______varMonth="month=July"__thisform.rrw1.parametersString = (varMonth)____Thanks______Ward __