PC SOFT

PROFESSIONAL NEWSGROUPS
WINDEVWEBDEV and WINDEV Mobile

Home → WINDEV 25 → Aula 1104 - Windev - String 37/... - Separar Texto por Cr e colocar tabela
Aula 1104 - Windev - String 37/... - Separar Texto por Cr e colocar tabela
Started by amarildo, Mar., 28 2017 11:12 AM - 1 reply
Registered member
535 messages
Popularité : +14 (14 votes)
Posted on March, 28 2017 - 11:12 AM
Nessa aula de hoje
vou mostrar como pegar um edt texto
e separar cada linha com cr
e adicionar numa tabela

In this class today
I'll show you how to get an edt text
And separate each row with cr
And add in a table

TableDeleteAll(TABLE_Texto)
// Limpando dados da tabela antes de preenche-la
// Clearing Table Data Before Filling It

FOR EACH STRING s_LINHA OF EDT_Texto SEPARATED by CR
// Vou percorrer a string edt texto separando por Enter=Cr
// I'll go through the edt text string separating by Enter = Cr

TableAddLine(TABLE_Texto,s_LINHA)
// Estou adicionando a tabela, a linha encontrada
// I am adding the table, the row found

END


http://windevdesenvolvimento.blogspot.com.br/2017/03/aula-1104-windev-string-37-separar.html

Message modified, March, 28 2017 - 11:17 AM
Registered member
535 messages
Popularité : +14 (14 votes)