Jump to content

Recommended Posts

Posted

i know this is probably a dumn question but what code would i need for my program to save info to the registry so that the next time i open the program the info that was entered in the text boxes last time are there this time?

Posted

You could also use an ini file. If you're stuck on the idea of using the registry use RegRead/RegWrite.

sorry kinda new at this

how would i use an ini file

what would i have to put into it?

Again thanks for any of your help

Posted

an example of how to write to an ini file, the data that's entered into an input box.

#include <GUIConstantsEx.au3>

;Opt('MustDeclareVars', 1)

Example()

Func Example()
    Local $file, $btn, $msg
    
    GUICreate(" My GUI input acceptfile", 320, 120, @DesktopWidth / 2 - 160, @DesktopHeight / 2 - 45, -1, 0x00000018); WS_EX_ACCEPTFILES
    ;$file = GUICtrlCreateInput("", 10, 5, 300, 20)
    GUICtrlSetState(-1, $GUI_DROPACCEPTED)
    $ip=GUICtrlCreateInput("", 10, 35, 300, 20)     ; will not accept drag&drop files
    $btn = GUICtrlCreateButton("Ok", 40, 75, 60, 20)

    GUISetState()

    $msg = 0
    While $msg <> $GUI_EVENT_CLOSE
        $msg = GUIGetMsg()
        Select
        Case $msg = $btn
            IniWrite("info.ini","input","data",GUICtrlRead($ip))
                ExitLoop
        EndSelect
    WEnd

    ;MsgBox(4096, "drag drop file", GUICtrlRead($file))
EndFunc   ;==>Example

Guess u can figure out the rest...

[font="Garamond"]Manjish Naik[/font]Engineer, Global Services - QPSHoneywell Automation India LimitedE-mail - Manjish.Naik@honeywell.com

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...