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

  1. bigcajones

    Crazy Error in Code Creator

    I got it fixed by adding a numeral to the end of each document in documents so it looks like foreach (Document document1 in document) { he = document1.FindElementById("publicoton_home_submit"); if (!he.IsVoid && !he.IsNull) break etc.... but why is...
  2. bigcajones

    Check whether item exists in list

    Merge the list and then use your name as a regex on the variable created by the merge. You will have to have a logic operation after to check for an empty string or not.
  3. bigcajones

    Crazy Error in Code Creator

    I just recorded a template in CC and I'm getting an error when debugging. Here's the code. HtmlElement he = null; Document[] document = instance.ActiveTab.AllDocuments.Documents; foreach (Document document in document) { he =...
  4. bigcajones

    I got this error when I try to download my email. is any1 can explain it to me ?thx

    That means that either your regex for finding the message is not correct, the regex for finding the link in the email isn't right or you have two emails that match the regex for finding the message.
  5. bigcajones

    zennoposter don't work with hotmail?

    In your IMAP settings you have the port set as 933. It needs to be 993 http://zennolab.com/discussion/attachments/2014-04-22_113921-png.5379/
  6. bigcajones

    Profile questions

    1. {-Profile.Password-}{-Variable.random-} where you make a random length of string or number in a variables action. 2. {-Profile.Name-}{-Profile.Surname-}@gmail.com or you can use {-Profile.Login-}@gmail.com or {-Profile.NickName-}@gmail. The possiblilites are endless
  7. bigcajones

    own shedule template

    Here's example...
  8. bigcajones

    Get Request, Post Request

    Try this. Wordpress.com account creator. You can use Fiddler or Google Chrome or Firebug for FF to see the requests.
  9. bigcajones

    getRow on tables stopped working

    Works for me. Are you sure it isn't some other line in the code? How are you returning the IEnumberable<string>? Did you try rebuilding the action in case some of the code was polluted when the template was saved?
  10. bigcajones

    Root domain error

    Uri myUri = new Uri("http://www.eataly.com/nyc-restaurants/"); string host = myUri.Host; Should be http://
  11. bigcajones

    Подключить библиотеку Sqlite

    Download .netConnector and install. http://dev.mysql.com/downloads/connector/net/
  12. bigcajones

    ZennoPoster 5 New build 5.1.2.0 (27 Feb 2014)

    Give it a few days Lukas. It will be here and new browser engine update will be worth it.
  13. bigcajones

    Popup to enter login and pass "Proxy bug"

    This happens usually when you set the proxy manually through the browser settings icon. When you paste the proxy in and press ok as soon as you navigate somewhere, you get the popup.
  14. bigcajones

    Вопрос по BULK выгрузке почты

    project.Variables["Variable"].Value
  15. bigcajones

    Logic ==> Alert c#

    You can do System.Windows.Forms.MessageBox.Show("HI, I'M From Antartica" );
  16. bigcajones

    Get file size of file.

    Here's a sample
  17. bigcajones

    код для чтения xml

    Знаете ли вы добавить в ссылке GAC к System.Xml? http://zennolab.com/discussion/posts/61078/
  18. bigcajones

    Popup to enter login and pass "Proxy bug"

    And bug is still there.
  19. bigcajones

    Подскажите как обработать XML

    C # code ... Using System.Xml in GAC var text = project.Variables ["xml"]. Value; System.Xml.XmlDocument doc = new System.Xml.XmlDocument (); doc.LoadXml (text); StringBuilder sb = new StringBuilder (); foreach (System.Xml.XmlNode node in doc.DocumentElement.ChildNodes) {...
  20. bigcajones

    C# Google PR checker

    Awesome dude! Thanks for taking the time to do this for us.
  21. bigcajones

    Unable to open local HTML file with Go to Page command

    Take the text from the file and save to variable. Then navigate to about:blank page. Set the innerhtml to your varaible and the page will be there.
  22. bigcajones

    API for tasks

    Here is c# code to control a template called Date and sets the tries and thread count.
  23. bigcajones

    how to fill in the value quickly???

    Click the More tab on the action and change the emulation to 'Speed'
  24. bigcajones

    Релиз ZennoPoster 5 новый билд 5.1.2.0 (27.02.2014)

    Yes, sorry. int x = Convert.ToInt32 (project.Variables ["Variable.Variable1"]. Value); [/ CODE]
  25. bigcajones

    Релиз ZennoPoster 5 новый билд 5.1.2.0 (27.02.2014)

    Emulation.Emulator.MouseMove(tab.Handle,x,y);
  26. bigcajones

    Релиз ZennoPoster 5 новый билд 5.1.2.0 (27.02.2014)

    int x =Convert.ToInt32(project.Variables["Variable.Variable1"].Value;
  27. bigcajones

    Good link to current tutorial (english) for proxychecker/scraper

    Your skype buddy.
  28. bigcajones

    Print template on paper

    Use Jing or print screen and Paint. Not too difficult.
  29. bigcajones

    Код на JavaScript

    {-JS.Alert-|-Fill In Input-} обработка текстов
  30. bigcajones

    Выбор формата даты и времени в программе и в проекте

    DateTime now = DateTime.Now; string format = "d MMMM yyyy"; return now.ToString(format);
  31. bigcajones

    HELP~~~something wrong about c# to download email

    Have you tried downloading the SDK for your version of Windows?
  32. bigcajones

    HELP~~~something wrong about c# to download email

    What email are you using? Is it hotmail? Outlook?
  33. bigcajones

    Как проверить список на наличие в нем элемента? Не перебором?

    Слияние элементов списка то регулярное выражение
  34. bigcajones

    Парсинг прайса.

    Should be System.Windows.Forms.MessageBox
  35. bigcajones

    Need a zeenoposter freelancer urgently. Where can I find them?

    What site are you trying to post to?
  36. bigcajones

    How to Parse data from table..

    I tested with my regex that I gave you orginally from the years 1959-2014. What I found that it works great except in the year 2009 the Black Eye Peas had 2 songs in the same weeks so that is where it went haywire. Also it looks like 2010 it took some elements that you should try to get rid of...
  37. bigcajones

    How to Parse data from table..

    That's what I'm here for. :bk:
  38. bigcajones

    How to Parse data from table..

    https://www.dropbox.com/s/jfmswta9bgl0wqt/wikiBillboard.xmlz
  39. bigcajones

    How to Parse data from table..

    regex the table off the page first something like (?<=<table\ class="wikitable\ plainrowheaders">)[\w\W]*?(?=</table>) Then you can get the titles of the songs and artists out of that using regular regex.
  40. bigcajones

    How to ensure that after "Click" , the next page loads before going to next step

    It is in the Data action
  41. bigcajones

    How to load 10 templates ones and load this same info

    Do what the big boys do. Use {-Project.Directory-} and copy the template to different folders with the appropriate files for each job. You can run the same template 5 times out of different folders and have each one pull its own data to use.
  42. bigcajones

    Zenno getting incomplete http headers

    Make a GET request to the url to get the cookie, regex it out and add it to your POST request
  43. bigcajones

    how to use this proxy IP for my script

    If you have a proxy list in a file then use List processing bound to the file and take a line with or without delete and put to a variable. Use Browser settings to set the proxy using the variable as the input.
  44. bigcajones

    загрузка картинки вконтакте

    PM crashes on me.
  45. bigcajones

    Паомогите с регуляркой!

    : Two: глупые теги КОД
  46. bigcajones

    Вопрос по действию если

    Вы должны получить значение элемента и положил его в переменную, а затем сделать логику ЕСЛИ на переменной Царапины. Если это пустая строка, заполнить элемент с электронной почтой.
  47. bigcajones

    Вопрос по действию если

    Я позволю один из российских участников объяснить, что. Google Translate не есть хорошо с английского на русский
  48. bigcajones

    Вопрос по действию если

    Something like this? Сергей прав. Там нет переменная с именем TMP в шаблоне.