Jump to content

MSN signin

- - - - -

This topic has been archived. This means that you cannot reply to this topic.
4 replies to this topic

#1
travy92

travy92

    Learning Programmer

  • Members
  • PipPipPip
  • 76 posts
Well i'm making an MSN helper. And i need to know how to make 2 textboxes disabled after signin. Here is the code for the signin part:

Quote

msn.Signin 0, Text2.Text, Text3.Text

So i need to know how to disable Text2 and Text3 after the person has signed in...

Thanks.
[SIGPIC]C:\Users\Travis\Desktop\Image Converter\Knight1.bmp[/SIGPIC]

#2
TcM

TcM

    Writes binary right handed and hex left handed

  • Members
  • PipPipPipPipPipPipPipPipPip
  • 11,147 posts
Use the code:

Text2.Enabled = False


#3
pds2ect

pds2ect

    Newbie

  • Members
  • Pip
  • 5 posts
You could also use:
TextBox1.Visable = False : TextBox2.Visible = False

This would make the Textboxes dissappear from the screen.

#4
travy92

travy92

    Learning Programmer

  • Members
  • PipPipPip
  • 76 posts
OMG LOL i thought of using this method and i believed it wouldn't work... But it did lol! Sorry for wasting your time guys....
Thanks again.
[SIGPIC]C:\Users\Travis\Desktop\Image Converter\Knight1.bmp[/SIGPIC]

#5
TcM

TcM

    Writes binary right handed and hex left handed

  • Members
  • PipPipPipPipPipPipPipPipPip
  • 11,147 posts
No Problem at all. In Programming you have to try and try to get what you want.. it's programming man! If you know it won't work still do it, then see the result, and modify your code accordingly to the result. Believe me..it works!