Get Form1.tabcontrol1.navigate To Work?

Jan 20, 2011

if there is a way i can get form1.tabcontrol1.navigate(url...) to work some how. i tried dong

form1.CType(TabControl1.SelectedTab.Controls.Item(0), WebBrowser).Navigate("")

but that wouldnt work becuz it says ctype in not a member,

View 4 Replies


ADVERTISEMENT

Forms :: Navigate From Form1 To Form2. And Then Close Form1?

Feb 16, 2009

I have got 2 forms ----- form1 and form2

i wanted to navigate from form1 to form2. and then close form1

i did the following code.

-sub form1 _ page load
dim form as new form2
form.show()
me.close
-end sub

i also tried -- form1.close() and form1.dispose() but all in vain

Problem is that my form1 is not getting closed

View 7 Replies

CType(TabControl1.SelectedTab.Controls.Item(0), WebBrowser).Navigate(My.Settings.homepage.ToString)

Nov 18, 2009

This gives me an error.CType(TabControl1.SelectedTab.Controls.Item(0), WebBrowser).Navigate(My.Settings.homepage.ToString)

View 4 Replies

If Add A Second Navigate To The Same WebBrowser Control,it Does Not Work?

May 13, 2009

I'm using a webbrowser control to pull some information from a website. It works fine.I load the web page when the user clicks a button and then I pull the information from the site when the page completely loads. I have this bit of code in the DocumentComplete event.I am doing this for two different websites. So, my code as it is, looks something likes this:

vb.net

Private Sub btnStart_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnStart.Click
WebBrowser1.Navigate("http://www.website.com")
End If[code].....

If I add a second Navigate to the same WebBrowser control, and then add another Document. GetElementById line, using different variables, it doesn't work.Its obvious that it loads both sites and then it finishes. So, it never has time to finish the first load and then pull the info into the text box.Is there a way to do this? To load the first site, pull the info, load the second site, then pull the info from there?

View 7 Replies

Lose Form1 Without Closing Entire Application But It Doesnt Work

Apr 30, 2010

I have 2 forms. I want to close Form1 without closing the entire application but it doesnt work. It closes the whole application even though i say Form2.show()[code]When it reaches the End Sub then it closes the application.

View 6 Replies

Webbrowser1 Navigate To A Parent Url And Webrowser2 Navigate To Child Url?

May 24, 2012

I have a form with two web browsers. I have webbrowser1 navigate to a parent url and webrowser2 navigate to child url.

The page in webbrowser2 loads correctly but when I make a change to an element it doesn't also change the value in webbrowser1 as it should.

Should I be looking at cookies or something else?

View 5 Replies

WebBrowser Navigate, Wait Few Secs And Navigate Again?

Aug 24, 2008

I want to make something that can on button click navigate to a page, wait the time I specified and navigate to another page..
[CODE...]

This does not do what I thought it would do..I think that the problem is that when it sees System.Threading.Thread.Sleep(5000) everything stops for 5 secs .How can I make it go to google.com and then after 5 seconds, yahoo?

View 7 Replies

VB2008: Form1.BackgroundWorker WONT Stop Form1.Timer From Form3 Click

Sep 9, 2011

Using VB 2008:Situation: A Form1.BackgroundWorker calls a Form1.subroutine. That sub starts a Form1.Timer with Me.tmrOK_BlinkForm.Enabled = True...fires Timer code in event: Public Shared Sub tmrOK_BlinkForm_Tick(ByVal sender As Object, ByVal e As System.EventArgs) Handles tmrOK_BlinkForm.Tick

Form3.Visible = True
Form3.Label1.Text = gNowButtonDispText
Form3.BackColor = Color.White
Form3.Refresh()

[Code]...

There must be a way to do this, I just need the correct BackgroundWorker Syntax send Stop commad to Form1.Timer from Form3.Click_event...all inside a Form1.BackgroundWorker thread started in Form1.

View 4 Replies

Forms :: Form Variable Value Blank / Null When Move From Form1 To Form2 And Back To Form1

Oct 27, 2009

In my window application, Form1 variable eg. Public str as string. value blank/null when move to Form2 and Back to Form1. How to maintain Form1 varable's value when back to Form1 In vb.net if any one know, reply me soon

View 2 Replies

