Posts by Jaderson • 43 points
4 posts
-
0
votes1
answer18
viewsQ: How to do an event in more than one box/button/label at the same time?
On Vb.net I used a command that was: private sub txt1_LostFocus(object sender, EventArgs e) handles txt2.text, txt3.text sender.text = Ucase(sender.text) end sub This caused all text boxes to be in…
-
2
votes1
answer58
viewsQ: Why does the conversion take place in the wrong way?
When performing the conversion of a number I need to format it, and unfortunately it is not coming out the way I need it. I need to format a number of 11 digits in CPF, but when putting the…
-
0
votes1
answer71
viewsQ: Formatting textbox
Hello, I’m having a formatting problem in the text box which is as follows I am using the following code to format the text box according to the phone number If Len(numtel) = 11 Then CaixaTxt.Text =…
-
0
votes3
answers8837
viewsA: How to work with dates in the dd/mm/yyyy format in Vb.net?
txt_cadastre.Text = Today.Tostring("dd/MM/yyyy")