Posts

FolderBrowserDialog Box in VB.NET

Image
FolderBrowserDialog Box in VB.NET Step 1: Create a new project and form Step 2: Add a TextBox, Button and FolderBrowserDialog to the form. Step 3: Double click btnBrowse, and key in the following codes.     Private Sub btnBrowse_Click(sender As Object, e As EventArgs) Handles btnBrowse.Click         Dim folderDlg As New FolderBrowserDialog         folderDlg.ShowNewFolderButton = True         If (folderDlg.ShowDialog() = DialogResult.OK) Then             txtDir.Text = folderDlg.SelectedPath             Dim root As Environment.SpecialFolder = folderDlg.RootFolder         End If     End Sub Step 4: Run the project.

How to install FlameRobin on Windows 10

Image
How to install FlameRobin on Windows 10 Step 1: Download the installer file. Check out the FlameRobin  download link: https://cdn.mysql.com//Downloads/MySQLGUITools/mysql-workbench-community-8.0.18-winx64.msi Step 2: Install FlameRobin. Step 3: Start Firebird ISQL Tool. We can test whether the FlameRobin is working. SQL>create database 'd:\Firebird\test.fdb'↵ CON>user 'SYSDBA' password 'masterkey';↵ SQL>create table employees(employee_id varchar(5), firstname varchar(12), lastname varchar(15)); SQL>show table; SQL>insert into employees(employee_id,firstname,lastname) values ('E0001','Steve','Patterson'); SQL>select * from employees; How to know the Firebird ISQL Tool, you can check out this video [https://youtu.be/o7zG5v3rQEo] Step 4: Working with FlameRobin.

How to install MySQL Workbench on Windows 10

Image
How to install MySQL Workbench on Windows 10 Step 1: Download the installer file. Check out the SQL Workbench download link: https://cdn.mysql.com//Downloads/MySQ... Step 2: Install MySQL Workbench Step 3: Start Apache and MYSQL on the XAMPP Control Panel. We can test whether the SQL workbench is working. Step 4: Working with MySQL Workbench.