PC SOFT

GRUPOS DE DISCUSSÃO PROFISSIONAL
WINDEVWEBDEV e WINDEV Mobile

Inicio → WINDEV 25 → WD - Fselect - Salvar e Abrir
WD - Fselect - Salvar e Abrir
Iniciado por amarildo, mar., 20 2015 9:04 PM - Sem resposta
Membro registado
535 mensagems
Popularité : +14 (14 votes)
Publicado em março, 20 2015 - 9:04 PM
http://windevdesenvolvimento.blogspot.com.br/2015/03/fselect-salvar-e-abrir.html

Nesse video explico com fazer select para Abrir ou Salvar como, usando o help do windev

// Abrir

sFile is string

// Opens the file picker
sFile = fSelect("", "", "Select a file...", "Arquivos Excel " + TAB + "*.xlsx", "*.xlsx")


sFile is string
// Salvar

// Opens the file picker
sFile = fSelect("", "", "", "Arquivo Excel" + TAB + "*.xlsx", "*.xlsx", fselCreate + fselExist)