Ótima vídeo aula, continue postando!
xitaociti 2 months ago
This has been flagged as spam show
Help Me
If TextBox1.text = "a" Then
TextBox2.Text = "01100001"
End If
If TextBox1.Text = "b" Then
TextBox2.Text = "01100010"
When I write ab apears 01100001
Can you make appears 0110000101100010?
HACKERMAN24 5 months ago
When I write ab apears 01100001
Can you make appears 0110000101100010?
@HACKERMAN24 experimenta:
TextBox2.Text = TextBox2.Text & "01100001"
TextBox2.Text = TextBox2.Text & "01100010"
DarkAngelRev87 2 months ago
Ótima vídeo aula, continue postando!
xitaociti 2 months ago
This has been flagged as spam show
Help Me
If TextBox1.text = "a" Then
TextBox2.Text = "01100001"
End If
If TextBox1.Text = "b" Then
TextBox2.Text = "01100010"
End If
When I write ab apears 01100001
Can you make appears 0110000101100010?
HACKERMAN24 5 months ago
Help Me
If TextBox1.text = "a" Then
TextBox2.Text = "01100001"
End If
If TextBox1.Text = "b" Then
TextBox2.Text = "01100010"
End If
When I write ab apears 01100001
Can you make appears 0110000101100010?
HACKERMAN24 5 months ago
@HACKERMAN24 experimenta:
If TextBox1.text = "a" Then
TextBox2.Text = TextBox2.Text & "01100001"
End If
If TextBox1.Text = "b" Then
TextBox2.Text = TextBox2.Text & "01100010"
End If
DarkAngelRev87 2 months ago