RE:como hago para traer al frente un text box en v
si deseas que se te adelante el textbox en la ejecucion del programa has esto
debes de poner el textbox atraz, y el rich adelante:
rem usando dos botones
Rem poner enfrente el textbox
Private Sub Command1_Click()
Me.RichTextBox1.Visible = False
End Sub
Rem poner enfrente el rich
Private Sub Command2_Click()
Me.RichTextBox1.Visible = True
End Sub
_______________________________________
o esto
rem usando un boton
Rem poner enfrente el textbox
Private Sub Command1_Click()
if Me.RichTextBox1.Visible = False then
Me.RichTextBox1.Visible = true
elseif Me.RichTextBox1.Visible = true then
Me.RichTextBox1.Visible = False
end if
End Sub
espero te sirva de algo esto