Radio buttons preference and Message prompts

Discussions about CSEntry
Forum rules
New release: CSPro 8.0
Post Reply
boikgwadi
Posts: 26
Joined: June 27th, 2014, 2:47 am

Radio buttons preference and Message prompts

Post by boikgwadi »

Greg and all, hie

Please assist. When capturing data, I need to have all capture types responses as radio buttons instead of the check box. Doing that one by one would take long.

Secondly, is there a way of changing the message box/ prompts to the colours I prefer and also to make sure that the prompts do not truncate the message, check attachment. The message box is too white and the massage is not shown to completion.

Regards,
Boi
Attachments
CS-Message Prompts.PNG
CS-Message Prompts.PNG (9.48 KiB) Viewed 3568 times
khurshid.arshad
Posts: 571
Joined: July 9th, 2012, 11:32 am
Location: Islamabad, Pakistan

Re: Radio buttons preference and Message prompts

Post by khurshid.arshad »

Dear Boikgwadi

In my one project i am using this syntax for radio option.

Code: Select all

PROC GLOBAL


function settype()
	setcapturetype(ABC,1);
	setcapturetype(DEF,1);
end;



PROC ABC

Preproc

	settype();
	
PROC DEF

Preporc
	settype();


a.
josh
Posts: 2399
Joined: May 5th, 2014, 12:49 pm
Location: Washington DC

Re: Radio buttons preference and Message prompts

Post by josh »

You can change the capture type by right clicking on the field in the form editor and choosing "Field properties".

If you have long question text you should put them in CAPI question text (the yellow box at the top) not in the label. The label is meant to be short.

There is no way to change the color of the popup.

Josh
Post Reply