Jump to content

j.neto233

uniGUI Subscriber
  • Posts

    16
  • Joined

  • Last visited

  • Days Won

    1

j.neto233 last won the day on February 22 2020

j.neto233 had the most liked content!

Profile Information

  • Gender
    Not Telling

Recent Profile Visitors

905 profile views

j.neto233's Achievements

Newbie

Newbie (1/4)

2

Reputation

  1. The routine work as shown in the image: 1. server running IIS, UniGUI application; 2. the client side a scanner plugged into the PC running the application by the browser; 3. the Scan Results PDF back to the server to be stored as a file. need help to develop a routine, any example in unigui? Thank you!
  2. Example with code sources for scanning documents using scanner? Best regards.
  3. Okay, I think even that will not work, thank you
  4. the attachment, this in Delphi XE2, but I think that works on anyone. Example, I log on google account after I capture the value of the "name profile" thank you agai TwebBrowser.rar
  5. I need automatically fill in web forms, fill in the fields, perform the functions of the buttons, logging in automatically on a page. must also read the result of a form. In Delphi i use the TWebBrowser that does the job perfectly. I'm having trouble using the TUniURLFrame. someone help me, or know if it is possible to do this with TUniURLFrame? In Delphi with TWebBrowser works well: sample: PROCEDURE TForm1.Button1Click(Sender: TObject); VAR Doc3: IHTMLDocument3; BEGIN WebBrowser1.Navigate('https://pt-br.facebook.com/'); Doc3 := Webbrowser1.Document AS IHTMLDocument3; Doc3.getElementById('email').setAttribute('value', 'neto@hotmail.com', 0); Doc3.getElementById('pass').setAttribute('value', 'pAsswOrd', 0); WebBrowser1.OleObject.Document.all.Item('loginbutton', 0).click; WebBrowser1.Silent; END; Anyone have any idea how to do this UniGUI?
  6. With the help of ZigZig was possible endenter the mechanism: using the image below as an example. the correct url to access the "Server Monitor" is: "http://192.168.2.110:8077/webadm/adm.dll/server" that is, "IP", "Door" / "app name" / "dll name" / server
  7. Use this URL for the local network. http://192.168.2.109:8076/webadm/
  8. Yes I have IIS configured, as shown in previous images have some applications in the same IIS, including "web services" that are not uniGUI, so the need to define a port for each service. ISAPI Module application works perfect, just can not access the Server Monitor.
  9. Sorry do not want to be inconvenient, but as you can see did not work:
  10. Hello, forgive my lack of knowledge, but still can not do using ISAP dll in IIS, Please correct?
  11. ok, zilav grateful. modified the example to log in "facebook", could send me an example of how to do this with Indy components?
  12. In Delphi with TWebBrowser works well: sample: PROCEDURE TForm1.Button1Click(Sender: TObject); VAR Doc3: IHTMLDocument3; BEGIN WebBrowser1.Navigate('https://pt-br.facebook.com/'); hold up ... Doc3 := Webbrowser1.Document AS IHTMLDocument3; Doc3.getElementById('email').setAttribute('value', 'neto@hotmail.com', 0); Doc3.getElementById('pass').setAttribute('value', 'pAsswOrd', 0); WebBrowser1.OleObject.Document.all.Item('loginbutton', 0).click; WebBrowser1.Silent; END; Anyone have any idea how to do this UniGUI?
  13. Hello, it is possible to use the monitor option for server applications "ISAPI Module", distributed on IIS 8.5? Not simply add "/server" to end of your url. I realized that building a "Standalone Server" project works, but to build a project only "ISAPI module" does not work. The I be doing wrong? Thank!
  14. Hello. I need automatically fill in web forms, fill in the fields, perform the functions of the buttons, logging in automatically on a page. must also read the result of a form. In Delphi i use the TWebBrowser that does the job perfectly. I'm having trouble using the TUniURLFrame. someone help me, or know if it is possible to do this with TUniURLFrame?
×
×
  • Create New...