Hi Forum, I'm using this code and works fine, but I would some appropriate syntax to do this "elegant way"
Thanks!
Code:
Check01 = INIFile.GetValue(_WindowsFolder.."\\My Settings.ini", "My Section", "My Value"); if Check01=="01" then Application.Exit(0); Check02 = INIFile.GetValue(_WindowsFolder.."\\My Settings.ini", "My Section", "My Value"); if Check02=="02" then Application.Sleep(10000); Check03 = INIFile.GetValue(_WindowsFolder.."\\My Settings.ini", "My Section", "My Value"); if Check03=="03" then Window.Minimize(Application.GetWndHandle());
Comment