visual basic

Timer in Visual Basic

Submitted by Yorkiebar on
Introduction: This tutorial is on how to create a timer in Visual Basic. Threads: Te first thing you must know about this tutorial is how to use threads. Threads are essentially processes which run certain parts of your programs code, the main thread handles the design of your form as well as the code of your form, therefore, when you have a lot of long-running code, your UI will freeze.

Simple Clock in Visual Basic

Submitted by Yorkiebar on
Introduction: This tutorial is on how to create a simple clock in Visual Basic. Design: For this, we simply need a new Windows Form, with one label - call it; 'clockLbl'. You may center the label to the middle of the form in both x and y axis' and give it a large font size. We also need a timer, name this timer1. Set it's interval to 1000ms/1second and it's enabled state to 'True'. Form Load: On form load, we want to initiate the label with the current computer time.

How to Create a Docking Pane Form in VB6.0

Submitted by donbermoy on
Hi. In this tutorial, i will teach you how to create a program that has a docking pane interface in your form. This docking pane interface or tool is one of the functions that i have created mostly in my created projects and systems to beautify forms. Now, let's start this tutorial. 1. First, download first Codejock software in the web and then install it. 2. Go to the components menu and check Xtreme Docking Pane ActiveX Control. output 3. Create an MDI form.

Remove Spaces: Trim, LTrim, and RTrim Functions in VB.NET

Submitted by donbermoy on
Today, i will teach you how to remove spaces using Trim, LTrim, and RTrim functions of VB.NET. These 3 functions removes spaces. Trim functions get rid of spaces in both left and right space. LTrim funcrion remove spaces from the left side of a text. And the RTrim functions remove spaces from the right side of a text. Now, let's start this tutorial! 1.

How to use Codejock to add themes to your VB6.0 Project

Submitted by donbermoy on
Codejock is a software used to beautify your project to add themes and colorful skin for your visual basic 6.0 forms. Here in this tutorial, i will teach you how to use this software. Anyway, all of the thesis software and capstone projects that i have made has the integration of codejock that my clients praised me that i made a good design of their project.

View Full Screen Mode in VB.NET

Submitted by donbermoy on
Sometimes, because of exploring complicated codes we often forget the basics and the need of some functions. Take note that in vb.net there is no property such as show full screen. In this tutorial, i will teach you how to create a program that can view full screen of your interface. 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.

Display All System Information using Registry in VB6.0

Submitted by donbermoy on
Today, i will teach you how to display All System Information such as all Hardware Information like OS, CPU, Processor, Memory Information and etc., System Components like networks, CD, DVD, storage information, etc; Software Environment such as system drivers, running tasks, programs, etc; and Internet Settings. We will just access the registry setting for this tutorial. Now, let's start this tutorial! 1.