Extension File Converter in VB.NET
Submitted by donbermoy on Tuesday, April 15, 2014 - 11:09.
This tutorial provides to make a program that can convert a file into any any file that is changing the extension filename of this file using vb.net.
Now, let's start this tutorial!
1. Let's start with creating a Windows Form Application for this tutorial by following the following steps in Microsoft Visual Studio: Go to File, click New Project, and choose Windows Application.
2. Next, add two Buttons named Button1 and labeled it as "Browse File.." for browsing and searching any types of file and Button2 named "Convert" for converting this file to the desired extension file. Insert one TextBox named TextBox1 for displaying the filepath and filename, and a ComboBox named ComboBox1 to have a list of extension file. You must design your interface like this:
3. Put this code below in your Form_Load.
The code above loads item in the ComboBox when loading the form. These are the extension files as option for conversion such as doc,txt,jpeg,mp4,mp3,jpg,gif,docx, and rtf file.
4. For Button1_Click which is used for browsing a certain file, put this code below.
The code above tells to open a file dialog to browse a certain file. After choosing and selecting this certain file, this will then display the filename and path to the textbox.
5. For Button2_Click which is used for changing the extension file of the selected filename, put this code below.
We used variable extensionFile As String that will hold the value of our ComboBox1 (the extension files). Then it will prompt the user the filename is changed into a selected extension file type. The Mid Function in our oldFile variable will return a string containing a specified number of characters from the textbox and the length of the file on this control. Then, the FileCopy function was established to copy a file, TextBox1 as the source, and the newfile will be the same filename but with different extension file now.
For more inquiries and need programmer for your thesis systems in any kind of programming languages, just contact my number below.
Best Regards,
Engr. Lyndon Bermoy
IT Instructor/System Developer/Android Developer/Freelance Programmer
Mobile: 09488225971
Landline: 826-9296
E-mail:[email protected]
Add and Follow me on Facebook: https://www.facebook.com/donzzsky
Visit and like my page on Facebook at: https://www.facebook.com/BermzISware

- Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
- ComboBox1.Items.Add(".doc")
- ComboBox1.Items.Add(".txt")
- ComboBox1.Items.Add(".jpeg")
- ComboBox1.Items.Add(".mp4")
- ComboBox1.Items.Add(".mp3")
- ComboBox1.Items.Add(".jpg")
- ComboBox1.Items.Add(".gif")
- ComboBox1.Items.Add(".docx")
- ComboBox1.Items.Add(".rtf")
- End Sub
- Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
- Dim browse As New OpenFileDialog
- If browse.ShowDialog = DialogResult.OK Then
- TextBox1.Text = browse.FileName
- End If
- Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
- Dim extensionFile As String = ComboBox1.Text
- Dim oldFile As String = Mid(TextBox1.Text, 1, Len(TextBox1.Text) - 4)
- End Sub
Output:

Comments
Thank you!
Thank you for the appreciation! :)
Best Regards,
Engr. Lyndon R. Bermoy
IT Instructor/System Developer/Android Developer
Mobile: 09102918563
Telephone: 826-9296
E-mail:[email protected]
Add new comment
- Add new comment
- 709 views