Symbianize Forum

Most of our features and services are available only to members, so we encourage you to login or register a new account. Registration is free, fast and simple. You only need to provide a valid email. Being a member you'll gain access to all member forums and features, post a message to ask question or provide answer, and share or find resources related to mobile phones, tablets, computers, game consoles, and multimedia.

All that and more, so what are you waiting for, click the register button and join us now! Ito ang website na ginawa ng pinoy para sa pinoy!

HElp naman bossing sa VB6

anay88

Novice
Advanced Member
Messages
31
Reaction score
0
Points
26
Bossing pa share naman po ng code ng show and hide sa visual basic 6.0


example po design ako ng 2 text para sa username password

3 command buton dlawng buton ay para sa login isa naman para exit ang problema ko yung pang show and hide
gusto ko sanang mangyari pag click ko yung 3 button eh llabs yung password

yun lang po sana po patulngan po ninyo ako sa code po thanks
 
Code:
sub [button3name]_onclick()
dim boolHidden as boolean
with [textbox3name]
  boolHidden = .PasswordChar = "[ung delimiter mo]"
  if boolHidden then          '<~ check naten kung nakatago ung password
    .PasswordChar = ""        '<~ iset naten as nothing para makita ung text
  else                        '<~ ano naman ang gagawen naten kung nakatago?
    .PasswordChar = "[ung delimiter mo]"
  end if
end with
end sub


palitan mo n lang ng mga tamang values ung nasa "[]""
 
Last edited:
Back
Top Bottom