Недавний контент smol84

  1. S

    Install VPS WIndows 2008 RC2

    FYI, I use liquid web VPS and it works fine - no problems, my configuration has 2.7gb RAM
  2. S

    A problem with multi threading.

    You mention to check every element is loaded or values passed to element - Checking element load is easy but how do you check is a click is passed to a button, for example with - he.RiseEvent("click", instance.EmulationLevel);?
  3. S

    Data leaking across threads

    I guess it will depend how zenno launches each instance. Typically when multithreading with c# any class defined as "internal class ClassName" will allow all methods defined as public or public static to be accesible to any thread which is run on the same assembly, and I assume that each thread...
  4. S

    Data leaking across threads

    I make my projects in Code Creator, so I can fix this but for those who don't this could be a problem for Project maker also. I notice that when I make projects with the record function it automatically declares the classes as internal and then the methods as public. This means that any...
  5. S

    Converting v3 code creator project to Zenno v5

    HTMLElement, all the emulations seem to have changed //he.RiseEvent("click", false); he.RiseEvent("OnClick", "none"); //he.SetValue(input, true); he.SetValue(input, "Middle", true);
  6. S

    Converting v3 code creator project to Zenno v5

    No overload for method 'Execute' takes 1 arguments. The way we executed an instance now has changed two two arguments change Step1.Execute(instance); to Step1.Execute(instance, project) From what I can tell the " public interface IZennoPosterProjectModel " allows you to store lists, tables...
  7. S

    Converting v3 code creator project to Zenno v5

    Error(s) The best overloaded method match for 'ZennoLab.CommandCenter.Instance.SetProxy(string, int, string, string, string)' has some invalid arguments. [Row 75; Column 4] cannot convert from 'bool' to 'string'. [Row 75; Column 41] This is because the Parameters to set a proxy has changed...
  8. S

    Converting v3 code creator project to Zenno v5

    The old emulations file no longer exists, it provides an error. Just delete the reference because it has been replace with using ZennoLab.Emulation;
  9. S

    Converting v3 code creator project to Zenno v5

    I've already logged a support request for some errors I have come across. I am listing here some items that I have uncovered in my own analysis hoping that it might also help someone else and that hopefully the zenno team can implement fixes when converting these files in future builds. *...
  10. S

    Thread Locking

    What are you talking about??? This is code creator, I'm not using the zenno functions I'm using C# to write to a file.. The problem is clearly stated because you do not impose thread locking in your mulithreaded setup
  11. S

    New build 4.5.0.1 (06 March 2013)

    WOOOOOOOO!!! FINALLY AN UPDATE TO CODE CREATOR... Just what I've been waiting for, this is better than Christmas!
  12. S

    Negative feature selection in Actions Designer

    you can do this via regex or regex within a regex
  13. S

    Thread Locking

    ZP crashes when threads/instances try and write to a file or DB at teh same time. This can be tested by launching over 100 threads and timing them to all execute a write at the same time. In code creator this is resolved by implementing thread locking - I am surprised that each instance...
  14. S

    Wait for element

    The only problem with the work around is that when you implement a loop in zenno poster it creates a memory leak and ZP will crash
  15. S

    Add/Remove items in teh task list in ZP from code creator or template

    I would like to have a feature where I can define criteria that causes a task to be removed from ZP. For example I have 1000 threads running, scraping data from a URL list/File/DB When my program reaches the end of the list it would be good to remove the task from ZP, if there are multiple...