Результаты поиска

  1. K

    How should you do it: System that check the database for taking action

    Thank you, that is a good point, about the RAM. My project takes max. 1 minute to complete the steps. So I could schedule it on 2 minutes for safety. Yea, codecreator.... ;) I feel more flexibility with the Code Creator, because I can extend easily and do some tasks faster then when designing...
  2. K

    How should you do it: System that check the database for taking action

    Hello, I see nobody respond to this question. Do you need more information? Is it too complex for most users? Thanks!
  3. K

    How should you do it: System that check the database for taking action

    Hi guys, A question for the more advanced use of CodeCreator in C#. I am about to automate something on my website for my customer. When a customer signs up, a record is written to the database. One column is, lets say "Status". When the Status is '0', ZennoPoster must take action to complete...
  4. K

    Helpful code snippets

    Aren't you not always in the situation that you need to register a new account with: First name Last name Username birth dates Password I have a default script for it: Random random = new Random(); int year = random.Next(1954, 1991); int month = random.Next(1,12); int day = random.Next(1,28)...
  5. K

    Regex Question

    Look here if you need to learn regular expressions: http://www.regular-expressions.info/tutorial.html
  6. K

    Using ZP withs PTC and PTR emails

    I suggest you to do a google search for the YouTube ZennoLab channel. Look around there, the answer is Yes. :p
  7. K

    When Zenno4?

    We dont know, ZennoLab is a bit silent about version 4.
  8. K

    javascript line break

    Are you trying to do that with regular expression builder? You can take that string and perform a regular expression that skips the new lines.
  9. K

    Adwords registration problem

    You can try to disable javascript? On the other hand, with CodeCreator, you can accomplish many more things. You need to know how to code in PHP or C#.
  10. K

    Difficulties with security when filling in a form

    I have just tried it, but where are the functions for do a mouseOver and mouseMove? Cant find it in the HtmlElement, not in the Emulations library, That was my original question guys! ^_^
  11. K

    Can I use instance.SetHeader for the Accept-Language HTTP attribute?

    I leave question there when it comes out :p
  12. K

    Can I use instance.SetHeader for the Accept-Language HTTP attribute?

    So we cannot use it, maybe in version 3? *Hint hint*
  13. K

    Difficulties with security when filling in a form

    Better I do not, but: its the big G account creation. They have developed their botguard in Javascript on that page, check it out.. :) Thanks, I have not tried to call it, so I should do that. Thus, I can move the mouse from the one element to another? I check it out. Thank you, Thats a pain...
  14. K

    Difficulties with security when filling in a form

    Hello, I am trying to defeat a JavaScript based security that checks if the user is a real user. And I must say: it works really good. I am now using the emulation library in its full power, work with random timeouts, fill in the form slowly, etc. Still get not passed the security. (I looked in...
  15. K

    Can I use instance.SetHeader for the Accept-Language HTTP attribute?

    Thank you, I shall try it out!
  16. K

    Can I use instance.SetHeader for the Accept-Language HTTP attribute?

    I want to use this code in my program, and have tested it, seems that it does not work: instance.SetHeader("Accept-Language", "en-us"); Maybe it is just the website where I run my program what is failing? Thanks.
  17. K

    Thousands of the same error in my log.txt and a slow ZennoPoster Pro

    Now I have ZennoPoster Pro on it own server :) Also Win 7 64bit, and now I do not have any problems. Maybe the fresh install, and no other programs installed does the trick. Thanks, Thread solved!
  18. K

    Report bad captcha's to DeCaptcher.com

    Hi, thanks for your answer. As I see here: http://decaptcher.com/client/ ( I downloaded the C# code, there is a possibility to report bad captcha's. But it seems that your DeCaptcher.dll does not support it? Thanks in advance,
  19. K

    Clarification of running copies of CodeCreator?

    Thanks for the reply, could change the text here: http://zennolab.com/en/buy-it-now/version-comparison/ ;)
  20. K

    Report bad captcha's to DeCaptcher.com

    bump..
  21. K

    Clarification of running copies of CodeCreator?

    bump..
  22. K

    Thousands of the same error in my log.txt and a slow ZennoPoster Pro

    I do not have a key named Platform on that path in my Registry Editor. Any solution?
  23. K

    Thousands of the same error in my log.txt and a slow ZennoPoster Pro

    Also, .net 3.5.1 is also installed. Both frameworks are accessible.
  24. K

    Thousands of the same error in my log.txt and a slow ZennoPoster Pro

    Thank you, but when I uninstall .net 4.0 I get this message when I try to open up my CodeCreator project. Unable to open project MSBuildToolsPath is not specified for the ToolsVersion "4.0" defined at "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\MSBuild\ToolsVersions\4.0", or the value specified...
  25. K

    Thousands of the same error in my log.txt and a slow ZennoPoster Pro

    After restart, ZennoPoster Pro does not freeze, but the errors keep coming.
  26. K

    Thousands of the same error in my log.txt and a slow ZennoPoster Pro

    Unfortunately, now when I just start ZennoPoster Pro, and hit Start at the Control tab, It freezez. Running 25% of one of my four CPU cores.
  27. K

    Thousands of the same error in my log.txt and a slow ZennoPoster Pro

    I have: ZennoPoster Pro Windows 7 .NET Framework 1.1 and 4 A CodeCreator project for creating Hotmail Accounts with Captcha solving working with DeCaptcher.dll I go to ZennoPoster Pro, add the hotmail template and choose 1 thread. It 'thinks' a time, and then shutdown ZennoPoster Pro...
  28. K

    Report bad captcha's to DeCaptcher.com

    *I use CodeCreator and program in C#
  29. K

    Clarification of running copies of CodeCreator?

    In the Zennolab version comparison there is stated the following: Q: What does it mean «Count of computers» and how does it differ from «Running copies»? A: Although you are authorized to install the Standard and Professional versions of the program on multiple computers, the program can...
  30. K

    Report bad captcha's to DeCaptcher.com

    Hello, Is it possible to report a bad captcha to DeCaptcher.com. Sometimes they return the wrong result text. I program in C#, maybe it can be done programmatically? I wanted to know if there is a function or something for it, could not find it in the help. Thanks!
  31. K

    How to access variable when in step2.cs from step1.cs?

    You are my todays true hero :D Now I see this, I say to myself: "Ofcourse use public for accessing and static for remembering the var!" Ai ai, but you get many thanks!!
  32. K

    How to access variable when in step2.cs from step1.cs?

    Hello, I have opened two websites, so CodeCreator creates two steps. In step1.cs I have two variables an var id and a var keyword. How can I access these from step2.cs? I have understandig in PHP and C# but my OOP level is novice :) Thanks!
  33. K

    Where is the best way to buy proxy for zennoposter?

    My vote is also: +1 for Socks5 support
  34. K

    How to create a rule to select Anonimity AND Elite proxies

    Hello, I want to select both Anonimity proxies and Elite proxies. If I select them both, only proxies that provides Anonimity and Elite proxies appear in the list. How to select by this rule too?: Anon/Elite yes/no no/yes Thanks!
  35. K

    Small speed issue in brower instance of ZennoPoster

    Hello, I do not think it is really a bug, more a speed issue. When submitting a website -> parsing DOM -> regex results -> save results to file -> Hit the next button -> loop again Then the url in the browser instance is not updated instantly, it is just waiting 2 seconds after loading the...
  36. K

    Use counter value to select a line from a file

    YAY! It is working.. I have setup agian the whole project, and now it is working. But.. it is not working when using "Action recording on the web page". So this is a feature request, can you make this work? Thanks!
  37. K

    Use counter value to select a line from a file

    Hello, I have a problem, first an image of the problem: - The upper left box is a counter, initial value is 0 - The upper right box is a macro that retrieves the counter value - The lower box is the next action in the project The Execution result of the macro that retrieves the counter value...