Search results for query: *

  1. N

    Question Running script in selected path

    Nevermind, I fixed it by using: Directory.SetCurrentDirectory(dlgFolder.SelectedPath)
  2. N

    Question Running script in selected path

    Hi, I currently have this piece of code: Sub Button1Click(sender As Object, e As EventArgs) If dlgFolder.ShowDialog = Windows.Forms.DialogResult.OK Then txtPath.Text = dlgFolder.SelectedPath Try Dim CopyFile As String =...
  3. N

    Question Problem with opening listbox item

    Hi Again guys, Basically my problem is that I want an item from the listbox to open the file (containing the name) with the native application for the file extension when the 'Open' button is clicked. Can anyone help me solve the problem. With DirectoryInfo I know that you can get the full...
  4. N

    Question Using Directories, Sub-Directories and APIs

    Thank you for your help jmcilhinney.
  5. N

    Question Using Directories, Sub-Directories and APIs

    Hi all, Basically I'm going to try and develop a software that merges PDFs automatically using the PDFSharp API. What I want in the program is to basically that: Have the program to give and Input and Output directory Merge all the documents in the directory or sub-directory Rename the...
  6. N

    I am trying to make a web browser

    Hi, I'm a bit new to VB.NET and know some of the basics ( I know some VB6 too). I have a problem creating an advanced web browser since I don't know the specific coding yet. I know how to do the basic functions such as WebBrowser1.GoBack etc etc... I want to basicly include these in my Browser:-...
Back
Top