Jump to content
Xtreme .Net Talk

Fanell

Members
  • Posts

    3
  • Joined

  • Last visited

Everything posted by Fanell

  1. Of course, this can also be done by using the .CharacterCasing property of the textbox (if it is the standard tb, that is). <g>
  2. http://www.codeproject.com http://www.c-sharpcorner.com Two very good sites.
  3. You are telling the program this: 'If you are connected, connect.' That makes no sense. :) Should be like this. If cntoServer.state <> sckConnected then cntoServer.Connect End if Or: If Not cntoServer.state = sckConnected Then cntoServer.Connect End If <> mean Not Equal To Good Luck.
×
×
  • Create New...