IWETHEY v. 0.3.0 | TODO
1,095 registered users | 0 active users | 0 LpH | Statistics
Login | Create New User
IWETHEY Banner

Welcome to IWETHEY!

New VB.Net is far better anyways IMHO
Try this:
\n   Private Sub filenameBrowseButton_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles filenameBrowseButton.Click\n        If filenameDialog.ShowDialog() = DialogResult.OK Then\n            filenameTextBox.Text = filenameDialog.FileName\n        End If\n    End Sub\n\n    Private Sub addFilesButton_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles addFilesButton.Click\n        Dim fileName As String\n\n        If addFilesDialog.ShowDialog() = DialogResult.OK Then\n            For Each fileName In addFilesDialog.FileNames\n                filesListbox.Items.Add(fileName)\n            Next\n        End If\n    End Sub\n\n    Private Sub removeFilesButton_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles removeFilesButton.Click\n        While filesListbox.SelectedIndices.Count > 0\n            filesListbox.Items.RemoveAt(filesListbox.SelectedIndex)\n        End While\n    End Sub\n


--
Chris Altmann
New And re the INI files
You'll have to a find a wrapper similar to the one I posted to get to the old Win32 APIs for INI files from .Net

This might do the job:

[link|http://www.developer.com/net/asp/article.php/3287991|http://www.developer...ticle.php/3287991]

--
Chris Altmann
New Thanks, remove is good
The others I already coded using essential the same, except I stripped the full path.
     VB File pick list question - (broomberg) - (19)
         its built into browsers - (boxley) - (1)
             I got THAT part - (broomberg)
         Modal dialog box - (ChrisR) - (1)
             I must be emanating stupidity here - (broomberg)
         What's in the control file? - (lincoln) - (1)
             Ahh, close - (broomberg)
         Follow up - (broomberg) - (12)
             Re: Follow up - (altmann)
             Re: INI files - (altmann) - (10)
                 Is there such a thing as a multiline INI entry? -NT - (broomberg) - (9)
                     Re: Is there such a thing as a multiline INI entry? - (altmann) - (8)
                         That's nasty - (broomberg) - (7)
                             Re: That's nasty - (altmann) - (6)
                                 I'm VB Net as well - (broomberg) - (5)
                                     My fault - (altmann) - (4)
                                         No choice - (broomberg) - (3)
                                             VB.Net is far better anyways IMHO - (altmann) - (2)
                                                 And re the INI files - (altmann)
                                                 Thanks, remove is good - (broomberg)

We're on a mission from GRR.
98 ms