0
Implement a Graph from ASCII Data to Chart Windows Form Control using VB.NETImplement a Graph from ASCII Data to Chart Windows Form Control using VB.NET

The example below is a simple way on how to Plot a Graph in Chart Windows Form Control using VB.Net.Requirements:1. Microsoft Visual Studio (In my case, I'm using Visual Studio 2010 Express Edition).To Begin with:1. Start your Microsoft Visual Basic …

Read more »

0
How to Enable and Disable Macros in Microsoft ExcelHow to Enable and Disable Macros in Microsoft Excel

While most macros are harmless and helpful when it comes to automating repetitive tasks. It also poses a security risks if it's coded with malicious purpose. It can contain unsafe codes that can be harmful when ran on your systems. Do make sure that …

Read more »

0
How to show the Developer Tab in Microsoft Excel 2007How to show the Developer Tab in Microsoft Excel 2007

By default, the Developer Tab is not shown on the Microsoft Excel's Ribbon.In order to show the Developer tab, Go to the File Menu and Click the Excel Options button. On the Excel Options Window, Check the box Show Developer tab in the Ribbon. Then C…

Read more »

1
The Ultimate Annual-Monthly Microsoft Excel Calendar templateThe Ultimate Annual-Monthly Microsoft Excel Calendar template

This Ultimate Excel Calendar Template allows user, company or any organization to create their own calendars. The template was created in VBA and may require the user to enable macro content in the document. Annual Calendar Template:Country - Choose …

Read more »

0
Using Nested IFError - IF - VLookUp Functions in ExcelUsing Nested IFError - IF - VLookUp Functions in Excel

In this example we'll be using three excel functions such as IFERROR, IFand VLOOKUP functions. =IFERROR(IF(G3="","",VLOOKUP(G3,Sheet1!B:C,2,FALSE)), "No Match Found") For this example, we'll use the above formula at Cell "G4":Initially, the formula s…

Read more »

0
Adding Menu's, Sub-Menus and Menu Separator at Design Time in Visual Basic 6Adding Menu's, Sub-Menus and Menu Separator at Design Time in Visual Basic 6

This is a quick guide for beginners on how to add Menu, Sub-Menu and Menu Separator at Design Time in VB6 Project. To do this, Open up your Microsoft Visual Basic and start a New Standard EXE Project that will automatically create a form named Form1…

Read more »

3
Move a border-less Form or Control in Visual Basic 6Move a border-less Form or Control in Visual Basic 6

The following codes allows you to drag or move a border-less Form or Control in Visual Basic 6. This also works on other controls like Label, Image or Picture Box. You can also move or drag a control inside a form. Copy and Paste the code below in a…

Read more »

0
Quick and Easy Screen Capture with FastStone CaptureQuick and Easy Screen Capture with FastStone Capture

Are you doing office works and creating a bunch of reports and another thing your doing is to create a snapshot or capture a portion or part of your screen or window of an app? This tool is what you need it for!  Publisher's Description FastStone Cap…

Read more »

0
Prevent Autorun.inf Virus from running in your ComputerPrevent Autorun.inf Virus from running in your Computer

Autorun.inf is mostly used by hackers to run and spread malicious software or malwares and viruses in computers. Most people especially those who are not so familiar with this type of file are victimized. In my own experience when I was surfing the n…

Read more »

0
Tricks on how to set an image background of folders in Windows XP/Vista/7Tricks on how to set an image background of folders in Windows XP/Vista/7

Have you ever wanted to customize the background of any folders in Windows XP/Vista/7? This trick will allow you to add a custom image background on your personal folders. 1.) Choose the folder you want to customize. 2.) Save the image you want to s…

Read more »

0
Excel VLOOKUP Function TutorialExcel VLOOKUP Function Tutorial

The following example will give you an idea on how to use VLOOKUP in Microsoft Excel. If you're working with an excel database and want it to be dynamic the VLOOKUP/HLOOKUP functions are very useful for you. The VLOOKUP function looks up value in col…

Read more »

0
How to use the VLOOKUP Function in Microsoft ExcelHow to use the VLOOKUP Function in Microsoft Excel

The following example will give you an idea on how to use VLOOKUP in Microsoft Excel. If you're working with an excel database and want it to be dynamic the VLOOKUP/HLOOKUP functions are very useful for you. The VLOOKUP function looks up value in col…

Read more »

0
Keyascii Code Generator in VB6Keyascii Code Generator in VB6

This application allows you get the equivalent KeyAscii Value for every key you'll press on your keyboard. Just click on the "Change Me!" and start pressing any key on your keyboard. The Character Box will display the key you just pressed. And the A…

Read more »

0
How to enable Mouse Wheel Scrolling in VB6How to enable Mouse Wheel Scrolling in VB6

This article will guide you through on how to enable Mouse Wheel Scrolling in VB6. 1. You need to download the Microsoft's VB6 Mouse Wheel Addin. 2. Run the Self-Cabinet Extractor and Unzip the necessary files.    You may change the destination to …

Read more »

0
Make an application on top of another window in VB6Make an application on top of another window in VB6

Maintaining an application on top of other applications, regardless if they were present on the screen or are called later is. VB6: Maintaining an application over the others     * In a general module     * In the opening form     * Calling the funct…

Read more »

0
Compact a JET database using ADO in VB6Compact a JET database using ADO in VB6

The following routines demonstrates how to compact a JET database using ADO: Option Explicit 'Purpose     :  Compact a JET (Access) database using ADO 'Inputs      :  sDatabasePath                   The path to the database path eg. C:\nwind.mdb '   …

Read more »

1
Open an External File, URL, Email and System Apps in VB6Open an External File, URL, Email and System Apps in VB6

The ShellExecute function allows you to open external application, specific URL location, email address or launch system applications upon clicking on a single button. 1. Start a new Standard Exe Project. 2. Add this code in General Declarations. Pr…

Read more »

0
Auto-adjust Column Width of a Listview Control in VB6Auto-adjust Column Width of a Listview Control in VB6

The following function auto adjusts column width of listview controls in vb6. Just copy and paste the code below on your project and call the function after loading data on your listview control. Private Declare Function SendMessage Lib "user32" Ali…

Read more »

1
VB KeyAscii Code and ValuesVB KeyAscii Code and Values

Visual Basic KeyAscii Values can range from 0 to 255.  Here is a chart which shows all possible KeyAscii values along with the character which they represent.To type out any of these characters without pressing the actual character you can do this.H…

Read more »
 
 
Top