Bubble Help works but has an ugly black background square surrounding the bubble which was not present in XP. Is this a bug? I used the code below as a test
INTEGER*4 IHELP,L02,TEST_FUNC
CHARACTER*4 HLPEX
EXTERNAL TEST_FUNC
INCLUDE <WINDOWS.INS>
HLPEX='Test'
IHELP=1
L02=WINIO@('%ww&')
L02=WINIO@('%nl%^?bt[Test]@%bh&',TEST_FUNC,HLPEX,IHELP)
L02=WINIO@('%nl%^bt[Exit]','EXIT')
END
INTEGER FUNCTION TEST_FUNC()
TEST_FUNC=1
END
Martin