Video youtube
Nessa aula vou mostrar como saber quantos tem no listbox
This lesson will show how to know how many have the listbox
Cette leçon va vous montrer comment savoir combien ont la listbox
Doc.windev.com/en-US/?3049014&name=listcount_function
http://doc.pcsoft.fr/fr-FR/?3049014&name=listeoccurrence_fonction
http://doc.windev.com/en-US/?3049001
http://doc.pcsoft.fr/fr-FR/?3049001&name=fonctions_gestion_des_champs_liste
Blog - WinDev - ListBox - 001/... - Criar Tabela automatico e listbox manual
Blog - WinDev - ListBox - 002/... Criar ListBox, Para Ajuda num Campo
Blog - WinDev - ListBox - 003/... Listcount - Quantos tem listbox
Blog - WinDev - ListBox - 004/... ListMoveLine - Mover Linha
Blog - WinDev - ListBox - 005/ ... ListDelete
// Elimina dados do Listbox
ListDeleteAll(LISTE_programa)
// Ler a tabela de clientes e preenche ListBox
FOR EACH cliente
ListAdd(LISTE_programa,cliente.nome)
END
//Verifica quantos tem no ListBox
n_quantos is int = ListCount(LISTE_programa)
//Mostrando mensagem
Info("Tem "+n_quantos+" clientes")
Nenhum comentário:
Postar um comentário