Custom Query (3931 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (409 - 411 of 3931)

Ticket Resolution Summary Owner Reporter
#2866 Fixed regread cant read x64 keys remote Jon anonymous
Description

If you run regread from a x86 os PC and want to read a regkey from a x64 os remote than this is not working.

Example:

RegRead("\\REMOTEx64SYSTEM\HKLM64\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update\Results\Install", "LastSuccessTime")

This key doesn't exists in the HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node so the command fails with @error 1 = unable to open requested key

It makes no difference if run with HKLM or HKLM64 but in my opinion HKLM64 should do the job

#2869 Fixed GUICtrlSetTip displays wrong tip message in child GUI when tabs used in parent and child GUIs Jon Mungo
Description

Using GUICtrlSetTip() on tab items on a parent GUI as well as on a child GUI.

The tips are displayed correctly for the parent GUI tab items but not for the child GUI tab items. The mouse over on the child GUI tab items produces the same tip messages as for the parent GUI tab items for as many (number of) tabs and tips also found in the main GUI (the first 2). This applies regardless whether tip messages are defined for tab items in the child GUI or not.

If the number of tab items with tips in the child GUI (3 tab items) is larger than in the main GUI (2 tab items), then defined tip messages are displayed correctly for those tab items (numbers) larger (in this case the 3rd tab item). http://www.autoitscript.com/forum/topic/163891-guictrlsettip-problem-wrong-tip-message-in-child-gui-when-tabs-used-in-parent-and-child-gui/

#include <GUIConstantsEx.au3>
Opt('MustDeclareVars', 1)
Global $main_gui, $pop_gui

main_gui()

Func main_gui()
	$main_gui = GUICreate ("Gui Main - TABs and tips", 400, 400, -1, -1, -1, -1, 0)

	GUICtrlCreateTab(10, 10, 200, 100)
	GUICtrlCreateTabItem("Main Tab 01")
	GUICtrlSetTip(-1, "TAB Main 1")

	GUICtrlCreateTabItem("Main Tab 02")
	GUICtrlSetTip(-1, "TAB Main 2")

	GUICtrlCreateTabItem("")

	Local $exit = GUICtrlCreateButton("Exit", 110, 360, 80, 20)
	Local $pop  = GUICtrlCreateButton("Pop-up", 210, 360, 80, 20)
    GUISetState(@SW_SHOW)

    While 1
    Local $msg_pop = GUIGetMsg()
        Select
            Case $msg_pop = $GUI_EVENT_CLOSE
                ExitLoop
            Case $msg_pop = $exit
                ExitLoop
			Case $msg_pop = $pop
               pop_gui()
        EndSelect
	WEnd
	GUIDelete()
EndFunc

Func pop_gui()
	$pop_gui = GUICreate ("Gui Pop-up - TABs and tips", 300, 300,-1, -1, -1, -1, $main_gui)

	GUICtrlCreateTab(10, 10, 280, 100)
	GUICtrlCreateTabItem("Pop-up Tab 01")

	GUICtrlCreateTabItem("Pop-up Tab 02")
	GUICtrlSetTip(-1, "TAB Pop-up 2")

	GUICtrlCreateTabItem("Pop-up Tab 03")
	GUICtrlSetTip(-1, "TAB Pop-up 3")

	GUICtrlCreateTabItem("")

	Local $exit = GUICtrlCreateButton("Exit", 110, 260, 80, 20)
	GUISetState(@SW_SHOW)

	While 1
    Local $msg_pop = GUIGetMsg()
        Select
            Case $msg_pop = $GUI_EVENT_CLOSE
                ExitLoop
            Case $msg_pop = $exit
                ExitLoop
        EndSelect
	 WEnd
	 GUIDelete()
EndFunc
#2882 Fixed AutoItX PixelChecksum Bug Jon JohnOne
Description

It does not work in C# (don't know about other OS') and returns 0 regardless of coordinates.

namespace AutoItXTest
{
    class Program
    {
        static void Main(string[] args)
        {
            Rectangle Rect = new Rectangle(10, 10, 10, 10);
            System.UInt32 cksm = AutoItX.PixelChecksum(Rect, 1);
            //uint cksm = AutoItX.PixelChecksum(Rect, 1);
            Debug.WriteLine("Checksum = " + cksm.ToString());
        }
    }
}

I suspect it is because the return value can be as large as uint64, and the function only accommodates a return of uint32.

Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.