Visual Foxpro & WinApi

A
top
B
top
C
top
D
top
E
top
F
FindWindow
declare integer FindWindow in WIN32API ;
string cNull, string cWinName
Sucht ein Fenster anhand der Caption
top
G
GetActiveWindow
declare integer GetActiveWindow in user32 Gibt die Hwnd (Fensterhandle)
GetPrivateProfileString
declare integer GetPrivateProfileString in win32api;
string cSection, string cKey, string cDefault,;
string @cBuffer, integer nBufferSize, string cInifile
Damit lässt sich eine "INI" - Datei auslesen
siehe auch WritePrivateProfileString
top
H
top
I
top
J
top
K
top
L
top
M
top
N
top
O
top
P
top
Q
top
R
top
S
ShellExecute
declare ShellExecute IN shell32.dll ;
Integer, String, String, String, String, Integer
Damit lassen sich z.B. Webseiten öffnen,
Mails erstellen, Dateien öffnen ..
top
T
top
U
top
V
top
W
WritePrivateProfileString
declare integer WritePrivateProfileString in win32api;
string cSection, string cKey,;
string cValue, string cInifile
Damit lässt sich in eine "INI" - Datei schreiben
siehe auch GetPrivateProfileString
top
X/Y
top
Z
top