aeric Expert Licensed User Longtime User Jul 31, 2025 #1 I can't paste code to my post. Tried with Chrome, Firefox and Edge. I will restart my PC and see how.
I can't paste code to my post. Tried with Chrome, Firefox and Edge. I will restart my PC and see how.
aeric Expert Licensed User Longtime User Jul 31, 2025 #2 Restarted still the same. The message shows: Oops! We ran into some problems. Please try again later. More error details may be in the browser console.
Restarted still the same. The message shows: Oops! We ran into some problems. Please try again later. More error details may be in the browser console.
Alexander Stolte Expert Licensed User Longtime User Jul 31, 2025 #3 B4X: Dim Test as String = "Hello World"
Alexander Stolte Expert Licensed User Longtime User Jul 31, 2025 #4 B4X: Dim Test as String = "Hello World"
aeric Expert Licensed User Longtime User Jul 31, 2025 #5 I found the problem. I can't write chr bracket... (add a space is okay!) B4X: Private Sub Button1_Click LBL.Text = Chr (0xF1BB) End Sub
I found the problem. I can't write chr bracket... (add a space is okay!) B4X: Private Sub Button1_Click LBL.Text = Chr (0xF1BB) End Sub
LucaMs Expert Licensed User Longtime User Jul 31, 2025 #6 aeric said: I found the problem. I can't write chr bracket... (add a space is okay!) B4X: Private Sub Button1_Click LBL.Text = Chr (0xF1BB) End Sub Click to expand... The forum does not accept such long and ugly code.
aeric said: I found the problem. I can't write chr bracket... (add a space is okay!) B4X: Private Sub Button1_Click LBL.Text = Chr (0xF1BB) End Sub Click to expand... The forum does not accept such long and ugly code.
aeric Expert Licensed User Longtime User Jul 31, 2025 #7 LucaMs said: The forum does not accept such long and ugly code. Click to expand... Something about the JavaScript that doesn't parse the code or the syntax is not allowed.
LucaMs said: The forum does not accept such long and ugly code. Click to expand... Something about the JavaScript that doesn't parse the code or the syntax is not allowed.
Erel B4X founder Staff member Licensed User Longtime User Aug 3, 2025 #8 It is related to modsec - a security module that tries to detect SQL injections and other misdeeds. This is of course a false positive detection.
It is related to modsec - a security module that tries to detect SQL injections and other misdeeds. This is of course a false positive detection.
aeric Expert Licensed User Longtime User Thursday at 3:33 PM #9 aeric said: I found the problem. I can't write chr bracket... (add a space is okay!) B4X: Private Sub Button1_Click LBL.Text = Chr (0xF1BB) End Sub Click to expand... This is now working. B4X: Private Sub Button1_Click LBL.Text = Chr(0xF1BB) End Sub
aeric said: I found the problem. I can't write chr bracket... (add a space is okay!) B4X: Private Sub Button1_Click LBL.Text = Chr (0xF1BB) End Sub Click to expand... This is now working. B4X: Private Sub Button1_Click LBL.Text = Chr(0xF1BB) End Sub