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

  1. Hungry Bulldozer

    regex designer returns only 2k results?

    var list =project.Lists["listName"]; // change listName to the name of your list with results var pattern = @"\d+"; // regex here var input = instance.ActiveTab.PageText; var regex = new System.Text.RegularExpressions.Regex(pattern); var matches = regex.Matches(input); for(int i...
  2. Hungry Bulldozer

    regex designer returns only 2k results?

    Hello, you can do this with C# code. I can provide a sample if needed
  3. Hungry Bulldozer

    Как добавить текст в нужную строку

    Возможно номер указан неверное. Нумерация с нуля.
  4. Hungry Bulldozer

    Can the ZP design the actions??

    2. You can take all a - href - http://my.foodmate.net/space-uid- - regex, put it to the list and remove duplicates
  5. Hungry Bulldozer

    Специфичная генерация логина

    Я делаю проверку числа символов в логине и если оно больше чем нужно то обрезаю var login = project.Profile.Login; if(login.Length>16) { project.Profile.Login = login.Substring(0,16); }
  6. Hungry Bulldozer

    How can I Queue Projects?

    Just tested. Works properly
  7. Hungry Bulldozer

    Письмо пока не найдено

    Попробуйте пожалуйста в последнем билде 5.0.3.1
  8. Hungry Bulldozer

    Письмо пока не найдено

    Во сколько потоков качаете. С удалением или без. Какая версия. Какой email провайдер
  9. Hungry Bulldozer

    Resizable windows

    Added to IdeaCollector
  10. Hungry Bulldozer

    Variable window in advanced editor

    Can't reproduce, but agree that select and delete were more convenient
  11. Hungry Bulldozer

    Zennoposter hang during starting template

    What do you mean "Prevous". 4, 3 or 5.0.2?
  12. Hungry Bulldozer

    does zenno poster support mega OCR

    It is possible using this way: http://zennolab.com/discussion/showthread.php?8923-Is-it-possible-to-create-captcha-DLL&p=51078&viewfull=1#post51078
  13. Hungry Bulldozer

    Can the ZP design the actions??

  14. Hungry Bulldozer

    does zennoposter solve its own captchas?

    You can solve some kinda of CAPTCHAs with CapMonster
  15. Hungry Bulldozer

    Screen jumps when use action designer

    As far as I can see it is fixed for future builds.
  16. Hungry Bulldozer

    How to use own URL for proxy checking

    1. Download 2 scripts https://dl.dropboxusercontent.com/u/23080832/Soft/ProxyChecker/index.php https://dl.dropboxusercontent.com/u/23080832/Soft/ProxyChecker/proxy.php 2. Create subdomain, for instance check.domain.com 3. Load 2 scripts to the root of subdomain 4. Add...
  17. Hungry Bulldozer

    Как добавить свой URL проверки проксей

    1. Скачать 2 скрипта https://dl.dropboxusercontent.com/u/23080832/Soft/ProxyChecker/index.php https://dl.dropboxusercontent.com/u/23080832/Soft/ProxyChecker/proxy.php 2. Создаете субдомен, например check.domain.com 3. Загружаете в корень 2 скрипта 4. URL check.domain.com/proxy.php...
  18. Hungry Bulldozer

    скорость заполнения поля

    так попробуйте
  19. Hungry Bulldozer

    Можно оплатить с протекцией?

    Да, конечно. Можете оплатить таким образом и детали выслать по email
  20. Hungry Bulldozer

    How can I load ZennoPoster Project (*.xmlz) in CodeCreator?

    You can create the feature request here: http://zennolab.com/discussion/forumdisplay.php?111-Enhancements
  21. Hungry Bulldozer

    После запуска Proxy Checker падает сеть

    Значит сетевое оборудование максимум потоков не тянет
  22. Hungry Bulldozer

    Advice on a phrase matching tool.

    Sounds like nothing more than work with DOM and regular expressions.
  23. Hungry Bulldozer

    Can zenno 5 crop a photo automatically?

    The only way to do that is via c# code
  24. Hungry Bulldozer

    How can I Queue Projects?

    Go with the latest 5.0.3.1
  25. Hungry Bulldozer

    How can I Queue Projects?

    It is possible with task manager of version 5
  26. Hungry Bulldozer

    Start The Instance Maximized

    //code to set up windows size the same as primary screen's resolution foreach (var screen in System.Windows.Forms.Screen.AllScreens) { if(screen.Primary) { instance.SetWindowSize(screen.WorkingArea.Width,screen.WorkingArea.Height); return 0; } }
  27. Hungry Bulldozer

    Error on https

    Zenno needs an engine update. It is handling by developers now.
  28. Hungry Bulldozer

    Ability to copy whole blocks of actions including true/false paths between templates.

    There is such a task and there is work in this direction, but this is not simple/easy to implement. Looking forward for this as well.
  29. Hungry Bulldozer

    is it possible to make the match number as variables???

    it can be used as match number. I guess something else is wrong. Please recheck
  30. Hungry Bulldozer

    Изготовление (шаблонов/проектов/программ/скриптов) , Поддержка , Помощь , Обучение

    Просьба к ТС решить вопросы с текущими заказчиками в кратчайшие сроки, иначе тема может быть закрыта.
  31. Hungry Bulldozer

    Regex issue ~~

    (?<=<tr.*?>)[\w\W]*?(?=</tr>)
  32. Hungry Bulldozer

    Error on https

    Yes, confirmed. Task was set
  33. Hungry Bulldozer

    Action recording is very slow

    What CPU and how much RAM you got? I see not big difference in terms of speed.
  34. Hungry Bulldozer

    Create a variable for mouse emulation

    Could you provide some more details? Is it gonna be click, mouse move or something else? Via c# or in standard actions?
  35. Hungry Bulldozer

    Speed up browser

    It could help...
  36. Hungry Bulldozer

    Disable this win

    Option to disable it would be great, or if it is just customizable from main settings, but not every restart
  37. Hungry Bulldozer

    How to Use C# Set Value for Tab Page

    Wondering if that's "1", not "0" sometime because of hidden element on the page or soemthing like this?
  38. Hungry Bulldozer

    New to Zenno, Need Help with Regex

    C# is for more and more advanced things only. TO accomplish these tasks you should have no special skills
  39. Hungry Bulldozer

    New to Zenno, Need Help with Regex

    1. Take class of b tag, in your example it is green-text the-tooltip top center width-300-center black, put it to {-Variable.class-} 2. Word processing regexp: text for parsing: {-Variable.class-} pattern: green results to: {-Variable.result-} 3. Logic IF: '{-Variable.result-}'!='' if yes - it...
  40. Hungry Bulldozer

    Bulk Email Processing

    1000 - max count of emails to download 24*100 - 24 here means count of hours per day (and night) and 100 - count of days. So will download emails per last 100 days VisualStudio 2010 Express - don't think so
  41. Hungry Bulldozer

    HTTP Get - number of threads?

    You set only 1 execution attempt for this template, so that's the reason it was working in 1 thread only.
  42. Hungry Bulldozer

    Bulk Email Processing

    What errors do you get?
  43. Hungry Bulldozer

    Замена эмуляции клавиатуры?

    Печатает долго из-за JavaScript обработчиков на сайте, либо просто огромный текст. Но при выставлении ползунка на скорость значение должно установиться мнгновенно
  44. Hungry Bulldozer

    Функция для вызова Сообщения в Code Creator

    http://msdn.microsoft.com/ru-ru/library/519bytz3%28v=vs.100%29.aspx
  45. Hungry Bulldozer

    Proxy Autosearch Fatal Error !

    One issue with proxy auto-search was fixed. Will inform the developer about your case.
  46. Hungry Bulldozer

    Работа через proxy в ProjectMaker

    В верхнем меню. Профиль - браузер. Там есть настройка для прокси
  47. Hungry Bulldozer

    Bulk email variables

    int port = Convert.ToInt32(project.Variables["Email_port"].Value); bool ssl = Convert.ToBoolean(project.Variables["Email_ssl"].Value); var protocol = (project.Variables["Email_type"].Value.ToLower() == "imap")? ZennoLab.InterfacesLibrary.Enums.Email.EmailProtocol.IMAP...
  48. Hungry Bulldozer

    Multithread problems

    Before not found elements. Isn't that evident that 1 thread load network much less than 10? Any site loads much faster in 1 thread and longer in 10 threads. So some elements could be still not loaded while loading status is green (AJAX or loading longer then timeout).
  49. Hungry Bulldozer

    Multithread problems

    Don't additional pauses help?
  50. Hungry Bulldozer

    FTP Connection

    Действие FTP соединения инициализируется еще раньше. А там пустые значения. (так как значения переменным на то время не установлены). Всех раньше устанавливаются значения во входных настройках