Topic: AppGraphics CreateRadioButton() Background Color?
Hi Jeff,
I'm having difficulty setting the background color of radiobuttons in a text window in AppGraphics (CreateRadioButton()).
The Window background color is set to White (call setbkcolor(WHITE) but the Radiobutton background color appears as the System color (Color_Window_Bkgd) regardless of what I set the window background color.
call setcolor(BLACK)
call setbkcolor(WHITE)
call clearviewport()
call beginradiogroup()
src(1) = createradiobutton(90, 30, 95, 20, units(1))
src(2) = createradiobutton(90, 50, 95, 20, units(2))
src(3) = createradiobutton(90, 70, 95, 20, units(3))
Is there a way to set the background color of RadioButtons to match the Window background?
One other none related request is for one Button in a series (using createbutton()) to be automatically selected as the "default" button when the <Enter> key is pressed.
I thank you for your help in this matter.
Frank