Posts by André Aranha • 36 points
3 posts
-
0
votes1
answer241
viewsA: Access Denied Error while trying to install my virtual environment in Python
If you’re using CMD or Powershell, try running them as an administrator.
-
0
votes1
answer41
viewsA: Kivy - Change keyboard cursor position (Caret) after formatting textinput with mask
I was able to solve it this way: def insert_text(self, substring, from_undo=False): if not substring.isnumeric(): substring = "" texto_completo = self.text + substring if len(texto_completo) == 11:…
-
2
votes1
answer41
viewsQ: Kivy - Change keyboard cursor position (Caret) after formatting textinput with mask
In a Textinput where the user type the CPF, control the validation and formatting in an on_Text event. After typing the 11 digits and validating the CPF, I format with the mask, however, after…