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

  1. bigcajones

    How Can I Repeatedly Get the First 50 Lines from a TXT File?

    I think DJ is talking about this simple macro. List processing...select sublist...0-49 as the range.
  2. bigcajones

    Question about how to do this with project maker features

    Or instead of having to pay someone to help you, you could just get the answer here. Merge the list items from PostedAlready.txt with a pipe(|) as 'Your own separator' and then you basically have a regex expression and use the resulting variable to regex the text on the webpage. Then you...
  3. bigcajones

    Zenno is grabbing the wrong image for the captcha. How to solve?

    Well since that is the only image element on the page that is going to be captcha, then usually in your template that is all that is needed to find it. You have to watch what zenno records. Sometimes it doesn't pick the precise element that you are looking for and just throws an img tag in...
  4. bigcajones

    Zenno is grabbing the wrong image for the captcha. How to solve?

    Yes, change the attribute value to captcha. Then click beside the group 1 and hit Del key on keyboard and that will get rid of the search for the image that it is finding. Right click on the action and set it as optional so that if captcha doesn't show up then zenno will skip over it.
  5. bigcajones

    Zenno is grabbing the wrong image for the captcha. How to solve?

    Delete the group 1 which is just looking for an 'img' tag and change search attribute to captcha in the group 0 and it shouldn't find anything but the captcha image.
  6. bigcajones

    как сравнивать со значением на единицу меньше значения переменной

    Используйте действия JavaScript первой, где вы вычесть 1 из переменной
  7. bigcajones

    [SOLVED] How to solve this captcha

    If you are using that version, turn off intellisearch and record it with the element tree. Once you find the div where the text is then right click on it and set it as 'This is captcha'. Then it should record normally where you can go in and play with the settings.
  8. bigcajones

    Table saving issue

    Beta
  9. bigcajones

    how to do circle with 1000 account?

    Probably the best way is to save the used accounts to a temp file. Have a check in your template for text existance of your main account file which you will need to set up in your table NOT to leave an empty file. If the template doesn't find the main account file, you can move your temp file...
  10. bigcajones

    C# question

    Indy you have no place to store the results. Add them to a list like this....
  11. bigcajones

    [SOLVED] If logic - Check if value is present?

    '{-Variable.YourVariable-}'=='' means BAD
  12. bigcajones

    List / Tabels only ~ 15 values only?

    You are pulling your list in from a file? That is what you need to do if you want to use your 'whole' list. If you are pulling in 10k lines and it is only allowing you to pull ~15 then there is a bug and you need to get with support.
  13. bigcajones

    List / Tabels only ~ 15 values only?

    The 15 values that you see are just a representation of your list or table. The whole thing is there. What you see is just so that you can make sure that table(mainly) is loading in the cells right or that the lines of your list are being separated correctly.
  14. bigcajones

    Thread/Instance becomes very slow sometimes

    Are you running keystroke emulations? If so this is a known thing. You have to set the number of instances per base to 1 in your settings.
  15. bigcajones

    Table settings problem

    I have also seen this bug Anton. It doesn't happen all the time but it does happen. It seems that the table and template runs fine, but if you go to open it up to look at it or change a path, the settings revert back to what Indy is showing there. Also I have noticed that when you opened the...
  16. bigcajones

    How to create a custom user interface in ZP?

    No, the interfaces that you see were coded by the guys that built the templates. They are separate from zenno. You can however build your own zenno interface if you want in C# or you could create a php page with all the bells and whistles on it and have you or your clients fill out the fields on...
  17. bigcajones

    how to use the taskmanager

    You are right. I just tried myself in new build and no projects are in the task and Setup button does nothing.
  18. bigcajones

    How to enter data to a specific line in a file

    DJ told you above. You would have to have some kind of identifier in your different templates so that it would know to write to a certain line. You could probably get convoluted with it and throw a bunch of C# in there to get the task ID's, but if you removed the templates from the poster the...
  19. bigcajones

    table process issue

    I know it works for text files because I did a test run on this bug with 20 threads and checked result file when finished and all the text was taken from one table and saved to another.
  20. bigcajones

    how to use the taskmanager

    You have to add the templates in the project tab first to be included in a task.
  21. bigcajones

    How to get the number of total regex results?

    Use regex and use All as match#. You will have to save the results to a list. Then do a list processing, count of rows on that list to get the number you are looking for.
  22. bigcajones

    Check if a line is already in a txt file ?

  23. bigcajones

    Issues saving to .csv format.

    Use a TAB as separator and make the file either .xls or .xlsx depending on your Excel version.
  24. bigcajones

    Check if a line is already in a txt file ?

    Take your text from the file and put it into a variable, let's say variable1. Take your {-Variable.XXX-} and do a regex on variable1 in a word processing action. If a result is found then you won't add the user.
  25. bigcajones

    А куда сохраняются загрузки и как их достать?

    Используйте HTTP GET. Положите путь, по которому вы хотите скачать в поле Переменная на дне
  26. bigcajones

    No alive proxies found

    Okay peterparker, let me help you out with this a little and see if we can't get you running. The way the proxychecker works is by going to a website(source) and scraping the proxies off of it and then it tests them. Do you have a website? If you do, create a page on it and throw your proxies in...
  27. bigcajones

    How to Calculate Difference Between 2 Dates ?

    string someDate = project.Variables["beginningDate"].Value; DateTime startDate = DateTime.Parse(someDate); DateTime now = DateTime.Now; TimeSpan elapsed = now.Subtract(startDate); double daysAgo = elapsed.TotalDays; var totelapsed = daysAgo.ToString("0"); return totelapsed;
  28. bigcajones

    No alive proxies found

    That is even weirder. Yes I used the list from the bhw post you had above. Let me try again and see what happens. Maybe I had some proxies left in the text file by accident. Edit: I did have some private proxies still in the text file so that is why the large number. But out of the 71 I put in...
  29. bigcajones

    No alive proxies found

    That's weird, I put his list in my proxychecker and have 130 alive out of 171 added. But I don't put the proxies right into the checker, I load them into a text file on my website and have zenno scrape that page. I will try loading them in directly and see what happens
  30. bigcajones

    Variable window going background

    "I agree".
  31. bigcajones

    Работа с xml

    Это ваша ZennoPoster электронной почте.
  32. bigcajones

    ZP 5.0.1.0 Saving/loading profiles problem

    Comingsoon.txt
  33. bigcajones

    Работа с xml

    IGlobalVariable gv = project.GlobalVariables["Zenno E-mail", "Название Вашей переменной"]; Для создания таблицы я думаю, что это .... System.Collections.Generic.List<string> city = new System.Collections.Generic.List<string>(); You would need to ask Dark Diver or Shade if values can be set...
  34. bigcajones

    Variable window going background

    Amen
  35. bigcajones

    Работа с xml

    var list = project.Lists["List1"]; //читать список переменной list.Add("line"); //добавить линию к списку var firstLineOfLIst = list[0]; // Первая строка списка var r = new Random(); var randomLineFromList = list[r.Next(0,list.Count)]; //случайная строка списка list.Remove("line"); //удалить...
  36. bigcajones

    Работа с xml

    Пример использования System.XML Используйте GAC Ссылка http://zennolab.com/discussion/showthread.php?10441-GET-Content-Scraper
  37. bigcajones

    Вычислить номер последней кнопки

    Hopefully I understood what the problem was. Sometimes google translate doesn't do either one of our languages justice.
  38. bigcajones

    A few questions about a program

    Or you can have an action come off of the unsuccessful exit (red dot) and use a pause or something to loop back to where you want to go. Optional is best for the majority of things though.
  39. bigcajones

    Вычислить номер последней кнопки

    Может быть, картина поможет вам.
  40. bigcajones

    [GET] Content Scraper

    Thanks HB. Just trying to give back a little.
  41. bigcajones

    File upload-PM crashes while debugging

    Yes but you have to use c# code. Do a search on here. DD shared a template to do it.
  42. bigcajones

    Regex issue with xml file

    Raj, are you sure you are looking at the results right? I know it looks like one big mess there, but in my regex builder with the regex.... (?<=<content:encoded><!\[CDATA\[<h3>)[\w\W]*?(?=]]></content:encoded>) I see 11 matches. 11 different results. Even though you don't see the match #'s in...
  43. bigcajones

    File upload-PM crashes while debugging

    Works for me okay on web2.0 and v5.0.0.0. See....aren't I purty! http://rolgolfmami1977.blog.ca/
  44. bigcajones

    [GET] Content Scraper

    After seeing a WSO on how to scrape content from YouTube vids I decided that I would try to make a template for it instead of purchasing the software. I've also seen a lot of questions about certain things like C# code, GAC references and HTTP Requests on the forum lately. This template has...
  45. bigcajones

    Copying variables to a table by column?

    You will have to use a tab between variables in order for it to work right. There seems to be a problem with tables in excel. Use either .xls or .xlsx files and a tab as separator and your tables will come out good. Try anything else like comma separated and you are on your own.
  46. bigcajones

    Copying variables to a table by column?

    Use Table processing and Add line with your variables separated in there.
  47. bigcajones

    How to check if there is a part of text on website ?

    Highlight the text on the page that you want to check for, right click on it and then choose Create check of text presence while recording and when box comes up your phrase should be in there, then press okay. If you are recording the actions will be generated for you automatically.
  48. bigcajones

    Не работает запуск программы

    Trying to give you guys a break. :D