quinta-feira, 27 de agosto de 2015

WAS - Webdev Aplicativo Server - Nova Atualizacao Adriano



http://forum.pcsoft.fr/fr-FR/pcsoft.br.windev/443-was-webdev-aplicativo-server/read.awp



Video - Install webdev Aplication Server





Aqui esta o video de 1h fazendo todos os passos no SERVER WEB e no WORKSTATION.


Obs.:

Pastas que devem existir no WAS e no IIS e no InetPub do IIS liberadas para o usuario Administrador e para o Usuário do IIS (IIS_IUSRS):

sites
data
ftp_webdev
webservices




















































WebDev Chamar Pagina

WebDev Chamar Pagina



Webdev Relatorio pdf




Webdev Relatorio pdf

==============================================

ChangeTarget(NewBrowser) // abre uma nova guia

==============================================
 //Imprime Em pdf
// Generate a unique PDF file name
AFile is string 
AFile = fWebDir() + "\" + DateSys() + TimeSys() + ".pdf"
// Configure the destination of the print
iDestination(iPDF, AFile)
// Print the RPT_InvoicePDF report
iPrintReport(RPT_tecnico)
// Send the file to the browser
FileDisplay(AFile, "application/pdf")
// Delete the file
fDelete(AFile)

==============================================
 // Mostra o relatorio no browse Html
// Generate a unique HTML file name
FilePath is string
FilePath = fWebDir() + "\" + DateSys() + TimeSys() + ".htm"
// Configure the destination of the print
iDestination(iHTML, FilePath)
// Print the RPT_InvoiceHTML report
iPrintReport(RPT_tecnico)
// Extract the name and extension of the generated file
FileName is string
FileName = fExtractPath(FilePath, fFileName + fExtension)
// Send the file to the browser
PageDisplay(FileName)
==============================================
 //Grava em Pdf o Relatorio
// Generate a unique PDF file name
AFile is string = fWebDir() + "\" + DateSys() + TimeSys() + ".pdf"
// Configure the destination of the print
iDestination(iPDF, AFile)
// Print the RPT_OrderPDF report
iPrintReport(RPT_tecnico)
// Propose to download the file
// The file name proposed by default will be "Order.pdf"
FileDisplay(AFile, "application/pdf", "NomedoRelatorio.pdf")
// Delete the file
fDelete(AFile)
==============================================













Windev NumToString - Formatar um campo conforme queira

Windev Formatar um campo conforme queira

material_grupo.mascaraGrupo=NumToString(nCodigo,"03d")


  IF nCodigofluxo>999 THEN
                           fluxo.idCentrocusto=nGrande_fluxo+"."+nFluxo_principal+"."+nCodigofluxo
                        ELSE
                                IF nCodigofluxo>99 THEN
                              fluxo.idCentrocusto=nGrande_fluxo+"."+nFluxo_principal+"0."+nCodigofluxo
                           ELSE              
                              IF nCodigofluxo>9 THEN
                                 fluxo.idCentrocusto=nGrande_fluxo+"."+nFluxo_principal+".00"+nCodigofluxo
                              ELSE          
                                 fluxo.idCentrocusto=nGrande_fluxo+"."+nFluxo_principal+".000"+nCodigofluxo
                              END
                           END                               
                        END



NumToString

NumToString

http://help.windev.com/en-US/?3024024&name=NumToString


WebDev Largura e Altura

Para Mudar Largura e Altera da Pagina
Va em Propriedades da Pagina
guia Gui





 

WebDev Palette



VIDEO - WEBDEV PALETTE








WebDev Skin



VIDEO - SKIN








String - NoSpace - Retorna sem brancos a direita e a esquerda

String - NoSpace - Retorna sem brancos a direita e a esquerda

 http://doc.windev.com/?3024034
--------------------------------------------------------------------------------------------------------------
 Blog Relacionados

Manuseio String - Opcoes
Extrai Lado Direito - Right
Extrai Lado Esquerdo - Left
ExtractString - Separar SubString Com Separador  
Funções - Functions
Numero Para String
Tamanho String - Length
Operadores
Preenche Campo - Complet
Retorna sem Branco - NoSpace 
Retirar Blocos
Separador CR
--------------------------------------------------------------------------------------------------------------





WebDev_Curso_018_Jquery Enter nos Campos






 http://www.pcsoft.fr/

http://matosinformatica.com.br/

Video - WebDev_Curso_018_Jquery Enter nos Campos





Nessa Aula vou mostrar como dar enter nos campos do formulario com Jquery








Abaixo o Script que tem a funcao de dar enter

<script language="javascript" type="text/javascript" src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.7.2.min.js"></script> <script language="javascript" type="text/javascript"> $(document).ready(function(e) { $('input').keydown( function(e) { var key = e.charCode ? e.charCode : e.keyCode ? e.keyCode : 0; if(key == 13) { e.preventDefault(); var inputs = $(this).closest('form').find(':input:visible'); inputs.eq( inputs.index(this)+ 1 ).focus(); } if(key == 38) { e.preventDefault(); var inputs = $(this).closest('form').find(':input:visible'); inputs.eq( inputs.index(this)- 1 ).focus(); } }); }); </script> </html>

Blog - Webdev - Curso 1/... Primeira Pagina
Blog - Webdev - Curso 2/... Edit Mostrar
Blog - Webdev - Curso 3/... Template
Blog - Webdev - Curso 4/... Pagina Chama / Imagen
Blog - Webdev - Curso 5/... Menu
Blog - Webdev - Curso 6/... Palete Skin
Blog - Webdev - Curso 7/... - Colocar Analise
Blog - Webdev - Curso 8/... Rad - Cadastro Tecnico
Blog - Webdev - Curso 9/... - Menu Chamando Sistema 
Blog - Webdev - Curso 10/... - Tabela com Query 
Blog - Webdev - Curso 11/... - Inclui Altera Exclui Sistema
Blog - Webdev - Curso 12 /.. - Relatorio Como Gerar
Blog - Webdev - Curso 13/... - Rad Cliente Atendimento Combox 
Blog - Webdev - Curso 14/... Agenda Incluir Fotos / Imagens
Blog - Webdev - Curso 15/... - Jquery - Baixar Site /Instalar
Blog - Webdev - Curso 16/... - Jquery - Webdev Configurar Telefone
Blog - Webdev - Curso 17/.. - Ajax - Cpf Validar
Blog - Webdev - Curso 18/... Jquery Enter nos Campos
Blog - Webdev - Curso 19/... - Graficos
Blog - Webdev - Curso 20/... - Timer

Teste

Teste
teste