When I use a line in my .rc resource script that reads
1 24 DEFAULT.MANIFEST
my radio buttons, check boxes, drop-down lists, etc all take on the XP-style of display, as desired. However, my integer input boxes such (%rd) have an incomplete box around the input field with no top line for the box above the input field. As a simple example, the following from the CW+ Tutorial exhibits this problem.
WINAPP 0,0
PROGRAM FACTOR2
IMPLICIT NONE
INCLUDE <WINDOWS.INS>
INTEGER ANS,NUMBER
NUMBER=1
ANS=WINIO@('%BG[BTNFACE]&')
ANS=WINIO@('%CA[Number Factoriser]&')
ANS=WINIO@('%IL&',1,2147483647)
ANS=WINIO@('Number to be factorised: &')
ANS=WINIO@('%`BG[WHITE]%RD&',NUMBER)
ANS=WINIO@('%NL%BT[OK]')
END
Any idea what I am doing wrong? I'd like to see a complete XP-style dialog. Also, is there a way to make the box around the input field blue (like in most other XP-styled inputs I've seen) rather than black?
Thanks, Dennis
Dennis Strong, Strong Concepts