Create A Tab In TabControl1 Using Ctrl+t?

May 28, 2009

I want every time I create a tab, there to be a RichTextBox with dimensions 500 height 400 weight

View 4 Replies

Hide TabPage2 In TabControl1?

Dec 7, 2011

Is that possible to Hide TabPage2 in TabControl1?

View 2 Replies

When Background Worker Opens Form1 / Form1 Is Not Responding

Jun 12, 2010

I have an aboutbox1 and form1..I also have a button. When I click the button it runs the backgroundworker. My background worker then opens form1.My backgroundworker doesnt just open it, it does alot of other stuff so don't ask why im doing it like that.My problem:When the background worker opens form1, form1 is not responding.

View 3 Replies

VS 2008 TabControl1 Same Object Structure On Tabs

Sep 21, 2010

We are busy with a TabControl1 with 5 tabs. On these 5 tabs will be made the exact the same object structure with the same script.What is the best way to organize the TabControl1.

View 2 Replies

VS 2008 TabControl1, Same Object Structure On The Tabs?

May 21, 2009

We are busy with a TabControl1 with 5 tabs. On these 5 tabs will be made the exact the same object structure with the same script.What is the best way to organize the TabControl

View 2 Replies

Difference Between Form1.Close & Form1.Dispose?

Oct 21, 2010

Which different abount Form1.Close and Form1.Dispose?

View 1 Replies

Forms :: Tabcontrol1.tabpages.remove Not Working In A Particular Event)?

Jun 15, 2010

I have an event called "worksheet_selectionchanged" which occurs when a range/cell is selected in an excle file.When the event is triggered, all the tabpages in a tabcontrol should be removed.The code is given below:

Private Sub myWorksheet_SelectionChange(ByVal Target As Excel.Range) Handles myWorksheet.SelectionChange
for each tabpagesToRemove as TabPage in tabcontrol1.tabpages
tabcontrol1.tabpages.remove(tabpagesToRemove)

[code]....

but when ever i select a cell in the excel file, the tabpages seems to be "not removed".

View 4 Replies

Mdi Tabcontrol - Play The Piano Swf Inside The TabControl1 (WebBrowserA)

May 23, 2012

[Code].......

I have problem to play the piano swf inside the TabControl1 (WebBrowserA), but i can play piano swf within the main form (WebBrowserB). Anyone know why, and the method to solve it to play at tabcontrol1

View 3 Replies

Exchagning Parameters - Able To Start With Form1, Move To LoginForm, Then Back To Form1 Taking 2 Variables And The "values"

Apr 8, 2010

I need to be able to start with Form1, move to LoginForm, then back to Form1 taking 2 variables and the "values" they have in the LoginForm back to Form1 and using the variables. I start with the main form (Form1) and have the user enter some information. Once they click OK I have the LoginForm open. After they enter their credentials I will check to make sure they are legal users, then go back to Form1 (here is where I need to take the Username and Password with me) to log onto a server using the same credentails from the login form.

View 1 Replies

Difference Between Form1.show Vs Dim A As New Form1

Jan 9, 2010

I have these code in my project one from my lecture one that i did myself [code]what is the difference between "dim" something as new form than using the form name straightaway?

View 2 Replies

Visual Basic 2008 Web Browser Navigate Via Textbox With Multiple Lines - Web Browser Control - Vb 2008 Webbrowser Navigate

Sep 3, 2009

I would like for my program to navigate via textbox1.text with multiple lines and multiple url links inside of it. I know how to make the webbrowser1.navigate via textbox1.text with multiple lines, however I want my webbrowser to navigate to each url every 1-1.5 seconds once button1 is clicked. Yes, my webbrowser1 will navigate to the specified urls via the textbox1.text (multilines) with a button click, but I need the webbrowser1 to navigate in a order sequence from top to bottom of Textbox1.text (multiplelines) every 1 second. Here is the current code that I have to navigate via multilined textbox1.text control in order sequence:

[Code]...

View 4 Replies

Forms :: Exception On Calling Form1 From LoginForm And LoginForm From Form1

Mar 11, 2010

I have login form as start up form and i call Form1 after successful validation and in Form1, i have close button on click of Close i would like to reset username and password fields on loginform to null. If i add code in form1 below i get exception Dim fmLogin As New LogInForm

