Citarno creo q los firewall lo hagan a si
Los firewalls no los programan en VB
NOTA: Te falta un "]" al final de tu firma xD
salu2
Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.
Mostrar Mensajes MenúCitarno creo q los firewall lo hagan a si
Private Sub Command1_Click()
'Cuando le haces Click
Private Sub Command1_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)
'Apenas apretas el boton, dsp tenes alguanas variables:
Button: puede ser 1, 2 y creo q 3... (es el boton con el q se apreto)
Shift: si esta la tecla Shift oprimida
X: la posicion X del mouse
Y: la posicion Y del mouse
Private Sub Command1_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
'Cuando pasas el mouse por arriva del control
Private Sub Command1_MouseUp(Button As Integer, Shift As Integer, X As Single, Y As Single)
'Cuando levantas el boton del control
Command1_ KeyPress(KeyAscii As Integer)
'Cuando se aprieta alguna tecla
KeyAscii: Devuelve el valor de la tecla apretada (para ver la letra: "MsgBox Chr(KeyAscii)"
'...
Private Sub Command1_Click()
Text2.Text = Text2.Text & vbNewLine & Text1.Text
End Sub
CitarHasta ahora le puse 2 funciones, abrir y cerrar el cd.
Private Sub Command1_Click()
If Text1.Text = LCase(Text1.Text) Then
MsgBox "MINUSCULA"
End If
If Text1.Text = UCase(Text1.Text) Then
MsgBox "MAYUSCULA"
End If
End Sub