Custom Query (3927 matches)
Results (208 - 210 of 3927)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #2075 | Fixed | GUICtrlSetImage changes icon position on resizable window | ||
| Description |
When a window is resized & the icon control is moved from its original position, updating it with GUICtrlUpdateImage moves it to its original position again. #include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
$Form1 = GUICreate("Form1", 185, 139, 192, 148, BitOR($GUI_SS_DEFAULT_GUI,$WS_SIZEBOX,$WS_THICKFRAME))
$Icon1 = GUICtrlCreateIcon(@ScriptDir & "\default.ico", -1, 16, 88, 32, 32)
GUICtrlSetResizing(-1, $GUI_DOCKLEFT+$GUI_DOCKBOTTOM+$GUI_DOCKWIDTH+$GUI_DOCKHEIGHT)
GUISetState(@SW_SHOW)
AdlibRegister("updateicon")
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd
Func updateicon()
GUICtrlSetImage($Icon1, @ScriptDir & "\default.ico")
EndFunc
|
|||
| #360 | Fixed | RunAs() function not working on Windows 2000 | ||
| Description |
Hi, I try to use the RunAs() and RunAsWait() functions on Windows 2000. RunAs("myaccount", "mydomain", "mypassword", 1, "cmd.exe", @SystemDir, @SW_SHOW)
It works on Windows XP, it don't on Windows 2000. RunAs() returns 0 @error returns 1 @extended returns 1314 Someone encountered the same issue, see : http://www.autoitscript.com/forum/index.php?showtopic=72863 Thank you in advance. |
|||
| #208 | Rejected | Expand Adlib functionality | ||
| Description |
I found out the hard way that you can only have one function called via AdlibEnable(). Would it be possible to allow more function calls via this method? |
|||
