Hi again,
I made a combo with 3 options for a bolean value, i.e
1.True
2.False
3.Both
if i select 1 show all records that contains value true, the same to the option 2 but in the option 3 i want that show me all values wihtout any filter, but the parameter is boolean valuetype and only accept me True/False...
How i add a value that validate a all filter?
Visual Basic Code
If Option.Value = True Then Bol = False
If Option.Value = True Then Bol = True
Report.ParameterFields(1).AddCurrentValue(Var)
form.CrystalViewer.ReportSource = Report form.CrystalViewer.ViewReport
form.Show
i use Crystal 8.5
Thanx...
I made a combo with 3 options for a bolean value, i.e
1.True
2.False
3.Both
if i select 1 show all records that contains value true, the same to the option 2 but in the option 3 i want that show me all values wihtout any filter, but the parameter is boolean valuetype and only accept me True/False...
How i add a value that validate a all filter?
Visual Basic Code
If Option.Value = True Then Bol = False
If Option.Value = True Then Bol = True
Report.ParameterFields(1).AddCurrentValue(Var)
form.CrystalViewer.ReportSource = Report form.CrystalViewer.ViewReport
form.Show
i use Crystal 8.5
Thanx...