How to find last check box option checked? March 29, 2023 08:04AM |
Registered: 2 years ago Posts: 14 |
Re: How to find last check box option checked? March 29, 2023 07:47PM |
Registered: 4 years ago Posts: 76 |
Re: How to find last check box option checked? April 02, 2023 10:35PM |
Registered: 2 years ago Posts: 14 |
Argus
Re: How to find last check box option checked? April 06, 2023 10:54PM |
Re: How to find last check box option checked? May 04, 2023 11:41AM |
Registered: 2 years ago Posts: 14 |
R is int R = CBOX_multioption // OR Value of field linked to CBOX_multioption
nClickedOption is int FOR x = 1 _TO_ MySelf.Count() IF BinaryXOR( MySelf[x].Value, R[x] ) THEN nClickedOption = x END END Info("Clicked option is: " + nClickedOption)
renko allard
Re: How to find last check box option checked? May 13, 2023 01:40AM |
Re: How to find last check box option checked? May 16, 2023 01:22PM |
Registered: 2 years ago Posts: 14 |