Programs can be written in Visual Basic to access Microsoft access databases. Some programming concepts such as subroutines and looping along with knowledge... Read more
A program in VB6 or Visual Basic 6 can be used to make a form transparent in VB6. Some knowledge of programming concepts and languages like Visual Basic is... Read more
A program in VB6 or Visual Basic 6 can be used to find RGB values of a color. Some knowledge of programming concepts and languages such as Visual Basic is... Read more
Programs written in Microsoft Visual Basic can access Microsoft Access 2007 databases. Some knowledge of programming concepts and databases may be required... Read more
Visual Basic Application or VBA provides a flexible environment to create custom tools to meet day to day needs. Not only does VBA provide a way to do a... Read more
This feature allows you to know exact the position of the mouse from the screen and irrelevant from the sheet or control it contains. Public Type POINTAPI x... Read more
The title is quite explanatory: Open a new project. Paste a PictureBox. Public Class Form1 Private Const WM_NCLBUTTONDOWN = &HA1 Private Const HTCAPTION = 2... Read more
Visual Basic is an event driven programming language which enables rapid application development of graphical user interface applications, database access... Read more
This demo allows you to search on a hard drive (without knowing the path). On a form, a TextBox (TextBox1) and a label (Label1) Copy/paste the code in the... Read more
Under VB6 the list boxes don't have the horizontal scroll and it may be quite annowing if the length of the texts are longer than the width of the... Read more
Here's a routine that can fill a TreeView with the system disks and their directories. The problem was to find the nodes key, as sometimes a key was... Read more
To send an alert or a message to the user, many of us make use of a box from popping out from one side of the screen. While performing this, have you taken... Read more
To keep an application window on top of other applications, regardless if they were already present on the screen or launch after. Public Declare Function... Read more
The code demonstrates the use of: A class module The GetSystemPowerStatus API modified in VB.net to eliminate the "Access Violation Exception" error. Using... Read more
Here are some tips on how you can monitor some lines in a straight line on a form To follow that track the mouse, click on the form, press and hold the... Read more
If you need need VBA macro to move to the cell 'underneath' the particular button that is being pressed, series of buttons down the page, each... Read more
As mentioned in the title these few lines of code can be used to change the desktop image and save the changes in the registry. Open a new project. In the... Read more
As stated here is a short tip, allowing you to change the image of the desktop, including the modifications in the registry. Open a new project In the Form... Read more
The first one to visit: http://en.kioskea.net/faq/sujet 305 starting with visual basic The official site: http://msdn.microsoft.com/en... Read more
Here is a timer (countdown), it can obviously be used without any display. A practical approach when using controls. Timer MaskedTextBox And for processing... Read more