Skip to Main Content

General Development Discussions

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

SetParameter for Radio Button

644028Jul 8 2008 — edited Jul 8 2008
Using e-Tester and this VBA code I am trying to set the parameters of two radio buttons but I am getting an error "Object variable or With block variable not set" Can anyone tell my why this happening and how to correct this?


Private Sub RSWVBAPage_beforePlay()
Dim setParamName As String
Dim newParamValues As Collection
Dim resultStr As Boolean

setParamName = "deliveryPref"

newParamValues.Add "unchecked"
newParamValues.Add "checked"

resultStr = RSWApp.SetParameterValues(setParamName, newParamValues)
End Sub

Comments

Processing
Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on Aug 5 2008
Added on Jul 8 2008
2 comments
1,009 views