├── .gitignore ├── .project ├── Advpl Unit Test ├── AdvplClassTestExample.prw └── Patch_Testes_tttp120.ptm ├── ArrayUtils ├── ArrayUtils.prw ├── README.md ├── ValArray │ └── ValArray.prw ├── aFilter │ ├── aFilter.prw │ └── aFilterTests.prw ├── aFind │ ├── aFind.prw │ └── aFindTests.prw ├── aJoin │ ├── aJoin.prw │ └── aJoinTests.prw ├── aMap │ ├── aMap.prw │ └── aMapTests.prw ├── aProduct │ ├── aProduct.prw │ └── aProductTests.prw └── aReduce │ ├── aReduce.prw │ └── aReduceTests.prw ├── Classe de valor Automatica ├── AUTCLINI.prw ├── AUTOCLVL.prw ├── M020ALT.PRW ├── M020INC.prw ├── M030INC.prw └── MALTCLI.prw ├── Compatibilizador Customizado ├── UPDCUSTOM.CH ├── UPDCUSTOM.prw └── UPDCUSTST.prw ├── Consulta Borderos └── ACTCNSEA_MVC.prw ├── Consulta Sinesp Python ├── ConsPython.prw └── consulta.py ├── Editar SX5 - Tabelas Genéricas ├── EDITASX5_MVC.prw └── SX5Cadastro.prw ├── Faturamento └── TotalPED.prw ├── Funções Auxiliares ├── FuncRPO.prw ├── PUTSX1.prw ├── SHELLADVPL.prw ├── TINI.prw ├── TPOS.prw └── fnWhereFil.prw ├── Google Maps └── maps01.PRW ├── Info_RPO └── TINFRPO.prw ├── InfraProtheus ├── Scripts │ ├── Git Auto │ │ └── Update_Repo.ps1 │ ├── Protheus_Limpeza_Arquivos │ │ ├── Limpeza_Protheus_Data.cmd │ │ ├── XmlNfeNew.ps1 │ │ ├── deleta_arq_protheus_data_homol.bat │ │ ├── xmlnfe_old.cmd │ │ └── xmlnfe_old.ps1 │ ├── ReiniciarServicos │ │ ├── ManageServices.ps1 │ │ ├── ManageServices_Config.ps1 │ │ ├── ReiniciarServicos.bat │ │ ├── TesteReiniciarServicos Com Parametros.lnk │ │ ├── TesteReiniciarServicos.bat │ │ ├── config.ps1 │ │ └── testConf.ps1 │ └── Trocar RPO │ │ ├── AlterarRPOSimples.ps1 │ │ ├── Atu2.bat │ │ ├── AtuRPO.Bat │ │ ├── UpdateRpo.ps1 │ │ └── appserver.ini ├── TDSCLI │ ├── Compilar.txt │ ├── TDSCLI_Param.txt │ ├── TstWait.prw │ └── UTdsCli.prw ├── Trabalhando com Inis │ ├── LerIni.prw │ └── TGetDba.prw └── TrocarRpo │ └── UTrocRPO.prw ├── Interpretador └── TADVPLSHELL.prw ├── Leitura de XML ├── TGETMSG.prw ├── TGETOXML.prw └── XmlChild.prw ├── Logs └── GravaLog.prw ├── MVC ├── MvcUtils.prw ├── PE_MVC.prw └── modelomvc.prw ├── Mile ├── MILIMCLI.PRW ├── MILIMCPO.PRW ├── MILIMFOR.PRW ├── MILIMMOT.PRW ├── MILIMVEI.PRW └── MileImp.prw ├── NF-e └── GerXMLNFe.prw ├── Querys SQL └── fnWhereFil.prw ├── README.md ├── TReport - Modelos ├── TRepTeste.prw └── TReport Rápido (Auto Completar).prw ├── Usuarios Banco de Dados ├── TUSUXBCO.prw └── Tabela de Usuarios ZZD │ ├── sixzzd.dbf │ ├── sx2zzd.dbf │ └── sx3zzd.dbf ├── ValidaCNH ├── CNHValid.PRW └── TSTCNHVa.PRW └── WFWebRelatorio └── WFWEBRelatorio.prw /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmti/TGM_Advpl_Tools/HEAD/.gitignore -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmti/TGM_Advpl_Tools/HEAD/.project -------------------------------------------------------------------------------- /Advpl Unit Test/AdvplClassTestExample.prw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmti/TGM_Advpl_Tools/HEAD/Advpl Unit Test/AdvplClassTestExample.prw -------------------------------------------------------------------------------- /Advpl Unit Test/Patch_Testes_tttp120.ptm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmti/TGM_Advpl_Tools/HEAD/Advpl Unit Test/Patch_Testes_tttp120.ptm -------------------------------------------------------------------------------- /ArrayUtils/ArrayUtils.prw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmti/TGM_Advpl_Tools/HEAD/ArrayUtils/ArrayUtils.prw -------------------------------------------------------------------------------- /ArrayUtils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmti/TGM_Advpl_Tools/HEAD/ArrayUtils/README.md -------------------------------------------------------------------------------- /ArrayUtils/ValArray/ValArray.prw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmti/TGM_Advpl_Tools/HEAD/ArrayUtils/ValArray/ValArray.prw -------------------------------------------------------------------------------- /ArrayUtils/aFilter/aFilter.prw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmti/TGM_Advpl_Tools/HEAD/ArrayUtils/aFilter/aFilter.prw -------------------------------------------------------------------------------- /ArrayUtils/aFilter/aFilterTests.prw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmti/TGM_Advpl_Tools/HEAD/ArrayUtils/aFilter/aFilterTests.prw -------------------------------------------------------------------------------- /ArrayUtils/aFind/aFind.prw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmti/TGM_Advpl_Tools/HEAD/ArrayUtils/aFind/aFind.prw -------------------------------------------------------------------------------- /ArrayUtils/aFind/aFindTests.prw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmti/TGM_Advpl_Tools/HEAD/ArrayUtils/aFind/aFindTests.prw -------------------------------------------------------------------------------- /ArrayUtils/aJoin/aJoin.prw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmti/TGM_Advpl_Tools/HEAD/ArrayUtils/aJoin/aJoin.prw -------------------------------------------------------------------------------- /ArrayUtils/aJoin/aJoinTests.prw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmti/TGM_Advpl_Tools/HEAD/ArrayUtils/aJoin/aJoinTests.prw -------------------------------------------------------------------------------- /ArrayUtils/aMap/aMap.prw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmti/TGM_Advpl_Tools/HEAD/ArrayUtils/aMap/aMap.prw -------------------------------------------------------------------------------- /ArrayUtils/aMap/aMapTests.prw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmti/TGM_Advpl_Tools/HEAD/ArrayUtils/aMap/aMapTests.prw -------------------------------------------------------------------------------- /ArrayUtils/aProduct/aProduct.prw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmti/TGM_Advpl_Tools/HEAD/ArrayUtils/aProduct/aProduct.prw -------------------------------------------------------------------------------- /ArrayUtils/aProduct/aProductTests.prw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmti/TGM_Advpl_Tools/HEAD/ArrayUtils/aProduct/aProductTests.prw -------------------------------------------------------------------------------- /ArrayUtils/aReduce/aReduce.prw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmti/TGM_Advpl_Tools/HEAD/ArrayUtils/aReduce/aReduce.prw -------------------------------------------------------------------------------- /ArrayUtils/aReduce/aReduceTests.prw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmti/TGM_Advpl_Tools/HEAD/ArrayUtils/aReduce/aReduceTests.prw -------------------------------------------------------------------------------- /Classe de valor Automatica/AUTCLINI.prw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmti/TGM_Advpl_Tools/HEAD/Classe de valor Automatica/AUTCLINI.prw -------------------------------------------------------------------------------- /Classe de valor Automatica/AUTOCLVL.prw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmti/TGM_Advpl_Tools/HEAD/Classe de valor Automatica/AUTOCLVL.prw -------------------------------------------------------------------------------- /Classe de valor Automatica/M020ALT.PRW: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmti/TGM_Advpl_Tools/HEAD/Classe de valor Automatica/M020ALT.PRW -------------------------------------------------------------------------------- /Classe de valor Automatica/M020INC.prw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmti/TGM_Advpl_Tools/HEAD/Classe de valor Automatica/M020INC.prw -------------------------------------------------------------------------------- /Classe de valor Automatica/M030INC.prw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmti/TGM_Advpl_Tools/HEAD/Classe de valor Automatica/M030INC.prw -------------------------------------------------------------------------------- /Classe de valor Automatica/MALTCLI.prw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmti/TGM_Advpl_Tools/HEAD/Classe de valor Automatica/MALTCLI.prw -------------------------------------------------------------------------------- /Compatibilizador Customizado/UPDCUSTOM.CH: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmti/TGM_Advpl_Tools/HEAD/Compatibilizador Customizado/UPDCUSTOM.CH -------------------------------------------------------------------------------- /Compatibilizador Customizado/UPDCUSTOM.prw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmti/TGM_Advpl_Tools/HEAD/Compatibilizador Customizado/UPDCUSTOM.prw -------------------------------------------------------------------------------- /Compatibilizador Customizado/UPDCUSTST.prw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmti/TGM_Advpl_Tools/HEAD/Compatibilizador Customizado/UPDCUSTST.prw -------------------------------------------------------------------------------- /Consulta Borderos/ACTCNSEA_MVC.prw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmti/TGM_Advpl_Tools/HEAD/Consulta Borderos/ACTCNSEA_MVC.prw -------------------------------------------------------------------------------- /Consulta Sinesp Python/ConsPython.prw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmti/TGM_Advpl_Tools/HEAD/Consulta Sinesp Python/ConsPython.prw -------------------------------------------------------------------------------- /Consulta Sinesp Python/consulta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmti/TGM_Advpl_Tools/HEAD/Consulta Sinesp Python/consulta.py -------------------------------------------------------------------------------- /Editar SX5 - Tabelas Genéricas/EDITASX5_MVC.prw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmti/TGM_Advpl_Tools/HEAD/Editar SX5 - Tabelas Genéricas/EDITASX5_MVC.prw -------------------------------------------------------------------------------- /Editar SX5 - Tabelas Genéricas/SX5Cadastro.prw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmti/TGM_Advpl_Tools/HEAD/Editar SX5 - Tabelas Genéricas/SX5Cadastro.prw -------------------------------------------------------------------------------- /Faturamento/TotalPED.prw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmti/TGM_Advpl_Tools/HEAD/Faturamento/TotalPED.prw -------------------------------------------------------------------------------- /Funções Auxiliares/FuncRPO.prw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmti/TGM_Advpl_Tools/HEAD/Funções Auxiliares/FuncRPO.prw -------------------------------------------------------------------------------- /Funções Auxiliares/PUTSX1.prw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmti/TGM_Advpl_Tools/HEAD/Funções Auxiliares/PUTSX1.prw -------------------------------------------------------------------------------- /Funções Auxiliares/SHELLADVPL.prw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmti/TGM_Advpl_Tools/HEAD/Funções Auxiliares/SHELLADVPL.prw -------------------------------------------------------------------------------- /Funções Auxiliares/TINI.prw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmti/TGM_Advpl_Tools/HEAD/Funções Auxiliares/TINI.prw -------------------------------------------------------------------------------- /Funções Auxiliares/TPOS.prw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmti/TGM_Advpl_Tools/HEAD/Funções Auxiliares/TPOS.prw -------------------------------------------------------------------------------- /Funções Auxiliares/fnWhereFil.prw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmti/TGM_Advpl_Tools/HEAD/Funções Auxiliares/fnWhereFil.prw -------------------------------------------------------------------------------- /Google Maps/maps01.PRW: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmti/TGM_Advpl_Tools/HEAD/Google Maps/maps01.PRW -------------------------------------------------------------------------------- /Info_RPO/TINFRPO.prw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmti/TGM_Advpl_Tools/HEAD/Info_RPO/TINFRPO.prw -------------------------------------------------------------------------------- /InfraProtheus/Scripts/Git Auto/Update_Repo.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmti/TGM_Advpl_Tools/HEAD/InfraProtheus/Scripts/Git Auto/Update_Repo.ps1 -------------------------------------------------------------------------------- /InfraProtheus/Scripts/Protheus_Limpeza_Arquivos/Limpeza_Protheus_Data.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmti/TGM_Advpl_Tools/HEAD/InfraProtheus/Scripts/Protheus_Limpeza_Arquivos/Limpeza_Protheus_Data.cmd -------------------------------------------------------------------------------- /InfraProtheus/Scripts/Protheus_Limpeza_Arquivos/XmlNfeNew.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmti/TGM_Advpl_Tools/HEAD/InfraProtheus/Scripts/Protheus_Limpeza_Arquivos/XmlNfeNew.ps1 -------------------------------------------------------------------------------- /InfraProtheus/Scripts/Protheus_Limpeza_Arquivos/deleta_arq_protheus_data_homol.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmti/TGM_Advpl_Tools/HEAD/InfraProtheus/Scripts/Protheus_Limpeza_Arquivos/deleta_arq_protheus_data_homol.bat -------------------------------------------------------------------------------- /InfraProtheus/Scripts/Protheus_Limpeza_Arquivos/xmlnfe_old.cmd: -------------------------------------------------------------------------------- 1 | powershell -command "& {C:\scripts\xmlnfe_old.ps1}" 2 | 3 | -------------------------------------------------------------------------------- /InfraProtheus/Scripts/Protheus_Limpeza_Arquivos/xmlnfe_old.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmti/TGM_Advpl_Tools/HEAD/InfraProtheus/Scripts/Protheus_Limpeza_Arquivos/xmlnfe_old.ps1 -------------------------------------------------------------------------------- /InfraProtheus/Scripts/ReiniciarServicos/ManageServices.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmti/TGM_Advpl_Tools/HEAD/InfraProtheus/Scripts/ReiniciarServicos/ManageServices.ps1 -------------------------------------------------------------------------------- /InfraProtheus/Scripts/ReiniciarServicos/ManageServices_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmti/TGM_Advpl_Tools/HEAD/InfraProtheus/Scripts/ReiniciarServicos/ManageServices_Config.ps1 -------------------------------------------------------------------------------- /InfraProtheus/Scripts/ReiniciarServicos/ReiniciarServicos.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmti/TGM_Advpl_Tools/HEAD/InfraProtheus/Scripts/ReiniciarServicos/ReiniciarServicos.bat -------------------------------------------------------------------------------- /InfraProtheus/Scripts/ReiniciarServicos/TesteReiniciarServicos Com Parametros.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmti/TGM_Advpl_Tools/HEAD/InfraProtheus/Scripts/ReiniciarServicos/TesteReiniciarServicos Com Parametros.lnk -------------------------------------------------------------------------------- /InfraProtheus/Scripts/ReiniciarServicos/TesteReiniciarServicos.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmti/TGM_Advpl_Tools/HEAD/InfraProtheus/Scripts/ReiniciarServicos/TesteReiniciarServicos.bat -------------------------------------------------------------------------------- /InfraProtheus/Scripts/ReiniciarServicos/config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmti/TGM_Advpl_Tools/HEAD/InfraProtheus/Scripts/ReiniciarServicos/config.ps1 -------------------------------------------------------------------------------- /InfraProtheus/Scripts/ReiniciarServicos/testConf.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmti/TGM_Advpl_Tools/HEAD/InfraProtheus/Scripts/ReiniciarServicos/testConf.ps1 -------------------------------------------------------------------------------- /InfraProtheus/Scripts/Trocar RPO/AlterarRPOSimples.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmti/TGM_Advpl_Tools/HEAD/InfraProtheus/Scripts/Trocar RPO/AlterarRPOSimples.ps1 -------------------------------------------------------------------------------- /InfraProtheus/Scripts/Trocar RPO/Atu2.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmti/TGM_Advpl_Tools/HEAD/InfraProtheus/Scripts/Trocar RPO/Atu2.bat -------------------------------------------------------------------------------- /InfraProtheus/Scripts/Trocar RPO/AtuRPO.Bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmti/TGM_Advpl_Tools/HEAD/InfraProtheus/Scripts/Trocar RPO/AtuRPO.Bat -------------------------------------------------------------------------------- /InfraProtheus/Scripts/Trocar RPO/UpdateRpo.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmti/TGM_Advpl_Tools/HEAD/InfraProtheus/Scripts/Trocar RPO/UpdateRpo.ps1 -------------------------------------------------------------------------------- /InfraProtheus/Scripts/Trocar RPO/appserver.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmti/TGM_Advpl_Tools/HEAD/InfraProtheus/Scripts/Trocar RPO/appserver.ini -------------------------------------------------------------------------------- /InfraProtheus/TDSCLI/Compilar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmti/TGM_Advpl_Tools/HEAD/InfraProtheus/TDSCLI/Compilar.txt -------------------------------------------------------------------------------- /InfraProtheus/TDSCLI/TDSCLI_Param.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmti/TGM_Advpl_Tools/HEAD/InfraProtheus/TDSCLI/TDSCLI_Param.txt -------------------------------------------------------------------------------- /InfraProtheus/TDSCLI/TstWait.prw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmti/TGM_Advpl_Tools/HEAD/InfraProtheus/TDSCLI/TstWait.prw -------------------------------------------------------------------------------- /InfraProtheus/TDSCLI/UTdsCli.prw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmti/TGM_Advpl_Tools/HEAD/InfraProtheus/TDSCLI/UTdsCli.prw -------------------------------------------------------------------------------- /InfraProtheus/Trabalhando com Inis/LerIni.prw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmti/TGM_Advpl_Tools/HEAD/InfraProtheus/Trabalhando com Inis/LerIni.prw -------------------------------------------------------------------------------- /InfraProtheus/Trabalhando com Inis/TGetDba.prw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmti/TGM_Advpl_Tools/HEAD/InfraProtheus/Trabalhando com Inis/TGetDba.prw -------------------------------------------------------------------------------- /InfraProtheus/TrocarRpo/UTrocRPO.prw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmti/TGM_Advpl_Tools/HEAD/InfraProtheus/TrocarRpo/UTrocRPO.prw -------------------------------------------------------------------------------- /Interpretador/TADVPLSHELL.prw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmti/TGM_Advpl_Tools/HEAD/Interpretador/TADVPLSHELL.prw -------------------------------------------------------------------------------- /Leitura de XML/TGETMSG.prw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmti/TGM_Advpl_Tools/HEAD/Leitura de XML/TGETMSG.prw -------------------------------------------------------------------------------- /Leitura de XML/TGETOXML.prw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmti/TGM_Advpl_Tools/HEAD/Leitura de XML/TGETOXML.prw -------------------------------------------------------------------------------- /Leitura de XML/XmlChild.prw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmti/TGM_Advpl_Tools/HEAD/Leitura de XML/XmlChild.prw -------------------------------------------------------------------------------- /Logs/GravaLog.prw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmti/TGM_Advpl_Tools/HEAD/Logs/GravaLog.prw -------------------------------------------------------------------------------- /MVC/MvcUtils.prw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmti/TGM_Advpl_Tools/HEAD/MVC/MvcUtils.prw -------------------------------------------------------------------------------- /MVC/PE_MVC.prw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmti/TGM_Advpl_Tools/HEAD/MVC/PE_MVC.prw -------------------------------------------------------------------------------- /MVC/modelomvc.prw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmti/TGM_Advpl_Tools/HEAD/MVC/modelomvc.prw -------------------------------------------------------------------------------- /Mile/MILIMCLI.PRW: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmti/TGM_Advpl_Tools/HEAD/Mile/MILIMCLI.PRW -------------------------------------------------------------------------------- /Mile/MILIMCPO.PRW: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmti/TGM_Advpl_Tools/HEAD/Mile/MILIMCPO.PRW -------------------------------------------------------------------------------- /Mile/MILIMFOR.PRW: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmti/TGM_Advpl_Tools/HEAD/Mile/MILIMFOR.PRW -------------------------------------------------------------------------------- /Mile/MILIMMOT.PRW: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmti/TGM_Advpl_Tools/HEAD/Mile/MILIMMOT.PRW -------------------------------------------------------------------------------- /Mile/MILIMVEI.PRW: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmti/TGM_Advpl_Tools/HEAD/Mile/MILIMVEI.PRW -------------------------------------------------------------------------------- /Mile/MileImp.prw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmti/TGM_Advpl_Tools/HEAD/Mile/MileImp.prw -------------------------------------------------------------------------------- /NF-e/GerXMLNFe.prw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmti/TGM_Advpl_Tools/HEAD/NF-e/GerXMLNFe.prw -------------------------------------------------------------------------------- /Querys SQL/fnWhereFil.prw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmti/TGM_Advpl_Tools/HEAD/Querys SQL/fnWhereFil.prw -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmti/TGM_Advpl_Tools/HEAD/README.md -------------------------------------------------------------------------------- /TReport - Modelos/TRepTeste.prw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmti/TGM_Advpl_Tools/HEAD/TReport - Modelos/TRepTeste.prw -------------------------------------------------------------------------------- /TReport - Modelos/TReport Rápido (Auto Completar).prw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmti/TGM_Advpl_Tools/HEAD/TReport - Modelos/TReport Rápido (Auto Completar).prw -------------------------------------------------------------------------------- /Usuarios Banco de Dados/TUSUXBCO.prw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmti/TGM_Advpl_Tools/HEAD/Usuarios Banco de Dados/TUSUXBCO.prw -------------------------------------------------------------------------------- /Usuarios Banco de Dados/Tabela de Usuarios ZZD/sixzzd.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmti/TGM_Advpl_Tools/HEAD/Usuarios Banco de Dados/Tabela de Usuarios ZZD/sixzzd.dbf -------------------------------------------------------------------------------- /Usuarios Banco de Dados/Tabela de Usuarios ZZD/sx2zzd.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmti/TGM_Advpl_Tools/HEAD/Usuarios Banco de Dados/Tabela de Usuarios ZZD/sx2zzd.dbf -------------------------------------------------------------------------------- /Usuarios Banco de Dados/Tabela de Usuarios ZZD/sx3zzd.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmti/TGM_Advpl_Tools/HEAD/Usuarios Banco de Dados/Tabela de Usuarios ZZD/sx3zzd.dbf -------------------------------------------------------------------------------- /ValidaCNH/CNHValid.PRW: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmti/TGM_Advpl_Tools/HEAD/ValidaCNH/CNHValid.PRW -------------------------------------------------------------------------------- /ValidaCNH/TSTCNHVa.PRW: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmti/TGM_Advpl_Tools/HEAD/ValidaCNH/TSTCNHVa.PRW -------------------------------------------------------------------------------- /WFWebRelatorio/WFWEBRelatorio.prw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmti/TGM_Advpl_Tools/HEAD/WFWebRelatorio/WFWEBRelatorio.prw --------------------------------------------------------------------------------