Click here to Skip to main content
15,887,302 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: using list collection and structures (but i need to find a particular "entry" in the list on a search criteria [modified] Pin
Wayne Gaylard25-Mar-10 14:49
professionalWayne Gaylard25-Mar-10 14:49 
GeneralRe: using list collection and structures (but i need to find a particular "entry" in the list on a search criteria Pin
Dave Kreskowiak26-Mar-10 2:05
mveDave Kreskowiak26-Mar-10 2:05 
GeneralRe: using list collection and structures (but i need to find a particular "entry" in the list on a search criteria Pin
Wayne Gaylard26-Mar-10 4:00
professionalWayne Gaylard26-Mar-10 4:00 
AnswerRe: using list collection and structures (but i need to find a particular "entry" in the list on a search criteria Pin
Simon_Whale28-Mar-10 23:20
Simon_Whale28-Mar-10 23:20 
GeneralRe: using list collection and structures (but i need to find a particular "entry" in the list on a search criteria Pin
Wayne Gaylard29-Mar-10 4:13
professionalWayne Gaylard29-Mar-10 4:13 
AnswerRe: using list collection and structures (but i need to find a particular "entry" in the list on a search criteria Pin
Luc Pattyn25-Mar-10 15:08
sitebuilderLuc Pattyn25-Mar-10 15:08 
QuestionTCP/IP with VB.Net Closing and Opening Pin
gymgym_jim25-Mar-10 1:52
gymgym_jim25-Mar-10 1:52 
AnswerRe: TCP/IP with VB.Net Closing and Opening Pin
Tony Richards25-Mar-10 2:30
Tony Richards25-Mar-10 2:30 
First, if you do this:

Dim client As New Net.Sockets.TcpClient()
client.Close()


You aren't going to achieve much as you have just closed a client that was never opened. the client in your connect code is difference to the client in your disconnect code unless they are in the same function.

Something to keep in mind, you cannot do this:

Dim client as New Net.Sockets.TcpClient()
client.Connect("www.google.com", 50)
client.Close()
client.Connect("www.google.com", 50) ' This will cause an error.


Close disposes the TcpClient, so it can no longer be used. You will have to create a new TcpClient to reconnect.

If this isn't your problem, try providing more detail.

And now some more basic tips:

Make sure the code you give us is the code you are actually using.
Wrap your code in <pre> tags to make them easier to read.
Make sure you provide full details of your problem, including what exceptions you get.

This might help you get more answers.
GeneralRe: TCP/IP with VB.Net Closing and Opening [modified] Pin
gymgym_jim25-Mar-10 2:41
gymgym_jim25-Mar-10 2:41 
GeneralRe: TCP/IP with VB.Net Closing and Opening Pin
Tony Richards25-Mar-10 2:50
Tony Richards25-Mar-10 2:50 
QuestionDelay in Listview Binding using SqDatareader in windows application Pin
sandhya1424-Mar-10 19:02
sandhya1424-Mar-10 19:02 
QuestionUnbound checkbox in datagridview Pin
C#Coudou24-Mar-10 15:39
C#Coudou24-Mar-10 15:39 
AnswerRe: Unbound checkbox in datagridview Pin
C#Coudou25-Mar-10 15:25
C#Coudou25-Mar-10 15:25 
GeneralRe: Unbound checkbox in datagridview Pin
Dave Kreskowiak26-Mar-10 2:02
mveDave Kreskowiak26-Mar-10 2:02 
GeneralRe: Unbound checkbox in datagridview Pin
C#Coudou28-Mar-10 13:45
C#Coudou28-Mar-10 13:45 
QuestionEmailing in VB.NET Pin
sklemp24-Mar-10 5:54
sklemp24-Mar-10 5:54 
AnswerRe: Emailing in VB.NET Pin
Ian Shlasko24-Mar-10 5:57
Ian Shlasko24-Mar-10 5:57 
GeneralRe: Emailing in VB.NET Pin
sklemp24-Mar-10 5:59
sklemp24-Mar-10 5:59 
GeneralRe: Emailing in VB.NET Pin
Ian Shlasko24-Mar-10 6:03
Ian Shlasko24-Mar-10 6:03 
GeneralRe: Emailing in VB.NET Pin
sklemp24-Mar-10 6:09
sklemp24-Mar-10 6:09 
GeneralRe: Emailing in VB.NET Pin
Tom Deketelaere24-Mar-10 6:22
professionalTom Deketelaere24-Mar-10 6:22 
GeneralRe: Emailing in VB.NET Pin
sklemp24-Mar-10 6:27
sklemp24-Mar-10 6:27 
GeneralRe: Emailing in VB.NET Pin
Ian Shlasko24-Mar-10 7:22
Ian Shlasko24-Mar-10 7:22 
GeneralRe: Emailing in VB.NET Pin
sklemp24-Mar-10 8:22
sklemp24-Mar-10 8:22 
GeneralRe: Emailing in VB.NET Pin
Ian Shlasko24-Mar-10 8:54
Ian Shlasko24-Mar-10 8:54 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.