Hello all,

I am Using Rbase 9.1 (9.1.5.11212), and a variable form.

I have been struggling with trying to get information into the ClipBoard for a 
few hours now.  I am wondering if anyone else may have tripped over this 
before, and can lend some advice...
In Form Designer - Form / Document Custom EEPS / ClipBoard

It appears things will copy to clipboard sometimes, and I think I've narrowed 
down to a Radio Group control.
3 of the Radio Groups do not have any EEPs, and 1 does; componentid rdoUnderWarr

If I have more than 1 eep on rdoUnderWarr, I lose the ability to copy to the 
ClipBoard.
Once I remove the code in one of the eeps (and it does not matter which I 
remove), I am able to copy to the clipboard again.
(EEPs are listed under the details section)

I've delete the control, and recreated it from scratch; and still have the same 
anomaly.
I've done a Reload.  I've rebooted my machine.
I'm not seeing any reserved words....

Any help would be greatly appreciated

Thanks
Regards
Lena
QMI Security Solutions

DETAILs
The  variable form has the following controls:
19 Static Text, 3 Enhanced panels, 7 Variable labels, 6 Variable Lookup Combo 
Boxes, 2 Variable Lookup List Views,
4 Variable Radio Groups, 6 Variable Edits, 1 Variable Memo and 10 Bit Buttons.

Both these controls are on the same Panel3
Variable Radio Group
Variable vsdUnderWarr TEXT
ComponentID rdoUnderWarr
Radio Buttons - Caption No, value N  and Caption Yes value Y

Variable Lookup Combo Box
Variable vsdUndWarResp TEXT
ComponentID cmbUndWarResp


--rdoUnderWarr ON ENTRY EEP
SET VAR vsdHoldUnderWarr = .vsdUnderWarr
RETURN

--rdoUnderWarr ON CLICK EEP
IF vsdUnderWarr <> 'Y' THEN
  SET VAR vsdUndWarResp = NULL
  PROPERTY cmbUndWarResp ENABLED 'FALSE'
  RECALC VARIABLES
ELSE
  PROPERTY cmbUndWarResp ENABLED 'TRUE'
ENDIF
RETURN



Reply via email to