Click here to Skip to main content
15,890,882 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: Dissable security message "" A program is trying to access e-mail addresses" while sending email Pin
Wendelius5-Feb-09 8:16
mentorWendelius5-Feb-09 8:16 
AnswerRe: Dissable security message "" A program is trying to access e-mail addresses" while sending email Pin
Bharat Jain5-Feb-09 18:36
Bharat Jain5-Feb-09 18:36 
QuestionBuild a firewall using VB.net and then open traffic after web-based sign-in Pin
GDMFSOB5-Feb-09 7:08
GDMFSOB5-Feb-09 7:08 
AnswerRe: Build a firewall using VB.net and then open traffic after web-based sign-in Pin
EliottA5-Feb-09 7:20
EliottA5-Feb-09 7:20 
AnswerRe: Build a firewall using VB.net and then open traffic after web-based sign-in Pin
Dave Kreskowiak5-Feb-09 9:16
mveDave Kreskowiak5-Feb-09 9:16 
QuestionListbox problem Pin
jaakinye5-Feb-09 6:21
jaakinye5-Feb-09 6:21 
AnswerRe: Listbox problem Pin
EliottA5-Feb-09 6:42
EliottA5-Feb-09 6:42 
AnswerRe: Listbox problem Pin
vaghelabhavesh5-Feb-09 10:01
vaghelabhavesh5-Feb-09 10:01 
If you know which item you want to get, then you can use ListBox.Items collection. You need to pass the index of the row you are intersted. After getting that value you can split the value using Split method and providing the separator, which will return the string array. Then you can grab the intended the value. Smile | :)
C#:
 textBox1.Text = listBox1.Items[1].ToString().Split(new char[] { ',' })[2];
 textBox2.Text = listBox1.Items[3].ToString().Split(new char[] { ',' })[4]; 


VB:
 textBox1.Text = listBox1.Items(1).ToString().Split(New Char() {","c})(2)
 textBox2.Text = listBox1.Items(3).ToString().Split(New Char() {","c})(4)

GeneralRe: Listbox problem Pin
jaakinye5-Feb-09 16:07
jaakinye5-Feb-09 16:07 
QuestionVBScript to get all users (local and domain) Pin
mixologee5-Feb-09 3:27
mixologee5-Feb-09 3:27 
AnswerRe: VBScript to get all users (local and domain) Pin
Dave Kreskowiak6-Feb-09 3:36
mveDave Kreskowiak6-Feb-09 3:36 
Questionaccess MDB database help Pin
Dave McCool5-Feb-09 3:16
Dave McCool5-Feb-09 3:16 
AnswerRe: access MDB database help Pin
Dominick Marciano5-Feb-09 4:21
professionalDominick Marciano5-Feb-09 4:21 
AnswerRe: access MDB database help Pin
Rupesh Kumar Swami5-Feb-09 4:22
Rupesh Kumar Swami5-Feb-09 4:22 
Questionretrive field value into combobox Pin
vijay24825-Feb-09 2:42
vijay24825-Feb-09 2:42 
AnswerRe: retrive field value into combobox Pin
Rupesh Kumar Swami5-Feb-09 3:11
Rupesh Kumar Swami5-Feb-09 3:11 
Question[Message Deleted] Pin
εїзεїзεїз5-Feb-09 2:07
εїзεїзεїз5-Feb-09 2:07 
AnswerRe: Grid View Control Pin
Henry Minute5-Feb-09 9:16
Henry Minute5-Feb-09 9:16 
QuestionWhere to put try / catch blocks when dealing with classes Pin
maxnuggets5-Feb-09 0:55
maxnuggets5-Feb-09 0:55 
AnswerRe: Where to put try / catch blocks when dealing with classes Pin
Johan Hakkesteegt5-Feb-09 2:09
Johan Hakkesteegt5-Feb-09 2:09 
GeneralRe: Where to put try / catch blocks when dealing with classes Pin
maxnuggets5-Feb-09 2:22
maxnuggets5-Feb-09 2:22 
GeneralRe: Where to put try / catch blocks when dealing with classes Pin
Johan Hakkesteegt5-Feb-09 3:04
Johan Hakkesteegt5-Feb-09 3:04 
AnswerRe: Where to put try / catch blocks when dealing with classes Pin
riced5-Feb-09 4:43
riced5-Feb-09 4:43 
GeneralRe: Where to put try / catch blocks when dealing with classes Pin
supercat95-Feb-09 6:28
supercat95-Feb-09 6:28 
QuestionModifying a window service Pin
sohaib_a4-Feb-09 22:58
sohaib_a4-Feb-09 22:58 

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.