Public Class Form1
Private Sub pico_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles pico.TextChanged
Label4.Text = 0
Label3.Text = 0
Label2.Text = 1
End Sub
Private Sub nano_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles nano.TextChanged
Label4.Text = 0
Label3.Text = 1
Label2.Text = 0
End Sub
Private Sub micro_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles micro.TextChanged
Label4.Text = 1
Label3.Text = 0
Label2.Text = 0
End Sub
Private Sub dale_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles dale.Click
If Label2.Text = 1 Then
nano.Text = pico.Text / 1000
micro.Text = pico.Text / 1000000
Else
If Label3.Text = 1 Then
pico.Text = nano.Text * 1000
micro.Text = nano.Text / 1000
Else
If Label4.Text = 1 Then
pico.Text = micro.Text * 1000000
nano.Text = micro.Text * 1000
Else
End If
End If
End If
codigo.Text = Mid(pico.Text, 1, 2) & Len(Mid(pico.Text, 3, 10))
End Sub
End Class