@ Lukas W
I been here a while (over 3 years). TGC has my home address on record. Its a very simple prog written in PureBasic. Here is the source code:
Procedure.s GetDirectX()
If RegOpenKeyEx_ (#HKEY_LOCAL_MACHINE, "SOFTWARE\Microsoft\DirectX", 0, #KEY_READ, @dxkey) = #ERROR_SUCCESS
If RegQueryValueEx_ (dxkey, "Version", #NULL, #NULL, #NULL, @size) = #ERROR_SUCCESS
dxversion$=Space(size)
RegQueryValueEx_ (dxkey, "Version", #NULL, #NULL, @dxversion$, @size)
EndIf
RegCloseKey_ (dxkey)
EndIf
ProcedureReturn dxversion$
EndProcedure
MessageRequester("Information",GetDirectX(), 0)
All it does is read a registry entry in direct x version. I just need to know if the string "SOFTWARE\Microsoft\DirectX" works on non-english systems.
The word "Gullible" cannot be found in any English Dictionary.