need help..... How to link the current website that i am browsing to the textbox ?
-
Hi all, I need help I have a IE toolbar menu button: Generate My flow is After i click the Generate button, the link on my current website will appear in a: Form1 > textBoxWebPageURL Form the Form1.Designer.cs this.textBoxWebPageURL.Location = new System.Drawing.Point(238, 13); this.textBoxWebPageURL.Name = "textBoxWebPageURL"; this.textBoxWebPageURL.Size = new System.Drawing.Size(328, 20); this.textBoxWebPageURL.TabIndex = 5; this.textBoxWebPageURL.Text = "http://www.codeproject.com"; <-- Whereby i have to hardcode it How do i make it auto capture the current website that i am browsing and the textbox will display the current website ? Thank You
-
Hi all, I need help I have a IE toolbar menu button: Generate My flow is After i click the Generate button, the link on my current website will appear in a: Form1 > textBoxWebPageURL Form the Form1.Designer.cs this.textBoxWebPageURL.Location = new System.Drawing.Point(238, 13); this.textBoxWebPageURL.Name = "textBoxWebPageURL"; this.textBoxWebPageURL.Size = new System.Drawing.Size(328, 20); this.textBoxWebPageURL.TabIndex = 5; this.textBoxWebPageURL.Text = "http://www.codeproject.com"; <-- Whereby i have to hardcode it How do i make it auto capture the current website that i am browsing and the textbox will display the current website ? Thank You
Notsure what you mean by 'the current website I am browsing' - does your form have a WebBrowser control on it? Or are you talking about an independent browser? If the former, does not the Url property hold the Url of the current page?
___________________________________________ .\\axxx (That's an 'M')
-
Notsure what you mean by 'the current website I am browsing' - does your form have a WebBrowser control on it? Or are you talking about an independent browser? If the former, does not the Url property hold the Url of the current page?
___________________________________________ .\\axxx (That's an 'M')
The flow is like this i click on a button <<Generate>> , the last website that i am browsing will appear in my textbox << for example i am visiting http://www.codeproject.com >> I want it to be appear in the textbox after i click << Generate >> So how can i do it? Thank you
-
The flow is like this i click on a button <<Generate>> , the last website that i am browsing will appear in my textbox << for example i am visiting http://www.codeproject.com >> I want it to be appear in the textbox after i click << Generate >> So how can i do it? Thank you
You didn't answer his question. I assumed you meant that your code is running inside IE, and you want te currently visible page. Either way, you need to answer if you want help.
Christian Graus Driven to the arms of OSX by Vista.
-
You didn't answer his question. I assumed you meant that your code is running inside IE, and you want te currently visible page. Either way, you need to answer if you want help.
Christian Graus Driven to the arms of OSX by Vista.
yes is like read current active IE window's html content and it will appear into a textbox Thank You
-
yes is like read current active IE window's html content and it will appear into a textbox Thank You
-
Thank You Cause i am doing about encrypt of html - pdf So i need to know how to capture the current website to a textbox :) thank You