Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
How to move and resize a browse window programmatically
Message
De
27/08/2010 00:10:23
 
 
Information générale
Forum:
Visual FoxPro
Catégorie:
Codage, syntaxe et commandes
Versions des environnements
Visual FoxPro:
VFP 9 SP1
Divers
Thread ID:
01478737
Message ID:
01478744
Vues:
44
>>I want to programmatically show several cursors in cascaded browse windows of given sizes. Does anyone know how can this be accomplished?
>>
>>TIA,
>>
>>Alex
>
>Did you try looking into browse command in help? In particular, for Window option?

I can't see the browse windows! This is my code
* Before the loop
	lnRowSize = 100
	lnColSize = 100
	lnWindowHeight = lnRowSize * 10
	lnWindowWidth  = lnColSize * 100
	lnRow = 0
	lnCol = 0

* Inside the loop, after cursor is defined
	lnRow = lnRow + lnRowSize
	lnCol = lnCol + lnColSize
	DEFINE WINDOW (lcCursor) AT lnRow,lnCol SIZE lnWindowHeight,lnWindowWidth
	BROWSE IN WINDOW (lcCursor) NOWAIT
	SHOW WINDOW (lcCursor)
Do you see what I did wrong?

Thanks,

Alex
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform