ContributionsMost RecentMost LikesSolutionsRe: how to read .ini file I found my mistake: only missed an escaping "\ " for ini file path how to read .ini file Hi, I want to get user input from .ini file. According to INI method tutorial, https://support.smartbear.com/testcomplete/docs/reference/program-objects/storages/ini.html , my .ini file contains [Root] section and Storage extension is enabled (File> Install Extension> Storages under Common section). However, the simple script doesn't find values option: ini file ; IMPORTANT: The Root section is required [Root] [Settings] Access=ReadWrite Type=1 [Temp] Mask=*.log script function function ReadIniFile() { var ini = Storages.INI("<path to folder>\config_test.ini"); // Reads the Type value from the Settings section value = ini.GetSectionNames() Log.Message(value) var value = ini.GetSubSection("Settings").GetOption("Type",0); Log.Message(value); value = ini.GetSubSection("Settings").OptionExists("Type"); Log.Message(value) value = ini.GetSubSection("Temp").OptionExists("Mask"); Log.Message(value); } Log messages: 0 False False Is there any step missing? SolvedRe: how to save text in TcxButtonEdit I suppose you mean that between running some projects in project suite, ProjectSuite variables can be accessed across projects. But I search to save this variable also after project run ends. Currently, your suggestion didn't solve my problem. Thanks Re: how to save text in TcxButtonEdit Hi Shankar, I want that this text will be save for another Project run. Currently, your code save into a variable only for the current project run. how to save text in TcxButtonEdit I used user form to get configuration test from user After last text insertion in TcxButtonEdit, I want to save text inserted in text property of TcxButtonEdit for next use. Is there any option to save this text in TcxButtonEdit property? Thanks SolvedRe: Add another TestComplete engine to SVN repository Hi Alex, Thanks for your suggestion. As you suggest, connection from SVN client solved the problem in order to update the project suite via the TestComplete menu. However, to commit change to repository, an error about FS format is still displayed, as described in attached picture. Add another TestComplete engine to SVN repository Hi, My project suite (on a first PC) is connected to SVN repository. Currently, I want to add another PC with TestComplete project to same repository, in order to syncronize between both developpements on same project. After Subversion and SVN client are installed on this 2nd PC, I tried to perform action "Select Subversion Repository". In repository path, I inserted the repository folder I want to connect. TestComplete error is displayed as described in attached picture. Can you help me what wrong in this procedure? Thanks List index out of bounds(0) This message occurs sometimes in TestComplete- version installed on my PC is 11.31.2420.7 This behavior doesn't stuck TestComplete and it occurs during writing scripts , but it worries me if there's a problem in TestComplete installation. What is the cause of this behavior? Is it related to the fact that I didn't uninstall previous TestComplete version (10.60.3387.7) SolvedRe: QT Testing module Hi Julia, I tried your tips about filtering Open Application and it is useful for increasing TestComplete performance. About disabling unused plugins, I disabled only plugins that I'm sure I needn't them for my test. I'm afraid to disable plugins I need. But actually there is not improvement about expanding Qt objects tree. Do you have any other idea? Re: Issue with SVN while adding project to subversion Thank you for the explanation, I currently installed Subversion server CollabNet Subversion 1.8.13 for Windows, and all subversion functions are available