B4XSnippetClock [B4X]
A Not-So-Simple Clock [B4X]
A Not-So-Simple Clock [B4X]
@William Lancee · 2021-03-19
B4XSnippetFile handling [B4X]
File records with fixed positions & lenghts [B4x]
I had some projects where I needed fixed locations & lengths inside a record e.g. a field has a fixed length of 30 "chars". It''s a pain to write such a file. Here''s a snippet to make it easier.
@KMatle · 2021-03-17
B4XSnippetMail [NET LIBRARY][B4X]
Solving encoding issues with html mails sent with SMTP [Net library] [B4X]
Encoding the html text with base64 avoids encoding issues, especially with MS Outlook. This code is compatible with B4A and B4J.
@Erel · 2021-03-14
B4XSnippetComms & Network [B4X]
InputStream - Skip N Bytes [B4X]
This sub will skip N bytes from the stream. Usage example: you have an InputStream and you don''t want the first 100 bytes.
@Erel · 2021-03-11
B4XSnippetB4Xpages [B4XPAGES]
DESIGNER LOGIN EXAMPLE - CODE B4X - UX DESIGNER [B4XPAGES]
Login/sign-up example with B4XPages
@Lucas Siqueira · 2021-03-06
B4XSnippetEncryption [WORKS WITH ALL PLATFORMS LIKE PHP, .NET, ETC.][B4X]
AES-256 encryption with salt and iv [works with all platforms like php, .net, etc.] [B4x]
AES-256 encryption with salt and iv [works with all platforms like php, .net, etc.] [B4x]
@KMatle · 2021-02-19
B4XSnippetFirebase [B4X]
Firebase Cloud Messaging Subscribe and Unsubscribe Topic [B4X]
With this 2 Functions you can Subscribe and Unsubscribe Users from a Topic. This is Usefull for Server Apps. You need the Token from the User, the Token is the InstanceID and this ID is unique for each device, you can get this ID in the "Firebase Cloud Messaging" lib.
@Alexander Stolte · 2021-02-11
B4XSnippetDrawing [B4X][B4XPAGES]
For the Romantic in Us [B4X] [B4XPages]
For the Romantic in Us [B4X] [B4XPages]
@William Lancee · 2021-02-06
B4XSnippetWebView [B4X]
Using Three.js / WebGL in a WebView [B4X]
Using Three.js / WebGL in a WebView [B4X]
@roumei · 2021-02-03
B4XSnippetImages [B4X][XUI]
Fill and Fit images without distortion [B4X] [XUI]
Fit = Resize the image to the container size while preserving the image ratio. Leaves empty space if the image aspect ratio is different than the container aspect ratio. Fill (without distortion) = Crops the image to make it with the same aspect ratio as the container aspect ratio and then resizes the image.
@Erel · 2021-01-26
B4XSnippetB4X [NOT ONLY FOR B4J, OF COURSE][TOOL]
Property generator [not only for B4J, of course] [Tool]
Property generator [not only for B4J, of course] [Tool]
@LucaMs · 2021-01-21
B4XSnippetImages [B4X][XUI]
Create a round image [B4X] [XUI]
This code snippet is based on XUI library and it is compatible with B4A, B4i and B4J.The input is a bitmap and the output is a round bitmap (with no distortions).
@Erel · 2021-01-21
B4XSnippetColour
CIELAB color converter
CIELAB color converter
@madru · 2021-01-20
B4XSnippetJSON [B4X]
Better JSON handling of Lists with Maps without parsing errors [B4x]
Better JSON handling of Lists with Maps without parsing errors [B4x]
@KMatle · 2021-01-12
B4XSnippetImages [B4X]
Rotate Bitmap [B4X]
Rotate Bitmap [B4X]
@LucaMs · 2020-12-28
B4XSnippetDate/time [B4X]
Count specific week days in a month + tutorial about B4XSet [B4X]
Count specific week days in a month + tutorial about B4XSet [B4X]
@Erel · 2020-12-09
B4XSnippetB4X [B4X]
Cancelling ''Sleep'' Awakening Events [B4X]
Cancelling ''Sleep'' Awakening Events [B4X]
@William Lancee · 2020-12-02
B4XSnippetDialogs [B4X]
Display 2 dialogs [B4x]
When you need a second dialog over the first
@stevel05 · 2020-11-06
B4XSnippetImages [B4X][XUI]
Imageslider ios blurry image tweak - tip [b4x] [XUI]
Imageslider ios blurry image tweak / tip [b4x] [XUI]
@Andrew (Digitwell) · 2020-11-04
B4XSnippetPayment [B4X][B4XPAGES]
STRIPE Checkout - Credit card and Apple Pay [B4X] [B4XPages]
A project which demonstrates how to accept a STRIPE Payment within your app.
@Andrew (Digitwell) · 2020-11-02
B4XSnippetBarcode/scan [B4X][B4XPAGES]
Barcode Reader with Torch [B4X] [B4XPages]
Barcode Reader with Torch [B4X] [B4XPages]
@aeric · 2020-10-23
B4XSnippetB4X
Customizing New B4XPages Backup and Module Naming
Customizing New B4XPages Backup and Module Naming
@Elby dev · 2020-10-22
B4XSnippetB4X [B4X]
Shared Folders , sync subfolders click [B4X]
Shared Folders , sync subfolders click [B4X]
@a6000000 · 2020-10-21
B4XSnippetCharSequence / CSBuilder [B4X]
Set CSBuilder or Text to a Label [B4X]
This sub accepts a string or CSBuilder and sets it as the Label''s text. It is useful for cross platform solutions. Note that the Text parameter type is Object.
@Erel · 2020-10-20
B4XSnippetB4X
Be careful with IF number=number!
Comparing numbers with objects
@Midimaster · 2020-10-06
B4XSnippetMaths [B4X]
Multivariate Analysis, Matrices, Complex Numbers, One Thing Leads to Another [B4X]
Multivariate Analysis, Matrices, Complex Numbers, One Thing Leads to Another [B4X]
@William Lancee · 2020-10-04
B4XSnippetStrings [B4X]
Hex string to number [B4X]
Bit.ParseInt will fail if the hex string is larger than the maximum positive int. We can instead use the ByteConverter library to do it.
@Erel · 2020-09-25
B4XSnippetDatabase [B4X]
SQLite case insensitive searches with non-ASCII text [B4X]
SQLite case insensitive searches with non-ASCII text [B4X]
@Erel · 2020-09-20
B4XSnippetB4X [B4X]
Three state Boolean. Or: Is this Boolean variable initialized? [B4X]
Three state Boolean. Or: Is this Boolean variable initialized? [B4X]
@LucaMs · 2020-09-17
B4XSnippetB4X [B4X]
Array with Redim Preserve [B4X]
Array with Redim Preserve [B4X]
@LucaMs · 2020-09-17