Busca un poco que hay millones de ejemplos, investiga API TerminateProcess...
Salu2!
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úCita de: dj_hacker_ en 16 Junio 2010, 23:47 PMWTF!!
Puedes utillizar la opcion que te decian arriba asi
textbox1.text=""
textbox2.text="" 'Y asi le haces para los demas
Textbox1.setfocus 'Y esto por si quieres resgresar el cursor a algun text para volver a escribir nuevos valores
Cita de: Fitoschido en 17 Junio 2010, 02:19 AMEsto no es necesario, buscar en todos los controles y comprobar si es un TextBox?¿
Es mas facil que si tienes varios textbox uses algo como un For Each:
Dim n As Integer
For n = 0 To Controls.Count - 1
If TypeOf Controls(n) Is TextBox Then
Controls(n).Text = ""
End If
Next n
Saludos
Dim x As Integer
'Suponiendo que tengamos 5 TextBox (el 0 cuenta)
For x = 0 to 4 : Text1(x).Text = vbNullString : Next
CitarPorque no defines la variable bucle? (Pon As Integer), porque tal y como lo tienes estaria definido como As Variant, y ocupa mas espacio en la memoria...
Dim bucle
CitarSi haces una matriz de controles con las optiones ahorrarias codigo...
If Option1.Enabled Then naves = "fmenge[202]"
If Option2.Enabled Then naves = "fmenge[203]"
If Option3.Enabled Then naves = "fmenge[204]"
If Option4.Enabled Then naves = "fmenge[205]"
If Option5.Enabled Then naves = "fmenge[206]"
If Option6.Enabled Then naves = "fmenge[207]"
If Option7.Enabled Then naves = "fmenge[208]"
If Option8.Enabled Then naves = "fmenge[209]"
If Option9.Enabled Then naves = "fmenge[210]"
If Option10.Enabled Then naves = "fmenge[211]"
If Option11.Enabled Then naves = "fmenge[212]"
If Option12.Enabled Then naves = "fmenge[213]"
If Option13.Enabled Then naves = "fmenge[214]"
If Option14.Enabled Then naves = "fmenge[215]"
If Option15.Enabled Then naves = "fmenge[216]"
Form2.Show
Set pulsacion = Nothing