RE: Field Values Needs To Be Clear (Delete) or (Null) lathan reddy 13.Apr.12 07:41 AM a Web browser Domino Designer 7.0.1Windows XP
Thanks Paul for your quick response,Is it possible to adjust the code to clear the values when i change the radio button value From X tO Y ( I need to clear 5 Values) (or) Y TO x (I need tom clear 13 values).Is it correct as below menctioned code.?
Query save :
Dim ws As New NotesUIWorkspace
Dim uidoc As NotesUIDocument
Set uidoc = ws.CurrentDocument
If uidoc.FieldGetText("EType_T") = "x" Then
Call uidoc.FieldSetText("Dept_T", "")
Call uidoc.FieldSetText("Dept_TC", "")
Call uidoc.FieldSetText("WRgn_T", "")
Call uidoc.FieldSetText("SubDept_T", "")
Call uidoc.FieldSetText("SubDept_TC", "")
Else