Jump to content

Search the Community

Showing results for tags 'regkey'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • General
    • Announcements and Site News
    • Administration
  • AutoIt v3
    • AutoIt Help and Support
    • AutoIt Technical Discussion
    • AutoIt Example Scripts
  • Scripting and Development
    • Developer General Discussion
    • Language Specific Discussion
  • IT Administration
    • Operating System Deployment
    • Windows Client
    • Windows Server
    • Office

Categories

  • AutoIt Team
    • Beta
    • MVP
  • AutoIt
    • Automation
    • Databases and web connections
    • Data compression
    • Encryption and hash
    • Games
    • GUI Additions
    • Hardware
    • Information gathering
    • Internet protocol suite
    • Maths
    • Media
    • PDF
    • Security
    • Social Media and other Website API
    • Windows
  • Scripting and Development
  • IT Administration
    • Operating System Deployment
    • Windows Client
    • Windows Server
    • Office

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Member Title


Location


WWW


Interests

Found 1 result

  1. hi i have some question regards to my working program this is my code #include <GUIConstants.au3> #Region ### START Koda GUI section ### Form= $Form1 = GUICreate("Form1", 361, 365, 317, 191) $Input1 = GUICtrlCreateInput("Input1", 24, 40, 169, 21) $Edit1 = GUICtrlCreateList("", 8, 120, 337, 217) GUICtrlSetData(-1, "") $Button1 = GUICtrlCreateButton("Button1", 200, 32, 75, 25, 0) $Button3 = GUICtrlCreateButton("Button3", 280, 32, 75, 25, 0) GUISetState(@SW_SHOW) #EndRegion ### END Koda GUI section ### While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit case $Button1 Readreg() Case $Button3 orc() EndSwitch WEnd Func Readreg() For $i= 1 to 100000 $var = RegEnumVal("HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run",$i) If @error <> 0 then ExitLoop GUICtrlSetData($Edit1,$var) Next EndFunc and my GUICtrlSetData result is only the value name of a regkey can possible to show the type and the date value in regkey .... ?
×
×
  • Create New...