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

  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!