Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Dropdown combo highlighting
Message
De
02/06/2009 06:10:48
 
 
À
02/06/2009 05:57:27
Information générale
Forum:
Visual FoxPro
Catégorie:
Codage, syntaxe et commandes
Versions des environnements
Visual FoxPro:
VFP 9 SP2
Divers
Thread ID:
01403114
Message ID:
01403117
Vues:
50
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
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform