File

How to Create a File Browser in Visual Basic

Submitted by Yorkiebar on
Introduction: Welcome to a tutorial on how to create a file browser in Visual Basic. Steps of Creation: Step 1: First we want to create a form with a listbox to contain the current path items (files and directories), a button to open a directory and a button to go up a level. We also want to import System.IO so we can access our files, directories and paths. Imports System.IO Step 2: So, first

How to Create a Text Editor in Visual Basic

Submitted by Yorkiebar on
Introduction: This tutorial is on how to create a text editor in Visual Basic. Steps of Creation: Step 1: First we need a form. Mine will consist of; - Richtextbox1 - Contain text contents - Button1 - Load File - Button2 - Save File - Button3 - Save File As New Name Step 2: Now lets import System.IO so we can read and write files. We also want to create a path String variable to contain our opened

How to Create a File Downloader in Visual Basic

Submitted by Yorkiebar on
Introduction: Hello and welcome to a tutorial on how to make a single file downloader in Visual Basic. A word of advise; once you understand how this program works I would recommend adding the function to a new thread so the UI doesn't freeze while it is downloading. Steps of Creation: Step 1: First we want to get a direct download link to a file, you can get this by downloading a file then going

Reading from and Writing to a Text File in Java

Submitted by mehfuza on
Introduction: This tutorial demonstrate the method of reading from and writing to a text file in Java. Java has two type of files: Binary and Text. Text file is processed as a sequence of characters where as Binary file is processed a sequence of bytes. This application has 4 JButtons for reading, writing, exiting, and clearing the Display Area. Also It has a display area where we can type the data to be written to text and in the same area content from file are displayed. Step 1: Creating GUI Components Create the four buttons, label, text area and text field.

Upload files on php/mysql site server and saving details on database

Submitted by josiah_ke on
Upload files on php/mysql site server and saving on database instead of saving files into the database upload to the server and save file location on the database find php files, mysql dump file and js on the zip happy using NB: file location are relative to the web site files

Data File Utility 1.3

Submitted by raffyapurillo on
USES and Instructions: 1. DEDUPS 1.1) Browse an input file. You will see a preview of data on the table. 1.2) Select the correct column delimeter of the file. 1.3) Type the Text Qualifier (if any) [It is character(s) that encloses every value]. 1.4) Select a column on the table as the basis of deduplication (1st Column is the default). 1.5) Click "Analyze", You will see a preview of data on the

File Search And Destroy

Submitted by euverve on
I coded a simple utility that removes files based on file hash because some malwares or virus spreads in every folder in usb or drive. This is threaded so while searching the form will not hang. Souce Codes: Public Class Mainform Private Sub Form1_Load ( ByVal sender As System . Object , ByVal e As System .EventArgs ) Handles MyBase .Load Control .CheckForIllegalCrossThreadCalls = False End Sub