Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Dropdown combo highlighting
Message
From
02/06/2009 06:10:48
 
 
To
02/06/2009 05:57:27
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Environment versions
Visual FoxPro:
VFP 9 SP2
Miscellaneous
Thread ID:
01403114
Message ID:
01403117
Views:
51
This message has been marked as a message which has helped to the initial question of the thread.
>Hi All
>
>I have a dropdown combo list on a form. Under Vista all the options highlight and stay highlighted as the mouse moves over them. Is there a fix for this?
>
>TIA

Jos,

I use this since vfp6 - you can replace the on error with a try/catch

To execute once upon app startup
function Vista_Init()

	local sError
	sError = on('Error')
	private declareError
	declareError = FALSE
	on error declareError = TRUE
	
	DECLARE integer GdiSetBatchLimit IN WIN32API integer
	=GdiSetBatchLimit(1)
	
	on error &sError
	
	return !m.declareError

endfunc
Gregory
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform