|
|
|
|
|
Why use Option Explicit
|
|
Author:
| |
ptaylor
|
|
Views:
| |
542
|
|
|
Option Explicit is a build time error check command
At Build time if Option Explicit is declared then VB
will check for any errors and report them
This makes programs more stable
|
|
|
|
|
How to use SQL
|
|
Author:
| |
ptaylor
|
|
Views:
| |
1283
|
|
|
How to use SQL Statments in Visual Basic 6
Read (SELECT)
Write (INSERT, UPDATE, DELETE)
|
|
|
|
|
|
|
Read from the Registry
|
|
Author:
| |
ptaylor
|
|
Views:
| |
3728
|
|
|
Read data from the Registry
This example gets the installed path of MS Outlook
|
|
|
|
|
|
|
Read and Write Text based files
|
|
Author:
| |
ptaylor
|
|
Views:
| |
2680
|
|
|
Read and Write text based files
WriteNewFile will write a text based file from new
WriteToEndOfFile will add to the end of a text based file
ReadFromFile returns the text based file lind by line
By "Text Based File" I am referring to all files based on plain text
e.g. *.txt, *.xml, *.html and any other files
|
|
|
|