Jump to content

ini read


Recommended Posts

Hi

every time i run this script it returns the msgbox with the error can any one see whats up with it

thanks

#include <GuiConstants.au3>

$Read = IniRead("Name.ini","names","name","Not found")
if $Read = "Not found" Then
    IniWrite("Name.ini","names","name",$Read)
MsgBox(48,"error","File not found")
Exit
Else
    
EndIf

    
    
GuiCreate("MyGUI", 230, 104,-1, -1 , BitOR($WS_OVERLAPPEDWINDOW, $WS_CLIPSIBLINGS))
$Button_1 = GuiCtrlCreateButton("Go", 20, 60, 190, 30)
$Input_2 = GuiCtrlCreateInput("Input2", 160, 120, 1, 1)
$Label_3 = GuiCtrlCreateLabel("Name", 10, 30, 40, 20)
$Input_4 = GuiCtrlCreateInput($Read, 70, 20, 150, 20)
GuiSetState()
While 1
    $msg = GuiGetMsg()
    Select
    Case $msg = $GUI_EVENT_CLOSE
        ExitLoop
    Case Else
    ;;;
    EndSelect
WEnd
Exit

some of my scripts check them out and give feedback so i can learn from them :)autoclicker a autoclickernote taker a script to take notes with

Link to comment
Share on other sites

You are writing "Not Found" to the ini file. So whether it reads it or not, it will always return the value "Not Found".

#include <GuiConstants.au3>

$Read = IniRead("Name.ini","names","name","Not found")
If $Read = "Not found" Then
    IniWrite("Name.ini","names","name","Jon")
    MsgBox(48,"error","File not found")
    Exit  
EndIf

    
    
GuiCreate("MyGUI", 230, 104,-1, -1 , BitOR($WS_OVERLAPPEDWINDOW, $WS_CLIPSIBLINGS))
$Button_1 = GuiCtrlCreateButton("Go", 20, 60, 190, 30)
$Input_2 = GuiCtrlCreateInput("Input2", 160, 120, 1, 1)
$Label_3 = GuiCtrlCreateLabel("Name", 10, 30, 40, 20)
$Input_4 = GuiCtrlCreateInput($Read, 70, 20, 150, 20)
GuiSetState()
While 1
    $msg = GuiGetMsg()
    Select
    Case $msg = $GUI_EVENT_CLOSE
        ExitLoop
    Case Else
    ;;;
    EndSelect
WEnd
Exit

"So man has sown the wind and reaped the world. Perhaps in the next few hours there will no remembrance of the past and no hope for the future that might have been." & _"All the works of man will be consumed in the great fire after which he was created." & _"And if there is a future for man, insensitive as he is, proud and defiant in his pursuit of power, let him resolve to live it lovingly, for he knows well how to do so." & _"Then he may say once more, 'Truly the light is sweet, and what a pleasant thing it is for the eyes to see the sun.'" - The Day the Earth Caught Fire

Link to comment
Share on other sites

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
 Share

  • Recently Browsing   0 members

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