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

  1. Maddis

    How to restore hidden instance using windows API

    Hi there. I am trying to restore a window of an instance via API that has been closed (after clicking X on Toolbar) rather than having to double click the instance thumbnail each time under the Instances tab in Zenno Poster. My code works fine (External exe separate to Zenno) however chrome...
  2. Maddis

    Cookie Format

    Does anyone know the entry names of the zpcookie entries? I managed to work out some of the entries, but unsure of the rest of them. Domain ? Path ? Expires Value ? ? ? Priority ? Port ? |...
  3. Maddis

    Action not executed

    Thanks for the reply. I can't find the option for Canvas / WebGL. I am using CEF (Chrome) as my browser. CAn this be done using a snippet? The Ignore FRAME option I will try now but I will need to change this using C #. Do you have a snippet for changing this by any chance? Thanks again
  4. Maddis

    Action not executed

    I'm having a major problem with 1 action in my project. Whenever I goto a URL after creating a new tab, after the page loads, I get a 'Action not executed' error. I'm using the latest Zenno Poster 7.7.4.0. Can anyone help?
  5. Maddis

    How to capture Key Down Event of text box

    Tried this but I get errors. Can anyone help? textBox.KeyDown(object sender, System.Windows.Forms.KeyEventArgs e) { if (e.KeyCode == System.Windows.Forms.Keys.Enter) { navigateToURL(); } };
  6. Maddis

    Clearing download list/last downloaded file

    Is there a way to clear/set the Instance.LastDownloadedFile to null?
  7. Maddis

    Bug or just bad code?

    I have also tried this: Tab tab = instance.ActiveTab; string criteria = "My Element"; int retCount = 0; Top:; HtmlElementCollection results = tab.FindElementsByAttribute("span","innertext", @criteria,"text"); if (results == null) { retCount = 0; } else { retCount = results.Count...
  8. Maddis

    Bug or just bad code?

    Thank you for your reply. I have tried to use the same logic to check if an element exists, but I get "Faulty Operation xxx of the action group id:" Tab tab = instance.ActiveTab; string criteria = "My Element"; int rCount = 0; HtmlElementCollection results = null; Top:; results =...
  9. Maddis

    Bug or just bad code?

    I keep getting an error I am checking if an element exists based on it's attribute value. If count is 0, I get thrown this error: Here is my code: HtmlElementCollection results = parent.FindChildrenByAttribute("span","innerhtml","chickens","text"); if (results.Count == 0)...
  10. Maddis

    Clear Table

    Thanks again. All I need to do now is save the table once I have data written to it. Is there a method to get the table contents to string value? I have tried this but I get an error. string CSVFile = @"C:\Test.csv" string stream = project.Tables["leadTable"].ToString()...
  11. Maddis

    Clear Table

    Yes that did the trick. Thank You :D
  12. Maddis

    Clear Table

    Hi, I am trying to clear the Table in ZennoPoster rather than use the ZennoPoster action. I try: project.Tables['leadTable'].Clear(); But this does not work. Can someone help? Thanks
  13. Maddis

    Running the WebBrowserSettings Object reference not set to an instance of an object.

    Hi, hoping someoine can help who has experience in running ZennoPoster/ZennoBox in Virtual Box. I'm getting this error when trying to run any of my projects in Virtual Box. I have tried different browsers (Chromium Beta, Chrome, FireFox) but the error still happens when starting the browser...
  14. Maddis

    Determine wether project is running in ZennoPoster or ProjectMaker

    Sorry, I should have explained it in more detail. I needed to have a different set of variables while testing in Project Maker so needed to check programmatically. // Check Running Environment string Environ = project. Context.ToString(); if (Environ.Contains("Manipulator")) { Running In...
  15. Maddis

    Determine wether project is running in ZennoPoster or ProjectMaker

    Is there a way to determine this?