Jump to content
Xtreme .Net Talk

leontager

Avatar/Signature
  • Posts

    89
  • Joined

  • Last visited

leontager's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. I would like to be able to navigate the bottom frame to a certain link but it is all located on a different domain. I get UnauthorizedAccessException. I looked into the security settings of internet explorer and I enabled it to get data sources across domains but that didn't help. I am sure there should be a simple way to do this since I only need it to run on my local computer but its frustrating. Anyway I appreciate any help Thank you
  2. Hi, I have a page with two different frames loaded on two different domains. Is there any way to get access to both frames on a local computer? Whenever I try to read the second frame it usually gives me an error. Thank you
  3. Hi i get the following error but only sometimes The underlying connection was closed: An unexpected error occurred on a send. when i connect to some website using the following code System.Net.WebClient client = new System.Net.WebClient(); System.Collections.Specialized.NameValueCollection names; byte[] response; names = new System.Collections.Specialized.NameValueCollection(); client.Headers.Add("User-Agent", "MSIE 6.0"); names.Add("username",user); names.Add("password",pass); response = client.UploadValues(address, "POST", names); I get the error on the last line. Does anyone know how to solve it?
  4. Hi, waht is the proper way to detect if my instance of Internet Explorer was closed outside of the program. I am using SHdocVw and mshtml to open and control the windows. Thanks
  5. awesome thanx ill check it out
  6. Hi, sometimes my internet explorer freezes so when my application tryies to get the HTML from the window it stops at that line. Is there anyway I can check first if that window is responding. I am using mshtml and shdocvw to control the windows. Thank you
  7. Hi, I have a axwebbrowser running and i would liek to save the image that it is displaying or load it into a bitmap. How do I do it?
  8. hi, how can I add an item to the system tray menu of my application? I would like to add a pause button so that when it is clickced it will stop my application until a message box is clicked.
  9. Hi, How can i maximize the Internet explorer screen when I open it using mshtml. There is an option to put it in fullscreen but thats the theatre mode. Also I can change the width and height but then how do I set hte position?
  10. Hi, how can I copy an image which is already loaded into IE without downloading it twice using mshtml? there is a mshtml.HTMLimg but I can get it to save. Please help Thanx
  11. hi, I am having probelms controling internet explorer. I created obIE and declared it as SHDocVw.InternetExplorer. I also have obDC declared as mshtml.HTMLDocument. From time to time my IE freezes and I the program gets stuck. Is there anyway I can tell when it is frozen and close those window or ignore it?
  12. hi, is there any way I coudl send an sms message to my friend through a program from the computer?
  13. on nevermind I didn't download hte .net version lol...
  14. yea ive seen that page but it just looks too much for my purpose. I'm just a newbie :-) and why would this return object reference not set to an instance of an object? Dim answer As Integer Dim ChilkatFTP1 As CHILKATFTPLib.ChilkatFTP myftp.Hostname = "www.chilkatsoft.com" myftp.Username = "username" myftp.Password = "password" Dim success As Long answer = myftp.Connect()
  15. thank you very much. I hope this will work for me :-)
×
×
  • Create New...