After upgrading from 5 to 7 I got few issues:
1. Cannot send captcha via decaptcher dll. Is only putting url in "more options" in setting necessary? Since 7 I cannot send them both in project maker and main app.
2. I am no good with C# but any reason why it stopped working?:
1. Cannot send captcha via decaptcher dll. Is only putting url in "more options" in setting necessary? Since 7 I cannot send them both in project maker and main app.
2. I am no good with C# but any reason why it stopped working?:
C#:
var path = @"{-//-}\Resources\list_" + project.Variables["activeproject"].Value + ".txt";
string str = Macros.FileSystem.FileGetLine(path,"0", false);
string regex = ".*\n";
var reg = new System.Text.RegularExpressions.Regex(regex, System.Text.RegularExpressions.RegexOptions.None);
System.Text.RegularExpressions.MatchCollection matches = reg.Matches(str);
foreach (System.Text.RegularExpressions.Match match in matches)
{
List<string> tmp = new List<string>();
System.Text.RegularExpressions.GroupCollection groups = match.Groups;
tmp.Add(groups[0].Value);
project.Lists["projectdata"].Add(groups[0].Value);
}