Forms - Accessing Declared Form From Another
Jul 18, 2009
Basically what I need to do is change a textbox on Form1 (AKA mainwin) from Form2 (AKA loginwin) using data that is inputted into Form2. I've done this before with applications by declaring Form1 in Form2, but this time I just get a NullReferenceException error. Here's the code I'm currently using for Form2. Maybe someone here can tell me why it's not working. [Code] I can't figure out why it's not working. I've used this same method before and it always worked.
View 1 Replies
ADVERTISEMENT
Jun 22, 2010
I am desinging a form with mutiple controls on a tab page control and was moving controls between tab pages by cutting and pasting them. The forms designer obviously got confused at some stage and I now have controls that are declared in the designer.vb but do not appear anywhere on the form.
I can't even rename the controls that are there which have been given generic names to the names I want because they apparently already exist. I realise I could edit the designer.vb and remove the references to these controls but that seems fraught with danger?
View 3 Replies
Aug 9, 2009
Error5Name 'ClientForm' is not declared.
The form clearly exists. If i add a new form to the project it will appear in the context menu that appears when typing IE Form1.show will work so must be some setting i changed? but im clueles to what. The name to indicate the project is BalloonHelp but that also dont work
View 10 Replies
Mar 23, 2009
I declared a browser in my VB.NET project (Dim browse as new WebBrowser). How am I supposed to get to the events (browse_NewWindow) of the declared thing?Oh yeah, my code for my browser is CType(TabControl1.SelectedTab.WebBrowser(1))
View 4 Replies
Sep 4, 2010
I have a thread running on a child form, I want to activate a control on the parent form but cannot. It works fine if It's done from the child forms UI thread:
(FormMain.SetControlPropertyValue(FormMain.RBSQL2005, "Checked", True))
but not from a thread running on the child form:
Public Class FormRestoreDB
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim t = New Thread(AddressOf UpdateListView1)
[code]....
View 2 Replies
Jul 5, 2009
how to access to a folder created inside the project from the code.i want, once the program installd in the machine it access to that folder and then access to the files which i want.i tried this : My.Application.Info.DirectoryPath() & "Docsa.docit works well in the developpment phase, but once the application is installed, it doesn't work
View 3 Replies
Apr 24, 2011
Project1 builds ShellControl.dll.One of the forms in Project 1 contains the event "Public Event CommandEntered As EventCommandEntered".
Project 2 builds the Windows Form application TestApp which use ShellCopntrol.dll built by Project1.Form1 in Project 2 contains the following statements:
Imports ShellControl.UILibrary.ShellControl
[code]......
View 2 Replies
Nov 26, 2011
If I have a form called index.aspx and I want to set the background colour programatically how do I do such a thing? Like if I wanted to set the pages background by calling a method called Changebackground? [code]
View 1 Replies
Feb 5, 2009
Recently i was trying to access the labels of main form (Form1) from a thread that was running on the other form (Form2), and I have noticed, that the label.Text is not changing.Form1 code - after the main Form is loaded I launch the second Formular, and the method on it : [code]There is a sample code attached to show how is it working.Is there any possibility to change the label values on the Main window?Peter.
View 2 Replies
Mar 27, 2009
i have an application for which i have created help files which are html files. my pplication resides in a directory for which the system path comes out as c:Document and settingsvisual studio 2005crmscrmsindebugcrms.exeI have the help files put under the crms directory which has the bin as its sub directory.i.e. c:Document and settingsvisual studio 2005crmscrmshelpmain.htmlIn my application i would like to access this file and launch it in Internet Explorer. I dont want to hard code it as this will be deployed on a terminal server and therefore i would like to use a relative path. I searched on the net and could only find solutions that used Application.StartupPath or few others which point to the exe file.
I tried extracting the path before that and managed to get a substring which held contained c:Document and settingsvisual studio 2005crmscrmsTo this appended the helpmain.html, i tried launching the file as followsSystem.Diagnostics.Process.start("iexplore",s);where s, stores the appended string. This is the error i get, cannot open file at location:Document%and%settingsvisual%studio%2005crmsc rmshelpmain.htmlIts not liking the space in the path, is there anyway to resolve this.
View 4 Replies
May 24, 2010
I need to dynamically access a bindingnavigator, is this possible? I basically want to have code in my Base form which enables or disables it's descendant's menu buttons depending on access rights.
View 2 Replies
Nov 1, 2011
I am trying to access MS/Word document properties without opening the file in Word. Right now I have an app that reads the document properties but it has to open the document in word. This makes it run very slowly and also makes it susceptible to crashing if the document is corrupted. In Windows Explorer, you can right-click on a word document file and select properties. The ensuing dialog box contains, in addition to the usual information, two additional tabs labelled "Summary" and "Custom" that correspond to the same tabs in the dialog box you can open from File/Properties menu in Word. I know windows explorer is not opening the document in word because there is no instance of word.exe in task manager and because it has no difficulty in obtaining this information from the file even when it cannot be opened in Word because the document has become corrupted.If anyone could help me figure out how to read custom and built-in document fields (properties) from the file without opening it in Word,
View 1 Replies
Aug 28, 2008
I don't know the best way to use multiple forms in VB, but I have created a problem and I'm not sure where it came from or how to fix it.
Background: I start the program at Sub Main. This is the main function:
Code:
Module modFunctions
Dim frmD As frmDAQ
Dim frmT As frmTrendView
[Code].....
it works, but I don't want to have to change the entire project.
View 1 Replies
Jul 23, 2011
I have written a code and tried linking up groupboxes from my input form called input.vb and the output form called results.vb.
[Code]...
I have used the above codes to access groupboxes from both forms. However, at run time I get errors saying "InvalidCastException was unhandled" and below that it says "Conversion from string to DOuble is not valid". This error points to a value in a group box that is actually hidden or disabled.
View 9 Replies
Aug 11, 2009
I have a program I've been working on for some time now and I'd like to try to streamline it somewhat. I have a main menu form that has a split panel, in the left panel is a treeview that displays forms you can open and when one is selected, it opens in a child window in the right panel. Each time I open form I called DWNForm, it does a series of dataset loads which are the populating items for a series of listviews.
What I would like to do is have these datasets load once during the mainMenu load and then have the DWNForm be able to access the datasets once it is called from the treeview selection.
View 8 Replies
Oct 21, 2009
I have to make some automatization on a web server, I use Visual Studio 2005 Visual Basic Windows Console Application. I want to make a load/performance test of the web server, so I open several Internet Explorer instances, and I login the application, that is not a problem. But after that I have a mess on the page and I cannot make any more automatization...The composition of the page after the login is like this: I have the default form, another form and a multiple data window(mdw) controller, which dinamically can switches the forms on this part.
The problem is that I don't know how to access the controls of this mdw forms. I couldn't find much about this mdw controller and I am not an expert.
My code is here:
Imports System
Imports System.Diagnostics
Imports System.Web.Ui.Webcontrols
[Code].....
View 5 Replies
Aug 13, 2011
I have an array of variables called VolumeArray(12) which is declared as publlic shared in the main form1.I have a second form2 which allows the user to input various values. When this form2 is closed, I need the data the user has entered to update the values for VolumeArray(12) within Form1.
View 3 Replies
Jan 19, 2010
How to remove dynamically declared text boxes from a form. The textboxes are declared as an array.[code]...
View 5 Replies
Feb 24, 2011
The following is a screenshot of the problem: What can I do?
View 3 Replies
Nov 30, 2011
how to access a form in a different project but within the same solution? Say I click a button on one form to display another form which is a part of the same solution but resides in a different project.
View 11 Replies
Apr 11, 2011
i created a threaded form class that i call when i know an update is going to take a while....it is a simple form with a label and an animated marquee progress control. the code is listed at the bottom....whenever i try to set the message, it says i cant do it with error "{System.InvalidOperationException: Cross-thread operation not valid: Control 'MessageLabel' accessed from a thread other than the thread it was created on." from my form (in my SAVE function, i put the following line:[code]....
View 6 Replies
Jan 19, 2011
how can i access the controls that i made from another form? i'm also going to also use function (on the same form as the controls) that access that controls?
View 3 Replies
May 17, 2012
i started using VB 2008 recently (with perl background, its a big leap) and having a problem with database.i am trying to access a database that is attached to a different form. i managed to get my code to work if i was writing on the same form.example of code that will work just fine Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
[Code]...
View 2 Replies
Jul 31, 2009
I have a form where I open an Access database with 3 tables. I have defined datasets and dataviews for these three tables in the main form. I want to open a new form and access and update the tables using the dataviews I've already defined. When I try to access a record from the dataview using the new form, it's not defined. Can I pass the data between forms or do I need to redefine it in the new form? This is the first time I've tried to use multiple forms.
View 6 Replies
Apr 5, 2010
I have two tabs on a form, and I would like to know how can I display the second one when a button is clicked? The name of my tab control is tabSurvey.
View 5 Replies
Mar 1, 2010
how can i getting data from listbox in second form named listform while i am at first form..i have search it a lot on google but not find any usefull ans...
View 1 Replies
Jan 22, 2009
Private Sub btnsave_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnsave.Click
'If inc <> -1 Then
[Code]......
i got an error at the time of execution .
View 1 Replies
May 12, 2010
I have a button on my form that loads a dialog. I have a logic on here that I want to test, what ever method I try I alway's get 'Object reference not set to an instance of an object'dialog1.vb:
Code:Public mainform As SettingsMainForm If mainform.LogicCheck.Checked Then textbox1.text = true End if
View 2 Replies
Jan 31, 2011
I am trying to access a control (statusbar panel) on my MDI parent form from a child form.
Here's my
(located in child form)
Dim frmParent As frmMain
frmParent = DirectCast(Me.MdiParent, frmMain)
[Code]....
Object reference not set to an instance of an object.
View 4 Replies
Feb 4, 2010
Accessing Properties Of Form Classes
View 1 Replies