Click here to Skip to main content
15,896,478 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerTHE RULES Pin
leckey17-Jul-07 11:22
leckey17-Jul-07 11:22 
AnswerRe: Coordinate System Pin
Paul Conrad17-Jul-07 13:06
professionalPaul Conrad17-Jul-07 13:06 
Questionparadox files Pin
jds120717-Jul-07 4:33
jds120717-Jul-07 4:33 
AnswerRe: paradox files Pin
_Damian S_17-Jul-07 13:46
professional_Damian S_17-Jul-07 13:46 
GeneralRe: paradox files Pin
jds120718-Jul-07 3:26
jds120718-Jul-07 3:26 
GeneralRe: paradox files Pin
_Damian S_18-Jul-07 14:16
professional_Damian S_18-Jul-07 14:16 
QuestionOutputting file from Selected Listview Subitem Pin
uneasyrider17-Jul-07 4:28
uneasyrider17-Jul-07 4:28 
AnswerRe: Outputting file from Selected Listview Subitem Pin
uneasyrider17-Jul-07 4:50
uneasyrider17-Jul-07 4:50 
Alright I've got one of the selections outputting correctly. If I select one item, it writes correctly. Now what I'm looking to do is output multiple selections (say 6 items selected). Here's what I have.

Private Sub Button1_Click_1(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click

        Dim ListViewSelect As ListView.SelectedListViewItemCollection = Me.ListView1.SelectedItems
        Dim item As ListViewItem
        Dim selecteditem As String
        'Dim price As Double = 0.0
        For Each item In ListViewSelect
            selecteditem = item.SubItems(4).Text
            Dim writer As StreamWriter = _
                New StreamWriter("c:\Test.txt")
            Dim line As Stream

            writer.WriteLine(selecteditem)
            writer.Close()

        Next
    
    End Sub

QuestionMy structure don't work!!!! Pin
BThunder17-Jul-07 4:24
BThunder17-Jul-07 4:24 
AnswerRe: My structure don't work!!!! Pin
Dave Kreskowiak17-Jul-07 4:43
mveDave Kreskowiak17-Jul-07 4:43 
GeneralRe: My structure don't work!!!! Pin
BThunder17-Jul-07 4:49
BThunder17-Jul-07 4:49 
GeneralRe: My structure don't work!!!! Pin
BThunder17-Jul-07 7:35
BThunder17-Jul-07 7:35 
GeneralRe: My structure don't work!!!! Pin
Dave Kreskowiak17-Jul-07 8:30
mveDave Kreskowiak17-Jul-07 8:30 
Questionaccess function on form [modified] Pin
Tom Deketelaere17-Jul-07 4:23
professionalTom Deketelaere17-Jul-07 4:23 
AnswerRe: access function on form Pin
Dave Kreskowiak17-Jul-07 4:28
mveDave Kreskowiak17-Jul-07 4:28 
GeneralRe: access function on form Pin
Tom Deketelaere17-Jul-07 4:32
professionalTom Deketelaere17-Jul-07 4:32 
GeneralRe: access function on form Pin
Dave Kreskowiak17-Jul-07 4:33
mveDave Kreskowiak17-Jul-07 4:33 
AnswerRe: access function on form Pin
Dave Kreskowiak17-Jul-07 4:32
mveDave Kreskowiak17-Jul-07 4:32 
GeneralRe: access function on form Pin
Tom Deketelaere17-Jul-07 4:35
professionalTom Deketelaere17-Jul-07 4:35 
GeneralRe: access function on form Pin
Dave Kreskowiak17-Jul-07 4:49
mveDave Kreskowiak17-Jul-07 4:49 
GeneralRe: access function on form Pin
Tom Deketelaere17-Jul-07 4:56
professionalTom Deketelaere17-Jul-07 4:56 
GeneralRe: access function on form Pin
Tom Deketelaere17-Jul-07 5:03
professionalTom Deketelaere17-Jul-07 5:03 
QuestionAudio File (Wave file) Splitting & Merging in Vb .Net Pin
amiashu17-Jul-07 2:55
amiashu17-Jul-07 2:55 
QuestionHow to control my Application to use not more then 10 % of CPU Pin
Rizwan Bashir17-Jul-07 2:02
Rizwan Bashir17-Jul-07 2:02 
AnswerRe: How to control my Application to use not more then 10 % of CPU Pin
Luc Pattyn17-Jul-07 3:18
sitebuilderLuc Pattyn17-Jul-07 3:18 

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.