[VBA/VB6] My Documents + Environment Variables Show[VBA/VB6] My Documents + Environment Variables
With VBA
With VB6
Environment Functions
Windows Variables
Getting started
As displayed in Windows Explorer, the My Documents folder appears to be in the root, but it is not the case. It...
[VB6/VBA] The CommonDialog control Show[VB6/VBA] The CommonDialog control
The available functions with CommonDialog
Getting started
An example of a standard module
The various functions of control CommonDialog
Here is a list of all the available constants,although...
[VB6] Making a form transparent Show[VB6] Making a form transparent
Getting started
Restriction
In a module
As used in a form
Getting started
Here is a brief explanation on how to use the transparency based upon:
The desired format, including controls, according to a...
[VBA: VB6] Using excel from another application Show[VBA: VB6] Using excel from another application
Here is a little routine to call Excel from VB6 or another Office application.
Paste in a general module (eg Module1)
In VBA>> Insert>> Module and paste in the window ...
In VB6>>...
VB6 Finding the RGB values of a color ShowVB6 Finding the RGB values of a color
Dim R as integer
Dim G as integer
Dim B as integer
Sub FindRGB(Col As Long)
R = &HFF& And Col
G = (&HFF00& And Col ) \ 256
B = (&HFF0000 And Col ) \ 65536
End Sub
Note: Here...
VB6: Modifying the image of the desktop ShowVB6: Modifying the image of the desktop + write changes to the registry
Project initialization
Testing
As stated here is a short tip, allowing you to change the image of the desktop, including the modifications in the...
Environment variables ShowEnvironment variables
An environment variable is a dynamic value loaded into the memory that can be used by several processes operating simultaneously. On most operating systems, the location of some libraries or of the main system executables may...
TCP/IP ShowWhat does TCP/IP mean?
TCP/IP is a suite of protocols. The acronym TCP/IP means "Transmission Control Protocol/Internet Protocol" and is pronounced "T-C-P-I-P". It comes from the names of the two major protocols in the suite of protocols, i.e....