├── .gitattributes ├── .gitignore ├── Add.png ├── Alerts ├── Alerts.dpr ├── Alerts.dproj ├── uMain.fmx └── uMain.pas ├── Back.png ├── BarButton ├── BarButton.dpr ├── BarButton.dproj ├── galeria.png ├── home.png ├── login.png ├── nootificacao.png ├── pedidos.png ├── setup.png ├── uMain.fmx └── uMain.pas ├── BarChartRace ├── BarChartRace.py ├── Vendas.sdb └── vendas_youtube.mp4 ├── BarChartRaceDelphi ├── BarCharRace.dpr ├── BarCharRace.dproj ├── FMX.Helper.FLowLayout.pas ├── Vendas.sdb ├── uBarChartManager.pas ├── uMain.fmx └── uMain.pas ├── Base64 ├── CadastroBase64.dpr ├── CadastroBase64.dproj ├── VCL.Helpers.pas ├── VCL.Image.Base64.pas ├── batata.png ├── uContainer.dfm ├── uContainer.pas ├── uMain.dfm └── uMain.pas ├── Controle └── VCL │ ├── Controle.dpr │ ├── Controle.dproj │ ├── uMain.dfm │ └── uMain.pas ├── ControleContas ├── .gitignore ├── AndroidManifest.template.xml ├── ControleGastos.dpr ├── ControleGastos.dproj ├── FMX.Functions.pas ├── Image │ ├── aberto.png │ ├── atraso.png │ ├── icons8-boliche-48.png │ ├── icons8-books-emoji-48.png │ ├── icons8-carrinho-de-compras-carregado-48.png │ ├── icons8-casa-48.png │ ├── icons8-desenvolvimento-em-nuvem-48.png │ ├── icons8-espreguiçadeira-48.png │ ├── icons8-exame-de-saúde-48.png │ ├── icons8-excluir-calendário-48.png │ ├── icons8-fast-food-48.png │ ├── icons8-ingredientes-48.png │ ├── icons8-online-streaming-48.png │ ├── icons8-pedido-online-48.png │ ├── icons8-roupas-48.png │ ├── icons8-sacar-dinheiro-48.png │ ├── icons8-solicitar-dinheiro-48.png │ ├── icons8-trabalhando-com-um-laptop-48.png │ ├── icons8-transporte-terrestre-48.png │ ├── ok.png │ └── prime-video.png ├── Script │ ├── categorias.sql │ ├── contas.sql │ ├── contatos.sql │ ├── create.sql │ ├── database.sql │ └── parcelas.sql ├── script.sql ├── uCards.LgXhdpiPh.fmx ├── uCards.fmx ├── uCards.pas ├── uContainer.dfm ├── uContainer.pas ├── uContas.pas ├── uMain.fmx └── uMain.pas ├── ControleVersaoDB ├── ControleVersaoDB.dpr ├── ControleVersaoDB.dproj ├── uContainer.dfm ├── uContainer.pas ├── uMain.fmx └── uMain.pas ├── DelphiBack4AppExample ├── AppConfig.pas ├── CloudCode │ └── main.js ├── DelphiBack4AppExample.dpr ├── DelphiBack4AppExample.dproj ├── Dll │ └── ParseServerDLL.dll ├── Helpers.Utils.pas ├── uCadastro.fmx ├── uCadastro.pas ├── uMain.fmx └── uMain.pas ├── DinheiroContado ├── AndroidManifest.template.xml ├── DinheiroContado.dpr ├── DinheiroContado.dproj ├── uCards.fmx ├── uCards.pas ├── uContainer.dfm ├── uContainer.pas ├── uContas.pas ├── uItemHome.fmx ├── uItemHome.pas ├── uMain.fmx ├── uMain.pas └── uSettings.pas ├── DownloadURL ├── DownloadURL.dpr ├── DownloadURL.dproj ├── uMain.fmx └── uMain.pas ├── FMX.Fast ├── FMX.Fast.pas ├── FMX.Helpers.pas ├── FastApp ├── FastApp.dpr ├── FastApp.dproj ├── uMain.fmx └── uMain.pas ├── GoogleSheets4Delphi ├── Exe │ ├── Google.Apis.Auth.PlatformServices.dll │ ├── Google.Apis.Auth.dll │ ├── Google.Apis.Core.dll │ ├── Google.Apis.PlatformServices.dll │ ├── Google.Apis.Sheets.v4.dll │ ├── Google.Apis.dll │ ├── GoogleSheets4Delphi.dll │ ├── GoogleSheets4Delphi.tlb │ └── Newtonsoft.Json.dll ├── GoogleSheets4Delphi.dpr ├── GoogleSheets4Delphi.dproj ├── GoogleSheets4Delphi_TLB.dcr ├── GoogleSheets4Delphi_TLB.pas ├── mscorlib_TLB.dcr ├── mscorlib_TLB.pas ├── uMain.dfm └── uMain.pas ├── GridPanelLayout ├── GridPanelLayout.dpr ├── GridPanelLayout.dproj ├── uMain.fmx └── uMain.pas ├── HelpersUnits ├── Chart4Delphi.pas ├── FMX.Alerts.pas ├── FMX.Functions.pas ├── FMX.Helper.FloatAnimation.pas ├── FMX.Helpers.Button.pas ├── FMX.Helpers.Firedac.pas ├── FMX.Helpers.FloatAnimation.pas ├── FMX.Helpers.Image.pas ├── FMX.Helpers.JSON.pas ├── FMX.Helpers.Layouts.pas ├── FMX.Helpers.ListBox.pas ├── FMX.Helpers.Rectangle.pas ├── FMX.Helpers.Shape.pas ├── FMX.Helpers.TabControl.pas ├── FMX.Helpers.Text.pas ├── FMX.Helpers.pas ├── FMX.JSON.Utils.pas ├── FMX.Slides.pas └── uChart.pas ├── JogoDaVelha ├── JogoDaVelha.dpr ├── JogoDaVelha.dproj ├── uMain.fmx └── uMain.pas ├── MenuWhatsApp ├── WhatsappMenu.dpr ├── WhatsappMenu.dproj ├── uMain.fmx └── uMain.pas ├── Post.png ├── QRCode ├── QRCode.dpr ├── QRCode.dproj ├── uMain.fmx └── uMain.pas ├── Quiz ├── Quizz.dpr ├── Quizz.dproj ├── uMain.fmx └── uMain.pas ├── README.md ├── SLides ├── 1.jpg ├── 2.jpg ├── 3.jpg ├── 4.jpg ├── FMX.Slides.pas ├── Slides.dpr ├── Slides.dproj ├── uMain.fmx └── uMain.pas ├── WhatsApp ├── WhatsApp.dpr ├── WhatsApp.dproj ├── uMain.dfm └── uMain.pas ├── WorldCup2022 ├── FMX.Helpers.pas ├── Image │ ├── alemanha.png │ ├── alemanha2.png │ ├── arabia-saudita.png │ ├── arabia-saudita2.png │ ├── argentina.png │ ├── argentina2.png │ ├── australia.png │ ├── australia2.png │ ├── belgica.png │ ├── belgica2.png │ ├── brasil.png │ ├── brasil2.png │ ├── camaroes.png │ ├── camaroes2.png │ ├── canada.png │ ├── canada2.png │ ├── coreia-do-sul.png │ ├── coreia-do-sul2.png │ ├── costa-rica.png │ ├── costa-rica2.png │ ├── croacia.png │ ├── croacia2.png │ ├── dinamarca.png │ ├── dinamarca2.png │ ├── ecuador.png │ ├── ecuador2.png │ ├── espanha.png │ ├── espanha2.png │ ├── estados-unidos.png │ ├── estados-unidos2.png │ ├── frança.png │ ├── frança2.png │ ├── gana.png │ ├── gana2.png │ ├── holanda.png │ ├── holanda2.png │ ├── inglaterra.png │ ├── inglaterra2.png │ ├── irã.png │ ├── irã2.png │ ├── japão.png │ ├── japão2.png │ ├── marrocos.png │ ├── marrocos2.png │ ├── mexico.png │ ├── mexico2.png │ ├── pais-de-gales.png │ ├── pais-de-gales2.png │ ├── polonia.png │ ├── polonia2.png │ ├── portugal2.png │ ├── protugal.png │ ├── qatar.png │ ├── qatar2.png │ ├── senagal2.png │ ├── senegal.png │ ├── servia.png │ ├── servia2.png │ ├── suica2.png │ ├── suiça.png │ ├── tunisia.png │ ├── tunisia2.png │ ├── uruguai.png │ └── uruguai2.png ├── WorldCup2022.dpr ├── WorldCup2022.dproj ├── script.sql ├── uContainer.dfm ├── uContainer.pas ├── uMain.fmx └── uMain.pas └── ZeroAPP ├── ZeroCatalogo.dpr ├── ZeroCatalogo.dproj ├── uMain.fmx └── uMain.pas /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/.gitignore -------------------------------------------------------------------------------- /Add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/Add.png -------------------------------------------------------------------------------- /Alerts/Alerts.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/Alerts/Alerts.dpr -------------------------------------------------------------------------------- /Alerts/Alerts.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/Alerts/Alerts.dproj -------------------------------------------------------------------------------- /Alerts/uMain.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/Alerts/uMain.fmx -------------------------------------------------------------------------------- /Alerts/uMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/Alerts/uMain.pas -------------------------------------------------------------------------------- /Back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/Back.png -------------------------------------------------------------------------------- /BarButton/BarButton.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/BarButton/BarButton.dpr -------------------------------------------------------------------------------- /BarButton/BarButton.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/BarButton/BarButton.dproj -------------------------------------------------------------------------------- /BarButton/galeria.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/BarButton/galeria.png -------------------------------------------------------------------------------- /BarButton/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/BarButton/home.png -------------------------------------------------------------------------------- /BarButton/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/BarButton/login.png -------------------------------------------------------------------------------- /BarButton/nootificacao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/BarButton/nootificacao.png -------------------------------------------------------------------------------- /BarButton/pedidos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/BarButton/pedidos.png -------------------------------------------------------------------------------- /BarButton/setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/BarButton/setup.png -------------------------------------------------------------------------------- /BarButton/uMain.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/BarButton/uMain.fmx -------------------------------------------------------------------------------- /BarButton/uMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/BarButton/uMain.pas -------------------------------------------------------------------------------- /BarChartRace/BarChartRace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/BarChartRace/BarChartRace.py -------------------------------------------------------------------------------- /BarChartRace/Vendas.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/BarChartRace/Vendas.sdb -------------------------------------------------------------------------------- /BarChartRace/vendas_youtube.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/BarChartRace/vendas_youtube.mp4 -------------------------------------------------------------------------------- /BarChartRaceDelphi/BarCharRace.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/BarChartRaceDelphi/BarCharRace.dpr -------------------------------------------------------------------------------- /BarChartRaceDelphi/BarCharRace.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/BarChartRaceDelphi/BarCharRace.dproj -------------------------------------------------------------------------------- /BarChartRaceDelphi/FMX.Helper.FLowLayout.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/BarChartRaceDelphi/FMX.Helper.FLowLayout.pas -------------------------------------------------------------------------------- /BarChartRaceDelphi/Vendas.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/BarChartRaceDelphi/Vendas.sdb -------------------------------------------------------------------------------- /BarChartRaceDelphi/uBarChartManager.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/BarChartRaceDelphi/uBarChartManager.pas -------------------------------------------------------------------------------- /BarChartRaceDelphi/uMain.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/BarChartRaceDelphi/uMain.fmx -------------------------------------------------------------------------------- /BarChartRaceDelphi/uMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/BarChartRaceDelphi/uMain.pas -------------------------------------------------------------------------------- /Base64/CadastroBase64.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/Base64/CadastroBase64.dpr -------------------------------------------------------------------------------- /Base64/CadastroBase64.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/Base64/CadastroBase64.dproj -------------------------------------------------------------------------------- /Base64/VCL.Helpers.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/Base64/VCL.Helpers.pas -------------------------------------------------------------------------------- /Base64/VCL.Image.Base64.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/Base64/VCL.Image.Base64.pas -------------------------------------------------------------------------------- /Base64/batata.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/Base64/batata.png -------------------------------------------------------------------------------- /Base64/uContainer.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/Base64/uContainer.dfm -------------------------------------------------------------------------------- /Base64/uContainer.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/Base64/uContainer.pas -------------------------------------------------------------------------------- /Base64/uMain.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/Base64/uMain.dfm -------------------------------------------------------------------------------- /Base64/uMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/Base64/uMain.pas -------------------------------------------------------------------------------- /Controle/VCL/Controle.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/Controle/VCL/Controle.dpr -------------------------------------------------------------------------------- /Controle/VCL/Controle.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/Controle/VCL/Controle.dproj -------------------------------------------------------------------------------- /Controle/VCL/uMain.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/Controle/VCL/uMain.dfm -------------------------------------------------------------------------------- /Controle/VCL/uMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/Controle/VCL/uMain.pas -------------------------------------------------------------------------------- /ControleContas/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/ControleContas/.gitignore -------------------------------------------------------------------------------- /ControleContas/AndroidManifest.template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/ControleContas/AndroidManifest.template.xml -------------------------------------------------------------------------------- /ControleContas/ControleGastos.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/ControleContas/ControleGastos.dpr -------------------------------------------------------------------------------- /ControleContas/ControleGastos.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/ControleContas/ControleGastos.dproj -------------------------------------------------------------------------------- /ControleContas/FMX.Functions.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/ControleContas/FMX.Functions.pas -------------------------------------------------------------------------------- /ControleContas/Image/aberto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/ControleContas/Image/aberto.png -------------------------------------------------------------------------------- /ControleContas/Image/atraso.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/ControleContas/Image/atraso.png -------------------------------------------------------------------------------- /ControleContas/Image/icons8-boliche-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/ControleContas/Image/icons8-boliche-48.png -------------------------------------------------------------------------------- /ControleContas/Image/icons8-books-emoji-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/ControleContas/Image/icons8-books-emoji-48.png -------------------------------------------------------------------------------- /ControleContas/Image/icons8-carrinho-de-compras-carregado-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/ControleContas/Image/icons8-carrinho-de-compras-carregado-48.png -------------------------------------------------------------------------------- /ControleContas/Image/icons8-casa-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/ControleContas/Image/icons8-casa-48.png -------------------------------------------------------------------------------- /ControleContas/Image/icons8-desenvolvimento-em-nuvem-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/ControleContas/Image/icons8-desenvolvimento-em-nuvem-48.png -------------------------------------------------------------------------------- /ControleContas/Image/icons8-espreguiçadeira-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/ControleContas/Image/icons8-espreguiçadeira-48.png -------------------------------------------------------------------------------- /ControleContas/Image/icons8-exame-de-saúde-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/ControleContas/Image/icons8-exame-de-saúde-48.png -------------------------------------------------------------------------------- /ControleContas/Image/icons8-excluir-calendário-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/ControleContas/Image/icons8-excluir-calendário-48.png -------------------------------------------------------------------------------- /ControleContas/Image/icons8-fast-food-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/ControleContas/Image/icons8-fast-food-48.png -------------------------------------------------------------------------------- /ControleContas/Image/icons8-ingredientes-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/ControleContas/Image/icons8-ingredientes-48.png -------------------------------------------------------------------------------- /ControleContas/Image/icons8-online-streaming-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/ControleContas/Image/icons8-online-streaming-48.png -------------------------------------------------------------------------------- /ControleContas/Image/icons8-pedido-online-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/ControleContas/Image/icons8-pedido-online-48.png -------------------------------------------------------------------------------- /ControleContas/Image/icons8-roupas-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/ControleContas/Image/icons8-roupas-48.png -------------------------------------------------------------------------------- /ControleContas/Image/icons8-sacar-dinheiro-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/ControleContas/Image/icons8-sacar-dinheiro-48.png -------------------------------------------------------------------------------- /ControleContas/Image/icons8-solicitar-dinheiro-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/ControleContas/Image/icons8-solicitar-dinheiro-48.png -------------------------------------------------------------------------------- /ControleContas/Image/icons8-trabalhando-com-um-laptop-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/ControleContas/Image/icons8-trabalhando-com-um-laptop-48.png -------------------------------------------------------------------------------- /ControleContas/Image/icons8-transporte-terrestre-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/ControleContas/Image/icons8-transporte-terrestre-48.png -------------------------------------------------------------------------------- /ControleContas/Image/ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/ControleContas/Image/ok.png -------------------------------------------------------------------------------- /ControleContas/Image/prime-video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/ControleContas/Image/prime-video.png -------------------------------------------------------------------------------- /ControleContas/Script/categorias.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/ControleContas/Script/categorias.sql -------------------------------------------------------------------------------- /ControleContas/Script/contas.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/ControleContas/Script/contas.sql -------------------------------------------------------------------------------- /ControleContas/Script/contatos.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/ControleContas/Script/contatos.sql -------------------------------------------------------------------------------- /ControleContas/Script/create.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/ControleContas/Script/create.sql -------------------------------------------------------------------------------- /ControleContas/Script/database.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/ControleContas/Script/database.sql -------------------------------------------------------------------------------- /ControleContas/Script/parcelas.sql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ControleContas/script.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/ControleContas/script.sql -------------------------------------------------------------------------------- /ControleContas/uCards.LgXhdpiPh.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/ControleContas/uCards.LgXhdpiPh.fmx -------------------------------------------------------------------------------- /ControleContas/uCards.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/ControleContas/uCards.fmx -------------------------------------------------------------------------------- /ControleContas/uCards.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/ControleContas/uCards.pas -------------------------------------------------------------------------------- /ControleContas/uContainer.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/ControleContas/uContainer.dfm -------------------------------------------------------------------------------- /ControleContas/uContainer.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/ControleContas/uContainer.pas -------------------------------------------------------------------------------- /ControleContas/uContas.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/ControleContas/uContas.pas -------------------------------------------------------------------------------- /ControleContas/uMain.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/ControleContas/uMain.fmx -------------------------------------------------------------------------------- /ControleContas/uMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/ControleContas/uMain.pas -------------------------------------------------------------------------------- /ControleVersaoDB/ControleVersaoDB.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/ControleVersaoDB/ControleVersaoDB.dpr -------------------------------------------------------------------------------- /ControleVersaoDB/ControleVersaoDB.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/ControleVersaoDB/ControleVersaoDB.dproj -------------------------------------------------------------------------------- /ControleVersaoDB/uContainer.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/ControleVersaoDB/uContainer.dfm -------------------------------------------------------------------------------- /ControleVersaoDB/uContainer.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/ControleVersaoDB/uContainer.pas -------------------------------------------------------------------------------- /ControleVersaoDB/uMain.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/ControleVersaoDB/uMain.fmx -------------------------------------------------------------------------------- /ControleVersaoDB/uMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/ControleVersaoDB/uMain.pas -------------------------------------------------------------------------------- /DelphiBack4AppExample/AppConfig.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/DelphiBack4AppExample/AppConfig.pas -------------------------------------------------------------------------------- /DelphiBack4AppExample/CloudCode/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/DelphiBack4AppExample/CloudCode/main.js -------------------------------------------------------------------------------- /DelphiBack4AppExample/DelphiBack4AppExample.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/DelphiBack4AppExample/DelphiBack4AppExample.dpr -------------------------------------------------------------------------------- /DelphiBack4AppExample/DelphiBack4AppExample.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/DelphiBack4AppExample/DelphiBack4AppExample.dproj -------------------------------------------------------------------------------- /DelphiBack4AppExample/Dll/ParseServerDLL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/DelphiBack4AppExample/Dll/ParseServerDLL.dll -------------------------------------------------------------------------------- /DelphiBack4AppExample/Helpers.Utils.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/DelphiBack4AppExample/Helpers.Utils.pas -------------------------------------------------------------------------------- /DelphiBack4AppExample/uCadastro.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/DelphiBack4AppExample/uCadastro.fmx -------------------------------------------------------------------------------- /DelphiBack4AppExample/uCadastro.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/DelphiBack4AppExample/uCadastro.pas -------------------------------------------------------------------------------- /DelphiBack4AppExample/uMain.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/DelphiBack4AppExample/uMain.fmx -------------------------------------------------------------------------------- /DelphiBack4AppExample/uMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/DelphiBack4AppExample/uMain.pas -------------------------------------------------------------------------------- /DinheiroContado/AndroidManifest.template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/DinheiroContado/AndroidManifest.template.xml -------------------------------------------------------------------------------- /DinheiroContado/DinheiroContado.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/DinheiroContado/DinheiroContado.dpr -------------------------------------------------------------------------------- /DinheiroContado/DinheiroContado.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/DinheiroContado/DinheiroContado.dproj -------------------------------------------------------------------------------- /DinheiroContado/uCards.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/DinheiroContado/uCards.fmx -------------------------------------------------------------------------------- /DinheiroContado/uCards.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/DinheiroContado/uCards.pas -------------------------------------------------------------------------------- /DinheiroContado/uContainer.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/DinheiroContado/uContainer.dfm -------------------------------------------------------------------------------- /DinheiroContado/uContainer.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/DinheiroContado/uContainer.pas -------------------------------------------------------------------------------- /DinheiroContado/uContas.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/DinheiroContado/uContas.pas -------------------------------------------------------------------------------- /DinheiroContado/uItemHome.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/DinheiroContado/uItemHome.fmx -------------------------------------------------------------------------------- /DinheiroContado/uItemHome.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/DinheiroContado/uItemHome.pas -------------------------------------------------------------------------------- /DinheiroContado/uMain.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/DinheiroContado/uMain.fmx -------------------------------------------------------------------------------- /DinheiroContado/uMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/DinheiroContado/uMain.pas -------------------------------------------------------------------------------- /DinheiroContado/uSettings.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/DinheiroContado/uSettings.pas -------------------------------------------------------------------------------- /DownloadURL/DownloadURL.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/DownloadURL/DownloadURL.dpr -------------------------------------------------------------------------------- /DownloadURL/DownloadURL.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/DownloadURL/DownloadURL.dproj -------------------------------------------------------------------------------- /DownloadURL/uMain.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/DownloadURL/uMain.fmx -------------------------------------------------------------------------------- /DownloadURL/uMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/DownloadURL/uMain.pas -------------------------------------------------------------------------------- /FMX.Fast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/FMX.Fast -------------------------------------------------------------------------------- /FMX.Fast.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/FMX.Fast.pas -------------------------------------------------------------------------------- /FMX.Helpers.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/FMX.Helpers.pas -------------------------------------------------------------------------------- /FastApp/FastApp.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/FastApp/FastApp.dpr -------------------------------------------------------------------------------- /FastApp/FastApp.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/FastApp/FastApp.dproj -------------------------------------------------------------------------------- /FastApp/uMain.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/FastApp/uMain.fmx -------------------------------------------------------------------------------- /FastApp/uMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/FastApp/uMain.pas -------------------------------------------------------------------------------- /GoogleSheets4Delphi/Exe/Google.Apis.Auth.PlatformServices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/GoogleSheets4Delphi/Exe/Google.Apis.Auth.PlatformServices.dll -------------------------------------------------------------------------------- /GoogleSheets4Delphi/Exe/Google.Apis.Auth.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/GoogleSheets4Delphi/Exe/Google.Apis.Auth.dll -------------------------------------------------------------------------------- /GoogleSheets4Delphi/Exe/Google.Apis.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/GoogleSheets4Delphi/Exe/Google.Apis.Core.dll -------------------------------------------------------------------------------- /GoogleSheets4Delphi/Exe/Google.Apis.PlatformServices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/GoogleSheets4Delphi/Exe/Google.Apis.PlatformServices.dll -------------------------------------------------------------------------------- /GoogleSheets4Delphi/Exe/Google.Apis.Sheets.v4.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/GoogleSheets4Delphi/Exe/Google.Apis.Sheets.v4.dll -------------------------------------------------------------------------------- /GoogleSheets4Delphi/Exe/Google.Apis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/GoogleSheets4Delphi/Exe/Google.Apis.dll -------------------------------------------------------------------------------- /GoogleSheets4Delphi/Exe/GoogleSheets4Delphi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/GoogleSheets4Delphi/Exe/GoogleSheets4Delphi.dll -------------------------------------------------------------------------------- /GoogleSheets4Delphi/Exe/GoogleSheets4Delphi.tlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/GoogleSheets4Delphi/Exe/GoogleSheets4Delphi.tlb -------------------------------------------------------------------------------- /GoogleSheets4Delphi/Exe/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/GoogleSheets4Delphi/Exe/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /GoogleSheets4Delphi/GoogleSheets4Delphi.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/GoogleSheets4Delphi/GoogleSheets4Delphi.dpr -------------------------------------------------------------------------------- /GoogleSheets4Delphi/GoogleSheets4Delphi.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/GoogleSheets4Delphi/GoogleSheets4Delphi.dproj -------------------------------------------------------------------------------- /GoogleSheets4Delphi/GoogleSheets4Delphi_TLB.dcr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/GoogleSheets4Delphi/GoogleSheets4Delphi_TLB.dcr -------------------------------------------------------------------------------- /GoogleSheets4Delphi/GoogleSheets4Delphi_TLB.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/GoogleSheets4Delphi/GoogleSheets4Delphi_TLB.pas -------------------------------------------------------------------------------- /GoogleSheets4Delphi/mscorlib_TLB.dcr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/GoogleSheets4Delphi/mscorlib_TLB.dcr -------------------------------------------------------------------------------- /GoogleSheets4Delphi/mscorlib_TLB.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/GoogleSheets4Delphi/mscorlib_TLB.pas -------------------------------------------------------------------------------- /GoogleSheets4Delphi/uMain.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/GoogleSheets4Delphi/uMain.dfm -------------------------------------------------------------------------------- /GoogleSheets4Delphi/uMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/GoogleSheets4Delphi/uMain.pas -------------------------------------------------------------------------------- /GridPanelLayout/GridPanelLayout.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/GridPanelLayout/GridPanelLayout.dpr -------------------------------------------------------------------------------- /GridPanelLayout/GridPanelLayout.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/GridPanelLayout/GridPanelLayout.dproj -------------------------------------------------------------------------------- /GridPanelLayout/uMain.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/GridPanelLayout/uMain.fmx -------------------------------------------------------------------------------- /GridPanelLayout/uMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/GridPanelLayout/uMain.pas -------------------------------------------------------------------------------- /HelpersUnits/Chart4Delphi.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/HelpersUnits/Chart4Delphi.pas -------------------------------------------------------------------------------- /HelpersUnits/FMX.Alerts.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/HelpersUnits/FMX.Alerts.pas -------------------------------------------------------------------------------- /HelpersUnits/FMX.Functions.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/HelpersUnits/FMX.Functions.pas -------------------------------------------------------------------------------- /HelpersUnits/FMX.Helper.FloatAnimation.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/HelpersUnits/FMX.Helper.FloatAnimation.pas -------------------------------------------------------------------------------- /HelpersUnits/FMX.Helpers.Button.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/HelpersUnits/FMX.Helpers.Button.pas -------------------------------------------------------------------------------- /HelpersUnits/FMX.Helpers.Firedac.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/HelpersUnits/FMX.Helpers.Firedac.pas -------------------------------------------------------------------------------- /HelpersUnits/FMX.Helpers.FloatAnimation.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/HelpersUnits/FMX.Helpers.FloatAnimation.pas -------------------------------------------------------------------------------- /HelpersUnits/FMX.Helpers.Image.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/HelpersUnits/FMX.Helpers.Image.pas -------------------------------------------------------------------------------- /HelpersUnits/FMX.Helpers.JSON.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/HelpersUnits/FMX.Helpers.JSON.pas -------------------------------------------------------------------------------- /HelpersUnits/FMX.Helpers.Layouts.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/HelpersUnits/FMX.Helpers.Layouts.pas -------------------------------------------------------------------------------- /HelpersUnits/FMX.Helpers.ListBox.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/HelpersUnits/FMX.Helpers.ListBox.pas -------------------------------------------------------------------------------- /HelpersUnits/FMX.Helpers.Rectangle.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/HelpersUnits/FMX.Helpers.Rectangle.pas -------------------------------------------------------------------------------- /HelpersUnits/FMX.Helpers.Shape.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/HelpersUnits/FMX.Helpers.Shape.pas -------------------------------------------------------------------------------- /HelpersUnits/FMX.Helpers.TabControl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/HelpersUnits/FMX.Helpers.TabControl.pas -------------------------------------------------------------------------------- /HelpersUnits/FMX.Helpers.Text.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/HelpersUnits/FMX.Helpers.Text.pas -------------------------------------------------------------------------------- /HelpersUnits/FMX.Helpers.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/HelpersUnits/FMX.Helpers.pas -------------------------------------------------------------------------------- /HelpersUnits/FMX.JSON.Utils.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/HelpersUnits/FMX.JSON.Utils.pas -------------------------------------------------------------------------------- /HelpersUnits/FMX.Slides.pas: -------------------------------------------------------------------------------- 1 | unit FMX.Slides; 2 | 3 | interface 4 | 5 | implementation 6 | 7 | end. 8 | 9 | 10 | -------------------------------------------------------------------------------- /HelpersUnits/uChart.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/HelpersUnits/uChart.pas -------------------------------------------------------------------------------- /JogoDaVelha/JogoDaVelha.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/JogoDaVelha/JogoDaVelha.dpr -------------------------------------------------------------------------------- /JogoDaVelha/JogoDaVelha.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/JogoDaVelha/JogoDaVelha.dproj -------------------------------------------------------------------------------- /JogoDaVelha/uMain.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/JogoDaVelha/uMain.fmx -------------------------------------------------------------------------------- /JogoDaVelha/uMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/JogoDaVelha/uMain.pas -------------------------------------------------------------------------------- /MenuWhatsApp/WhatsappMenu.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/MenuWhatsApp/WhatsappMenu.dpr -------------------------------------------------------------------------------- /MenuWhatsApp/WhatsappMenu.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/MenuWhatsApp/WhatsappMenu.dproj -------------------------------------------------------------------------------- /MenuWhatsApp/uMain.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/MenuWhatsApp/uMain.fmx -------------------------------------------------------------------------------- /MenuWhatsApp/uMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/MenuWhatsApp/uMain.pas -------------------------------------------------------------------------------- /Post.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/Post.png -------------------------------------------------------------------------------- /QRCode/QRCode.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/QRCode/QRCode.dpr -------------------------------------------------------------------------------- /QRCode/QRCode.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/QRCode/QRCode.dproj -------------------------------------------------------------------------------- /QRCode/uMain.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/QRCode/uMain.fmx -------------------------------------------------------------------------------- /QRCode/uMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/QRCode/uMain.pas -------------------------------------------------------------------------------- /Quiz/Quizz.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/Quiz/Quizz.dpr -------------------------------------------------------------------------------- /Quiz/Quizz.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/Quiz/Quizz.dproj -------------------------------------------------------------------------------- /Quiz/uMain.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/Quiz/uMain.fmx -------------------------------------------------------------------------------- /Quiz/uMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/Quiz/uMain.pas -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/README.md -------------------------------------------------------------------------------- /SLides/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/SLides/1.jpg -------------------------------------------------------------------------------- /SLides/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/SLides/2.jpg -------------------------------------------------------------------------------- /SLides/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/SLides/3.jpg -------------------------------------------------------------------------------- /SLides/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/SLides/4.jpg -------------------------------------------------------------------------------- /SLides/FMX.Slides.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/SLides/FMX.Slides.pas -------------------------------------------------------------------------------- /SLides/Slides.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/SLides/Slides.dpr -------------------------------------------------------------------------------- /SLides/Slides.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/SLides/Slides.dproj -------------------------------------------------------------------------------- /SLides/uMain.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/SLides/uMain.fmx -------------------------------------------------------------------------------- /SLides/uMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/SLides/uMain.pas -------------------------------------------------------------------------------- /WhatsApp/WhatsApp.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/WhatsApp/WhatsApp.dpr -------------------------------------------------------------------------------- /WhatsApp/WhatsApp.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/WhatsApp/WhatsApp.dproj -------------------------------------------------------------------------------- /WhatsApp/uMain.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/WhatsApp/uMain.dfm -------------------------------------------------------------------------------- /WhatsApp/uMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/WhatsApp/uMain.pas -------------------------------------------------------------------------------- /WorldCup2022/FMX.Helpers.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/WorldCup2022/FMX.Helpers.pas -------------------------------------------------------------------------------- /WorldCup2022/Image/alemanha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/WorldCup2022/Image/alemanha.png -------------------------------------------------------------------------------- /WorldCup2022/Image/alemanha2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/WorldCup2022/Image/alemanha2.png -------------------------------------------------------------------------------- /WorldCup2022/Image/arabia-saudita.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/WorldCup2022/Image/arabia-saudita.png -------------------------------------------------------------------------------- /WorldCup2022/Image/arabia-saudita2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/WorldCup2022/Image/arabia-saudita2.png -------------------------------------------------------------------------------- /WorldCup2022/Image/argentina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/WorldCup2022/Image/argentina.png -------------------------------------------------------------------------------- /WorldCup2022/Image/argentina2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/WorldCup2022/Image/argentina2.png -------------------------------------------------------------------------------- /WorldCup2022/Image/australia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/WorldCup2022/Image/australia.png -------------------------------------------------------------------------------- /WorldCup2022/Image/australia2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/WorldCup2022/Image/australia2.png -------------------------------------------------------------------------------- /WorldCup2022/Image/belgica.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/WorldCup2022/Image/belgica.png -------------------------------------------------------------------------------- /WorldCup2022/Image/belgica2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/WorldCup2022/Image/belgica2.png -------------------------------------------------------------------------------- /WorldCup2022/Image/brasil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/WorldCup2022/Image/brasil.png -------------------------------------------------------------------------------- /WorldCup2022/Image/brasil2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/WorldCup2022/Image/brasil2.png -------------------------------------------------------------------------------- /WorldCup2022/Image/camaroes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/WorldCup2022/Image/camaroes.png -------------------------------------------------------------------------------- /WorldCup2022/Image/camaroes2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/WorldCup2022/Image/camaroes2.png -------------------------------------------------------------------------------- /WorldCup2022/Image/canada.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/WorldCup2022/Image/canada.png -------------------------------------------------------------------------------- /WorldCup2022/Image/canada2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/WorldCup2022/Image/canada2.png -------------------------------------------------------------------------------- /WorldCup2022/Image/coreia-do-sul.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/WorldCup2022/Image/coreia-do-sul.png -------------------------------------------------------------------------------- /WorldCup2022/Image/coreia-do-sul2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/WorldCup2022/Image/coreia-do-sul2.png -------------------------------------------------------------------------------- /WorldCup2022/Image/costa-rica.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/WorldCup2022/Image/costa-rica.png -------------------------------------------------------------------------------- /WorldCup2022/Image/costa-rica2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/WorldCup2022/Image/costa-rica2.png -------------------------------------------------------------------------------- /WorldCup2022/Image/croacia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/WorldCup2022/Image/croacia.png -------------------------------------------------------------------------------- /WorldCup2022/Image/croacia2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/WorldCup2022/Image/croacia2.png -------------------------------------------------------------------------------- /WorldCup2022/Image/dinamarca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/WorldCup2022/Image/dinamarca.png -------------------------------------------------------------------------------- /WorldCup2022/Image/dinamarca2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/WorldCup2022/Image/dinamarca2.png -------------------------------------------------------------------------------- /WorldCup2022/Image/ecuador.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/WorldCup2022/Image/ecuador.png -------------------------------------------------------------------------------- /WorldCup2022/Image/ecuador2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/WorldCup2022/Image/ecuador2.png -------------------------------------------------------------------------------- /WorldCup2022/Image/espanha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/WorldCup2022/Image/espanha.png -------------------------------------------------------------------------------- /WorldCup2022/Image/espanha2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/WorldCup2022/Image/espanha2.png -------------------------------------------------------------------------------- /WorldCup2022/Image/estados-unidos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/WorldCup2022/Image/estados-unidos.png -------------------------------------------------------------------------------- /WorldCup2022/Image/estados-unidos2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/WorldCup2022/Image/estados-unidos2.png -------------------------------------------------------------------------------- /WorldCup2022/Image/frança.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/WorldCup2022/Image/frança.png -------------------------------------------------------------------------------- /WorldCup2022/Image/frança2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/WorldCup2022/Image/frança2.png -------------------------------------------------------------------------------- /WorldCup2022/Image/gana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/WorldCup2022/Image/gana.png -------------------------------------------------------------------------------- /WorldCup2022/Image/gana2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/WorldCup2022/Image/gana2.png -------------------------------------------------------------------------------- /WorldCup2022/Image/holanda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/WorldCup2022/Image/holanda.png -------------------------------------------------------------------------------- /WorldCup2022/Image/holanda2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/WorldCup2022/Image/holanda2.png -------------------------------------------------------------------------------- /WorldCup2022/Image/inglaterra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/WorldCup2022/Image/inglaterra.png -------------------------------------------------------------------------------- /WorldCup2022/Image/inglaterra2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/WorldCup2022/Image/inglaterra2.png -------------------------------------------------------------------------------- /WorldCup2022/Image/irã.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/WorldCup2022/Image/irã.png -------------------------------------------------------------------------------- /WorldCup2022/Image/irã2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/WorldCup2022/Image/irã2.png -------------------------------------------------------------------------------- /WorldCup2022/Image/japão.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/WorldCup2022/Image/japão.png -------------------------------------------------------------------------------- /WorldCup2022/Image/japão2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/WorldCup2022/Image/japão2.png -------------------------------------------------------------------------------- /WorldCup2022/Image/marrocos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/WorldCup2022/Image/marrocos.png -------------------------------------------------------------------------------- /WorldCup2022/Image/marrocos2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/WorldCup2022/Image/marrocos2.png -------------------------------------------------------------------------------- /WorldCup2022/Image/mexico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/WorldCup2022/Image/mexico.png -------------------------------------------------------------------------------- /WorldCup2022/Image/mexico2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/WorldCup2022/Image/mexico2.png -------------------------------------------------------------------------------- /WorldCup2022/Image/pais-de-gales.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/WorldCup2022/Image/pais-de-gales.png -------------------------------------------------------------------------------- /WorldCup2022/Image/pais-de-gales2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/WorldCup2022/Image/pais-de-gales2.png -------------------------------------------------------------------------------- /WorldCup2022/Image/polonia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/WorldCup2022/Image/polonia.png -------------------------------------------------------------------------------- /WorldCup2022/Image/polonia2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/WorldCup2022/Image/polonia2.png -------------------------------------------------------------------------------- /WorldCup2022/Image/portugal2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/WorldCup2022/Image/portugal2.png -------------------------------------------------------------------------------- /WorldCup2022/Image/protugal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/WorldCup2022/Image/protugal.png -------------------------------------------------------------------------------- /WorldCup2022/Image/qatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/WorldCup2022/Image/qatar.png -------------------------------------------------------------------------------- /WorldCup2022/Image/qatar2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/WorldCup2022/Image/qatar2.png -------------------------------------------------------------------------------- /WorldCup2022/Image/senagal2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/WorldCup2022/Image/senagal2.png -------------------------------------------------------------------------------- /WorldCup2022/Image/senegal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/WorldCup2022/Image/senegal.png -------------------------------------------------------------------------------- /WorldCup2022/Image/servia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/WorldCup2022/Image/servia.png -------------------------------------------------------------------------------- /WorldCup2022/Image/servia2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/WorldCup2022/Image/servia2.png -------------------------------------------------------------------------------- /WorldCup2022/Image/suica2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/WorldCup2022/Image/suica2.png -------------------------------------------------------------------------------- /WorldCup2022/Image/suiça.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/WorldCup2022/Image/suiça.png -------------------------------------------------------------------------------- /WorldCup2022/Image/tunisia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/WorldCup2022/Image/tunisia.png -------------------------------------------------------------------------------- /WorldCup2022/Image/tunisia2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/WorldCup2022/Image/tunisia2.png -------------------------------------------------------------------------------- /WorldCup2022/Image/uruguai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/WorldCup2022/Image/uruguai.png -------------------------------------------------------------------------------- /WorldCup2022/Image/uruguai2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/WorldCup2022/Image/uruguai2.png -------------------------------------------------------------------------------- /WorldCup2022/WorldCup2022.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/WorldCup2022/WorldCup2022.dpr -------------------------------------------------------------------------------- /WorldCup2022/WorldCup2022.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/WorldCup2022/WorldCup2022.dproj -------------------------------------------------------------------------------- /WorldCup2022/script.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/WorldCup2022/script.sql -------------------------------------------------------------------------------- /WorldCup2022/uContainer.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/WorldCup2022/uContainer.dfm -------------------------------------------------------------------------------- /WorldCup2022/uContainer.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/WorldCup2022/uContainer.pas -------------------------------------------------------------------------------- /WorldCup2022/uMain.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/WorldCup2022/uMain.fmx -------------------------------------------------------------------------------- /WorldCup2022/uMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/WorldCup2022/uMain.pas -------------------------------------------------------------------------------- /ZeroAPP/ZeroCatalogo.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/ZeroAPP/ZeroCatalogo.dpr -------------------------------------------------------------------------------- /ZeroAPP/ZeroCatalogo.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/ZeroAPP/ZeroCatalogo.dproj -------------------------------------------------------------------------------- /ZeroAPP/uMain.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/ZeroAPP/uMain.fmx -------------------------------------------------------------------------------- /ZeroAPP/uMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DelphiCreative/Projetos/HEAD/ZeroAPP/uMain.pas --------------------------------------------------------------------------------