qioru Client Регистрация 09.08.2012 Сообщения 33 Благодарностей 1 Баллы 8 05.02.2015 #1 How can I create a global list from a text file in Code Creator , from which I take them line by line text can be used in instances
How can I create a global list from a text file in Code Creator , from which I take them line by line text can be used in instances
qioru Client Регистрация 09.08.2012 Сообщения 33 Благодарностей 1 Баллы 8 05.02.2015 #2 ok I understand. In c # make a list from a text before Код: executionResult = ActionGroup1.Execute(instance, project); In Assemblies Documentation I found that I can add to ZennoPoster list in the following way Код: var list = project.Lists["MyList"]; // add a new item to list list.Add("new_list_item"); but how can initialize ZennoPoster list because it gives me an error when I try to add Вложения error1.jpg 59,1 КБ Просмотры: 685
ok I understand. In c # make a list from a text before Код: executionResult = ActionGroup1.Execute(instance, project); In Assemblies Documentation I found that I can add to ZennoPoster list in the following way Код: var list = project.Lists["MyList"]; // add a new item to list list.Add("new_list_item"); but how can initialize ZennoPoster list because it gives me an error when I try to add
rostonix Известная личность Регистрация 23.12.2011 Сообщения 29 067 Благодарностей 5 719 Баллы 113 06.02.2015 #3 You need to create list manually. You cannot generate it in code.