OCX and Parameter Values
-
- Posts: 3
- Joined: Tue Oct 10, 2017 12:44 pm
OCX and Parameter Values
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____
-
- Posts: 3
- Joined: Tue Oct 10, 2017 12:44 pm
=> RE: OCX and Parameter Values
We found the answer.______varMonth="month=July"__thisform.rrw1.parametersString = (varMonth)____Thanks______Ward __