changkhoonline77 > 01-07-14, 03:53 PM
Me.txt1.Visible = True
Me.txt2.Visible = True
Me.txt1.Visible = False
Me.txt2.Visible = False
Minh Tiên > 01-07-14, 04:25 PM
Option Compare Database
Dim strBien As Integer
Private Sub Command4_Click()
If strBien = 0 Then
Me.Text0.Visible = False
Me.Text2.Visible = False
strBien = 1
Else
Me.Text0.Visible = True
Me.Text2.Visible = True
strBien = 0
End If
End Sub
Private Sub Form_Load()
Me.Text0.Visible = True
Me.Text2.Visible = True
strBien = 0
End Sub
changkhoonline77 > 01-07-14, 05:00 PM
Minh Tiên > 01-07-14, 05:12 PM
changkhoonline77 > 01-07-14, 08:52 PM
Minh Tiên > 02-07-14, 09:50 AM
Trích dẫn: ... muốn 1 control nào đó nằm trên cùng khi ẩn hiện như thế này trên cùng hết thì làm sao.Mình chưa hiểu ý bạn ? Nói rõ hơn nhé !
changkhoonline77 > 02-07-14, 01:29 PM
Minh Tiên > 02-07-14, 04:11 PM
changkhoonline77 > 02-07-14, 05:55 PM