Can't paste code

aeric

Expert
Licensed User
Longtime User
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
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.
 

aeric

Expert
Licensed User
Longtime User
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
 

aeric

Expert
Licensed User
Longtime User
The forum does not accept such long and ugly code.
Something about the JavaScript that doesn't parse the code or the syntax is not allowed.
 

aeric

Expert
Licensed User
Longtime User
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

This is now working.
B4X:
Private Sub Button1_Click
    LBL.Text = Chr(0xF1BB)
End Sub
 
Top