lucassiqueirago

  1. Lucas Siqueira

    Android Code Snippet [B4X] Select and Extract .ZIP File

    Private Sub selectAndExtractZIP_Click ' Define the internal folder and ZIP file name Dim diretorioArquivo As String = xui.DefaultFolder Dim nomeArquivo As String = "arquivo.zip" ' Delete ZIP file if it already exists to avoid conflicts If File.Exists(diretorioArquivo...
  2. Lucas Siqueira

    [B4X] Selecionar e Extrair Arquivo .ZIP

    Private Sub selecionarExtrairZIP_Click ' Define o diretório interno padrão e o nome do arquivo ZIP que será manipulado Dim diretorioArquivo As String = xui.DefaultFolder Dim nomeArquivo As String = "arquivo.zip" ' Se já existir um arquivo ZIP com esse nome, deleta para...
  3. Lucas Siqueira

    [B4XPages] jRDC2 + CRUD MySql + Login [Código Fonte Gratuito]

    Olá, veja como ficou o projeto 1) Login; 2) Adicionar Usuário; 3) Listar Usuários; 4) Editar Usuário; 5) Excluir Usuário; Existem vários sites onde você pode baixar a biblioteca de conexão Java: mysql-connector-java-5.1.44 https://downloads.mysql.com/archives/c-j/ ou...
  4. Lucas Siqueira

    Share My Creation [B4XPages] jRDC2 + CRUD MySql + Login [Source Code Free]

    Hello, look how the project turned out 1) Login; 2) Add User; 3) List Users; 4) Edit User; 5) Delete user; There are several sites where you can download the java connection library: mysql-connector-java-5.1.44 https://downloads.mysql.com/archives/c-j/ or...
  5. Lucas Siqueira

    [B4X] Converter Base64 Para String, String Para Base64, Validar se é Base64

    Sub isBase64(text As String) As Boolean If Regex.IsMatch("^([A-Za-z0-9+/]{4})*([A-Za-z0-9+/]{4}|[A-Za-z0-9+/]{3}=|[A-Za-z0-9+/]{2}==)$", text) And text.Length > 3 Then Return True Else Return False End If End Sub Sub converterStringBase64(text As String) As String...
  6. Lucas Siqueira

    Android Code Snippet [B4X] Convert Base64 To String, String To Base64 and Validate Is Base64

    Sub isBase64(text As String) As Boolean If Regex.IsMatch("^([A-Za-z0-9+/]{4})*([A-Za-z0-9+/]{4}|[A-Za-z0-9+/]{3}=|[A-Za-z0-9+/]{2}==)$", text) And text.Length > 3 Then Return True Else Return False End If End Sub Sub convertStringToBase64(text As String) As String...
  7. Lucas Siqueira

    iOS Code Snippet [B4X] Example Play Audio MP3 (b4a + b4i + b4j)

    Explanation of the Solution Audio Session Configuration on iOS: On iOS, audio playback depends on the correct configuration of the audio session (AVAudioSession). By default, iOS may block or mute sounds if the audio session is not explicitly configured. The AVAudioSessionCategoryPlayback...
  8. Lucas Siqueira

    Share My Creation 🎮 Complete Source Code: Minesweeper Game in B4XPages 🎮 [Source Code Sale]

    🎮 Complete Source Code: Minesweeper Game in B4XPages 🎮 Developers, want to create amazing games without wasting time? Get the complete source code for the classic Minesweeper game, developed in B4XPages , and save weeks of work! This project is fully functional, compatible with B4A (Android) and...
Top