How to link the current website to your textbox ?
C#
1
Posts
1
Posters
0
Views
1
Watching
-
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