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

  1. enrc66

    Использовать CookieContainer в HttpGet/Post

    there's an error: 'CookieContainerProxy:http://schemas.datacontract.org/2004/07/ZennoLab.CodeRunner.ProjectProxy' is not expected. Consider using a DataContractResolver if you are using DataContractSerializer or add any types not known statically to the list of known types - for example, by...
  2. enrc66

    how to support flash in a new create instance

    zp v5.26
  3. enrc66

    how to support flash in a new create instance

    drawback, mybe is the reason of my setting
  4. enrc66

    [Help] Write a command to CMD

    try p.StartInfo.FileName =@"C:\Windows\System32\cmd.exe"; p.StartInfo.Arguments = @"/c rasdial Viettel \disconnect";
  5. enrc66

    How to use Variables in C# code to FindElementbyAttribute?

    here: https://help.zennolab.com/en/v5/zennoposter/5.11.4.0/webframe.html#topic36.html
  6. enrc66

    Simple C# code which checks for running app

    try this: public static bool IsRunning (string name) { return System.Diagnostics.Process.GetProcessesByName(name).Length > 0; } then c# code: return ZennoLab.OwnCode.CommonCode.IsRunning("cmd");
  7. enrc66

    How to fill in contact forms on many different sites

    1.find input element (visible) 2. get the text in font of the input element 3.judge the input info by the text such as "title","contact" 4.set value of the input element the same as other html element (button img textarea)
  8. enrc66

    CodeCreator won't properly show Element Properties

    drag the proper pannel to a visible place to make both tree and properties visible at the same time
  9. enrc66

    an advise about adding method to find element by ZP_ID

    Is it possible to add a method like FindElementByZpId() to locate an Element? I know there's many method to find element,but if having a method to find element by zpid, it would be more convenient , the case: 1.Many website use iframe,in some situations ,need to know the content relative...
  10. enrc66

    The name "instance" does not exist in the current context

    add an argument: public static void myCustomFuction(Instance instance ,int var1,int var2) { .......... }
  11. enrc66

    The name 'FileSystem' does not exist in the current context.

    int count = heCol.Count; return 0; should be return count;
  12. enrc66

    Captcha Recognition Result Missing in CodeCreator

    you can do that in element tree pannel by clicking right mouse button on the element
  13. enrc66

    professional zp change to demo suddenly

    it's ok!
  14. enrc66

    professional zp change to demo suddenly

    my zp is 5.1.2,while running,it jump a window named " get auth credentials" on page of "https://userarea.zennolab.com/en/ForgetPassword.aspx", click "email your new password", receive nothing ,my email is [email protected] please help me ,thanks ! download the license that received from zp...
  15. enrc66

    How to delete a row in the table

    var t1=project.Tables["Table1"]; var t2=project.Tables["Table2"]; int t2_rows=t2.RowCount; int t1_rows=t1.RowCount; string t2_content=""; string t1_content=""...