Le champ TimeLine permet de représenter des chronologies d'événements rapprochés qui peuvent être parallèles.
Le champ Planning permet d'afficher et de manipuler des plannings automatiquement. Il permet de gérer l'affichage de ressources multiples et trouve sa place dans de nombreuses applications ou sites.
Le champ Agenda permet d'afficher et de manipuler des agendas automatiquement...
Connector/Net 7.0 (7.0.4 m3, published on Monday, 22 Aug 2016)
Exemplo Monitores
ListAdd(LIST_videos,"Lista Videos/Monitores")
ListAdd(LIST_videos,SysListScreen())
ListAdd(LIST_videos,"Lista Nome Videos/Monitores")
ListAdd(LIST_videos,SysListVideoCard())
EDT_videos="Numero de Monitores:"+SysNumberScreen()
//Blog com Video e Exemplo
http://windevdesenvolvimento.blogspot.com.br/2016/08/curso-windev-funcoes-exe-windows-010.html
https://www.youtube.com/watch?v=RadRtt3BR_k
Exemplo Monitores
ListAdd(LIST_videos,"Lista Videos/Monitores")
ListAdd(LIST_videos,SysListScreen())
ListAdd(LIST_videos,"Lista Nome Videos/Monitores")
ListAdd(LIST_videos,SysListVideoCard())
EDT_videos="Numero de Monitores:"+SysNumberScreen()
//Blog com Video e Exemplo
http://windevdesenvolvimento.blogspot.com.br/2016/08/curso-windev-funcoes-exe-windows-010.html
https://www.youtube.com/watch?v=RadRtt3BR_k
Exemplo Monitores
ListAdd(LIST_videos,"Lista Videos/Monitores")
ListAdd(LIST_videos,SysListScreen())
ListAdd(LIST_videos,"Lista Nome Videos/Monitores")
ListAdd(LIST_videos,SysListVideoCard())
EDT_videos="Numero de Monitores:"+SysNumberScreen()
//Blog com Video e Exemplo
http://windevdesenvolvimento.blogspot.com.br/2016/08/curso-windev-funcoes-exe-windows-010.html
https://www.youtube.com/watch?v=RadRtt3BR_k
Exemplo Se Arquivo Existe
s_arquivo is string="e:\aleva\teste.xml"
IF fFileExist(s_arquivo) THEN
Info("Arquivo Existe")
ELSE
Info("Arquivo Nao Existe")
END
//Blog com Video e Exemplo
http://windevdesenvolvimento.blogspot.com.br/2016/08/curso-windev-arquivos-007-arquivos-ver.html
https://www.youtube.com/watch?v=MhChfygEG9M
Exemplo - ver se diretorio existe
s_diretorio is string="e:\aleva1"
IF fDirExist(s_diretorio) THEN
Info("Ja existe diretorio")
ELSE
Info("Nao Existe")
END
//Blog com Video e Exemplo
http://windevdesenvolvimento.blogspot.com.br/2016/08/curso-windev-arquivos-006-arquivos-ver.html
https://www.youtube.com/watch?v=VaDyezW5kaw
Exemplo CurrentTitle
CurrentTitle(gBackground(LightGreen) + gPen(Black) + "Janela Ensinando ")
//Blog com Video e Exemplo
http://windevdesenvolvimento.blogspot.com.br/2016/08/curso-windev-funcoes-windowsjanela-002.html
https://www.youtube.com/watch?v=8fw_ggyJXQI
mostrar como compilar Android e publicar Google Play
Nessa video vou mostrar como compilar Android e publicar Google Play
In this video I will show how to compile and publish Android Google Play
Dans cette vidéo, je vais vous montrer comment compiler et publier Android Google Play
//Blog com Video e Exemplo
http://windevdesenvolvimento.blogspot.com.br/2016/08/windev-mobile-72-google-play-1-compilar.html
https://www.youtube.com/watch?v=CQjbMfwL2gk
Verificar se Este programa está Aberto
//Verificar se Este programa está Aberto
IF ExeRunning(ExeInfo(exeName))>1 THEN
Info("Este Programa já está aberto ")
EndProgram(True) // Fechar Programa
END
//Verificar se o programa uninfe.exe está aberto
n_executa is int=0
n_executa=ExeRunning("E:\_2014_SSD\Programas\UniNFe\uninfe.exe")
IF n_executa>0 THEN
Info("Uninfe já Aberto")
ELSE
Info("Uninfe não aberto - vou abrir")
ExeRun("E:\_2014_SSD\Programas\UniNFe\uninfe.exe")
END
//Blog Com Video e Exemplo
http://windevdesenvolvimento.blogspot.com.br/2016/08/curso-windev-funcoes-exe-windows-008.html
https://www.youtube.com/watch?v=qPyq9sXmRkE
Exemplo ExeListProcess
ListAdd(LIST_processo,ExeListProcess(exePID,exeLongName,exeMemory))
ListeAjoute(LIST_processo,ExeListeProcessus(exePID,exeNomLong,exeMémoire))
//exePID - identificador aplicacao // identifier application // l'application d'identificateur
//exeLongName - caminho do aplicativo // application path // chemin d'application
//exeMemory - Quantidade de memoria consumida // memory amount consumed// quantité de mémoire consommée
// exeCommandLine - linha de comando // Command Line // ligne de commande
//exeMaxMemory - quantidade maxima de memoria consumida // Maximum amount of memory consumed
// Montant maximum de mémoire consommée
//exeShortName - nome aplicativo // application name// nom de l'application
//Blog Com Video e Exemplo
http://windevdesenvolvimento.blogspot.com.br/2016/08/curso-windev-funcoes-exe-windows-008.html
https://www.youtube.com/watch?v=qPyq9sXmRkE
Exemplo Colorir String - RTF
n_tamanho_cnpj_i,n_tamanho_cnpj_f,n_tamanho_inscricao_est_i,n_tamanho_inscricao_est_f is int=0
s_texto is string="Cnpj:"
n_tamanho_cnpj_i=Length(s_texto)
s_texto+="92.715.978.0001-58 "
n_tamanho_cnpj_f=Length(s_texto)
s_texto+=CR+"Insc.Est: "
n_tamanho_inscricao_est_i=Length(s_texto)
s_texto+="Isento"
n_tamanho_inscricao_est_f=Length(s_texto)
s_texto+=CR+"======================"
EDT_RTF_Text=s_texto
EDT_RTF_Text..Cursor=n_tamanho_cnpj_i
EDT_RTF_Text..CursorEnd=n_tamanho_cnpj_f
RTFSelection(EDT_RTF_Text,rtfColor,LightBlue)
EDT_RTF_Text..Cursor=n_tamanho_inscricao_est_i
EDT_RTF_Text..CursorEnd=n_tamanho_inscricao_est_f
RTFSelection(EDT_RTF_Text,rtfColor,LightMagenta)
//Blog com Video e Exemplo
http://windevdesenvolvimento.blogspot.com.br/2016/08/curso-windev-string-014-rtf-colorir.html
https://www.youtube.com/watch?v=DbGYzz4QKi8
salut tous le monde,
j'ai plusieurs serveur HFSQl géographiquement éloigné et je veux une réplication vers une seule base des données type Mysql hébergé chez un hébergeur qui ne supporte pas les produits PCSOFT, je me demande comment faire une réplication pour ces serveurs!!
merci d'avance,
//Exemplo Static
//Blog com Video e Exemplo Static
http://windevdesenvolvimento.blogspot.com.br/2016/08/curso-windev-controls-001-static.html
https://www.youtube.com/watch?v=cVSOhxjFsEI
MySQL Utilities 1.6 (1.6.4 GA, published on Friday, 05 Aug 2016)
Nessa aula vou mostrar como abrir,comecar,pausar,terminar video multimidia
sFile is string
sFile = fSelect("", "", "Select a file...", "Video" + TAB + "*.avi", "*.avi")
EDT_nome_video=sFile
//
MultimediaOpen(MM_video,EDT_nome_video)
MultimediaPlay(MM_video)
MultimediaPause(MM_video)
MultimediaClose(MM_video)
//
//Em Frances
sFile est chaîne
sFile = fSélecteur("", "", "Select a file...", "Video" + TAB + "*.avi", "*.avi")
EDT_nome_video=sFile
//
MultimédiaOuvre(MM_video,EDT_nome_video)
MultimédiaJoue(MM_video)
MultimediaPause(MM_video)
MultimédiaFerme(MM_video)
//Blog com Video e Exemplo
http://windevdesenvolvimento.blogspot.com.br/2016/08/curso-windev-multimdia-001.html
https://www.youtube.com/watch?v=h0Cx5wmSYpY
Ce message apparaît en développement local, alors que je suis le seul à utiliser le navigateur pour tester les pages et suis le seul connecté ?
Exemplo ComboOpen/ComboClose
ComboOpen(COMBO_Bancos)
ComboClose(COMBO_Bancos)
//Blog com Video e Exemplo
http://windevdesenvolvimento.blogspot.com.br/2016/08/curso-windev-combox-007.html
https://www.youtube.com/watch?v=7i9R3jNHnQQ
Recent comments
7 years 44 weeks ago
7 years 47 weeks ago
7 years 50 weeks ago
8 years 3 weeks ago
8 years 24 weeks ago
8 years 25 weeks ago
8 years 33 weeks ago
8 years 33 weeks ago
8 years 33 weeks ago
8 years 33 weeks ago