Click here to Skip to main content
15,928,763 members
Home / Discussions / Visual Basic
   

Visual Basic

 
QuestionError sending mail using smtp Pin
A*****11-Apr-07 13:22
A*****11-Apr-07 13:22 
AnswerRe: Error sending mail using smtp Pin
Dave Kreskowiak11-Apr-07 14:35
mveDave Kreskowiak11-Apr-07 14:35 
AnswerRe: Error sending mail using smtp Pin
amaneet11-Apr-07 21:00
amaneet11-Apr-07 21:00 
AnswerRe: Error sending mail using smtp Pin
Dave Kreskowiak12-Apr-07 3:45
mveDave Kreskowiak12-Apr-07 3:45 
AnswerRe: Error sending mail using smtp Pin
A*****12-Apr-07 11:42
A*****12-Apr-07 11:42 
QuestionRather Frustrating Issue Pin
Diagathon11-Apr-07 7:38
Diagathon11-Apr-07 7:38 
AnswerRe: Rather Frustrating Issue Pin
Dave Kreskowiak11-Apr-07 7:44
mveDave Kreskowiak11-Apr-07 7:44 
AnswerRe: Rather Frustrating Issue Pin
Code_Doctor16-Apr-07 17:00
Code_Doctor16-Apr-07 17:00 
I'll suggest using a LinkedList. Here is an example:

First define a class to hold your object.

Public Class Dude
Public _Name As String
Public _Position As Integer

Public Sub New(ByVal Name As String, ByVal Position As Integer)
_Name = Name
_Position = Position
End Sub
End Class

Then in your main app, define the LinkedList to hold these individual objects.

Dim MyDudes as New LinkList(Of Dude)

You can add items to this several ways:

MyDudes.AddFirst(NewDude)
MyDudes.AddAfter(PreviousDude,NewDude)
MyDudes.AddBefore(BeforeDude,NewDude)
MyDudes.AddLast(NewDude)

There are Find Methods, and Remove methods that can easily help with what you need.

Hope this helps! Smile | :)

~ CodeDoctor ~
QuestionPrinting problem Pin
xjamiex9011-Apr-07 4:14
xjamiex9011-Apr-07 4:14 
AnswerRe: Printing problem Pin
Dave Kreskowiak11-Apr-07 6:26
mveDave Kreskowiak11-Apr-07 6:26 
GeneralRe: Printing problem Pin
xjamiex9011-Apr-07 6:30
xjamiex9011-Apr-07 6:30 
GeneralRe: Printing problem Pin
Dave Kreskowiak11-Apr-07 7:12
mveDave Kreskowiak11-Apr-07 7:12 
QuestionSudden form creation error after no code change Pin
lucjon11-Apr-07 3:17
lucjon11-Apr-07 3:17 
GeneralEdit Pin
lucjon11-Apr-07 3:29
lucjon11-Apr-07 3:29 
GeneralRe: Edit Pin
Dave Kreskowiak11-Apr-07 5:20
mveDave Kreskowiak11-Apr-07 5:20 
AnswerRe: Edit Pin
lucjon12-Apr-07 20:25
lucjon12-Apr-07 20:25 
QuestionAccess Database from Website In vb.net [modified] Pin
Kiran S. S.11-Apr-07 2:48
Kiran S. S.11-Apr-07 2:48 
AnswerRe: Access Database from Website In vb.net Pin
Dave Kreskowiak11-Apr-07 5:18
mveDave Kreskowiak11-Apr-07 5:18 
GeneralRe: Access Database from Website In vb.net Pin
Kiran S. S.11-Apr-07 18:13
Kiran S. S.11-Apr-07 18:13 
GeneralRe: Access Database from Website In vb.net Pin
Dave Kreskowiak12-Apr-07 3:42
mveDave Kreskowiak12-Apr-07 3:42 
GeneralRe: Access Database from Website In vb.net Pin
Kiran S. S.12-Apr-07 18:14
Kiran S. S.12-Apr-07 18:14 
Questionapi problem. Pin
amaneet11-Apr-07 2:34
amaneet11-Apr-07 2:34 
AnswerRe: api problem. Pin
Dave Kreskowiak11-Apr-07 5:14
mveDave Kreskowiak11-Apr-07 5:14 
QuestionHow to copy file from FTP folder Pin
virendra_00711-Apr-07 2:19
virendra_00711-Apr-07 2:19 
AnswerRe: How to copy file from FTP folder Pin
Dave Kreskowiak11-Apr-07 5:06
mveDave Kreskowiak11-Apr-07 5:06 

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.