Advertisement
Facemix

@error -INI

Nov 30th, 2014
212
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
AutoIt 0.41 KB | None | 0 0
  1. ;So klappt es auf jedenfall!
  2. $Test = IniReadSection("Test.ini", "11")
  3. If @error Then
  4.     MsgBox(0, "", "Ne diese Section ist uns nicht bekannt!")
  5. Else
  6.     MsgBox(0, "", "Jop diese Section gibt es!")
  7. EndIf
  8.  
  9. ;und so irgendwie nicht hehe
  10. $Test = IniRead("Test.ini", "11", "Key", Default)
  11. If @error Then
  12.     MsgBox(0, "", "Ne diese Section ist uns nicht bekannt!")
  13. Else
  14.     MsgBox(0, "", "Jop diese Section gibt es!")
  15. EndIf
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement