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

  1. S

    Code Creator and Proxy

    I try this code, the error is same, is this bug in CodeCreator? In ZennoPoster everything is ok in bouth case.
  2. S

    Code Creator and Proxy

    Hello, I have this code writen in CodeProject instance.SetAuthorizationPolicy("ok", username, pass); instance.SetProxy(proxy); When I run application in CodeProject I get this message: Access to requested resource disallowed by administrator or you need valid username/password to use...
  3. S

    Code Creator and Images loading

    Hello, I have this code: instance.LoadPictures = false; HtmlElement he = instance.GetTabByAddress("page").GetDocumentByAddress("0").FindElementByTag("form", 0).FindChildById("image1"); //THIS IS IMAGE SAMPLE string recognition = ZennoPoster.CaptchaRecognition("DeCaptcher.dll"...
  4. S

    Code Creator and set value of File input control

    I try now my code in ZennoPoster, and NOT WORK, in ZennoPoster windows dialog is not opening and nothing happend. Please help
  5. S

    Code Creator and set value of File input control

    I change the code but still NOT WORK :( Here is the code: Tab tab = instance.ActiveTab; if ((tab.IsVoid) || (tab.IsNull)) return -1; if (tab.IsBusy) tab.WaitDownloading(); tab.Navigate("http://file.zaljubise.net/", ""); if (tab.IsBusy) tab.WaitDownloading(); // Event click...
  6. S

    Code Creator and set value of File input control

    I try this but NOT WORK, THIS CODE JUST OPEN DIALOG NOT SET FILE PATH :( :( :( I created site just for testing this: http://file.zaljubise.net/ Here is a full code: instance.ClearCookie(); Tab tab = instance.ActiveTab; if ((tab.IsVoid) || (tab.IsNull)) return -1; if (tab.IsBusy)...
  7. S

    Code Creator and set value of File input control

    Hello, I need to set value of file input control on page, I try SetValue, SetAttribute... but still don't know :( Here is a code sample: // Event click [tag=input:file] HtmlElement he = instance.GetTabByAddress("page").GetDocumentByAddress("0").FindElementByName("uploaded_file"); if...