-
Posts
95 -
Joined
-
Last visited
Reputation Activity
-
-
Akarillon reacted to John in how to access right click commands
These command strings can be retrieved from the registry easily enough. Assuming this is an exe it will be under:
HKEY_CLASSES_ROOTexefileshell<conext menu string>Command, (Default)
<conext menu string> string is the text you see in the context menu. The value of (Default) is the command or program run when you click that menu. The %1 at the end gets replaced by the path of the file you right clicked.
You can get these values using RegRead(), but if you should know the path of a hex editor, so even bothering to look in the registry should be pointless.
-
Akarillon reacted to BrewManNH in Active Directory UDF
The problem is that $username and $password are referencing labels, not your inputs, plus you're not using GUICtrlRead on the $username and $password, you're just passing the handles to the ADOpen command.
;your code GUICtrlCreateInput("Username", 112, 24, 121, 21) GUICtrlCreateInput("Password", 112, 64, 121, 21, BitOR($GUI_SS_DEFAULT_INPUT,$ES_PASSWORD)) $Username = GUICtrlCreateLabel("Username", 24, 24, 52, 17) $Password = GUICtrlCreateLabel("Password", 24, 64, 50, 17) How it should be written
$Username = GUICtrlCreateInput("Username", 112, 24, 121, 21) $Password = GUICtrlCreateInput("Password", 112, 64, 121, 21, BitOR($GUI_SS_DEFAULT_INPUT,$ES_PASSWORD)) GUICtrlCreateLabel("Username", 24, 24, 52, 17) GUICtrlCreateLabel("Password", 24, 64, 50, 17) ; more code _ADOpen(GUICtrlRead($username), GUICtrlRead($Password)) -
Akarillon reacted to rcmaehl in GPEditor macro immune? [solved]
GPE Registry: http://msdn.microsoft.com/en-us/library/ms815238.aspx
Screensaver Registry Help: http://support.microsoft.com/kb/314493
These may be a bit old but they should still work.