[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...
[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/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...
Download Real VNC ShowRealVNC is CUSTOMER VNC (VIRTUAL NETWORK COMPUTING) allowing to take the remote hand on computers, if a waiter VNC is thrown on the distant machines.
The present version of VNC is a free but restricted version. For this reason, they will be able to...
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...
Installing a network adapter ShowPurpose
The purpose of this article is to set up a network to enable data exchanges between computers, resource sharing and network games.
Is it therefore necessary to install a network card in each computer that may be part of the local area...
Client/Server Environment ShowIntroduction to Client/Server Architecture
Numerous applications run in a client/server environment, this means that client computers
(computers forming part of the network) contact a server, generally a
very powerful computer in terms of...