An unhandled exception of type 'System.StackOverflowException' occurred in System.Windows.Forms.dll

Make sure you do not have an infinite loop or infinite recursion

I get above on LoginForm below statement Dim fmMain As New Form1

View 1 Replies

LINQ Group By Multiple Values Does Not Work Well But Work Well In C#

May 29, 2012

I found that when group by multiple values does not work well with VB.NET, but it works well with C# ,here are my code, is there something wrong with my VB.NET Code? Here is my VB.NET code:

[Code]...

View 1 Replies

PerformClick() Doesn't Work - How To Make It Work

Feb 2, 2011

I have an application that requires data be entered, and after entering, a button is clicked to process that data. Clicking the button works just as it should--the data is processed properly. In constructing a test module, I provide a set of data values, followed by:

btnWhatever.PerformClick()

Nothing happens. I have used this syntax for years, and it has always worked flawlessly. I have triple checked everything else and isolated the problem to the failure of the PerformClick(). The PerformClick() is in a test subroutine that does nothing but fill textboxes and labels with default data, then calls the PerformClick() on the button to begin processing. Again, the button works fine, the data is entered as it should be, but the PerformClick() does not fire the click event.

View 21 Replies

VS 2008 Could Not Get Form To Work On Work Computer

Aug 21, 2009

I have a form that works on my local Machine I created into. I have Office 2007 on this machine. I created the Form with the Excel 12 Reference. I move the Entire conetence of the Project folder to my work computer. Which has Office 2003. Do I need to recreate the form with the Excel 11 reference. I could not get the form to work on work computer. IT has a com error. I am acessing the EXE for the debug folder w/in the Bin Folder.

View 7 Replies

Navigate Through XML In VB?

Apr 23, 2011

I'm having a few problems working with XML in Visual Basic.Net. My code's really long so I'm going to use a simplified version of it, basically my program's like this[code]...

So what I want to do is get the number of <tag> tags in the <section> tag and attribute that value to the NumberTags variable. Oh by the way <tag> tags may have other tags inside them but I only need the number of <tag> tags. I was using the MyIterator.Count command but then I remembered that that will only get the number of <category> tags in the XML File.

View 6 Replies

Get The Webbrowser To Navigate?

Oct 7, 2010

I cannot for some odd reason get the webbrowser to navigate I have enabled web content I use the form button and place it the coding I put

Code:
Private Sub WebBrowser1_StatusTextChange(ByVal Text As String)
Me.WebBrowser1.Navigate2 "www.google.com"
End Sub
it just has a white screen

View 1 Replies

How To Navigate Records

Jan 29, 2011

i wanna to nevigate record at the click event of a command button. I have done my connectivity properly.so give me an idea with a proper example by which i can understand the nevigation code in vb.net

[Code]...

View 1 Replies

Navigate From One Record To The Next?

Jul 18, 2009

I'm new to VB and have bought a book (Database Access with Visual Basic)that I'm trying to follow but ran into problem right away.Have created a table (tblCustomer) and populated it with a few lines of data then I have a form with two textboxes connected to the table. So far no problem I can see the first row of the table.Next step was to create two buttons to be able to navigate in the table, one forward and one backward but nothing happen when I click on one of these buttons.

Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
Me.BindingContext(NoveltyDataSet, "tblCustomer").Position += 1

[code].....

View 4 Replies

Navigate Through DataTable?

May 30, 2009

I have a section of code that builds a table as the user enters information. I'm having trouble figuring out how to navigate through this table. There is a NEXT button and a BACK button. When they hit NEXT, either the next row loads, or the textboxes are emptied out. en they hit BACK, if there is text in the textboxes, save it, then load the row above current one. The code I have now will work until you go back too many times. You can go back, then forward, but it has trouble seeing the end of the table. And for some reason, I get phantom rows in between, but not every time. The rest of the code, where this table gets saved to the server, all works. Just navigating the table is giving me trouble. Here is what I have so far:

Private Sub nextNewTr()
Try
'check that the itemNo and item boxes have text

[code].....

View 2 Replies

Navigate To Another Page?

Aug 22, 2011

I'm having an issue navigating from one page to another. Actually, I dont know how to go about this.I can only program in just one page but i will really like to see a second page at the click of a button.

View 3 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved