Creating Object Instances Globally?
Nov 19, 2009
this is probably something I should know, but I'm puzzled by this.I'm trying to create some objects and being able to access and modify these globally. I tried to create a Public Module and declare a few objects in this.I am able to access these from another sub, but I get an exception error when after building and runing the process and trying to modify these object. The same thing happens if I declare the object in the Public Class Form1. For example like this:
Public Class Form1
Public appWord = New Microsoft.Office.Interop.Word.Application
Public wordDoc as Microsoft.Office.Interop.Word.Document
[code]....
View 1 Replies
ADVERTISEMENT
Nov 21, 2006
I'm trying to create 3 instances of the the Workshop selector form for the 3 individuals that I have inthe listbox to appear when I first run the program.
View 4 Replies
Sep 3, 2011
info on creating instances of my own class at runtime. Simple project for family recipes but would like the option to add new recipes with new instances of my own food Item class at runtime. Creating my own class,no problem. Storing the data in an XML file, OK on that as well. My issue is creating new instances of different food item class as I use this program over time
View 13 Replies
Aug 12, 2009
I have a form (form1) and I havea button on form1 (button1) that will start a second form (form2).How can I make it create multiple instances of form2 when button1 is clicked?i tried a process module that the studio comes as standard but it does not allow me to start multiple instances...how can i do this?
View 14 Replies
Nov 25, 2011
I am using MEF to compose a number of components at run time but when I use a metadata attribute it double the number of parts in the collection.
When checking the container.ComposeParts I can see that the dll containing the 11 implementation of IStages is loaded once and only the 11 part required appear but when it resolves the Private Property Stages As IEnumerable(Of Lazy(Of IStages, IStagesMetadata)) the number of instances is doubled to 22. Looping through the collections I can see that they are duplicated by the ID in the metadata.[code]...
View 1 Replies
May 24, 2011
What is an elegant way to create and initialise instances of a class that has several readonly properties? Passing all values in a constructor would not be very convenient.
The purpose is that instances are immutable after initialisation. However if the constructor is not used for initialising all the property values, then how can the readonly properties be changed from another class?
View 2 Replies
Aug 23, 2010
I am trying to create a subroutine that creates multiple instances of a specific form.
Here is my code:Public Sub NewFormInstance(ByVal FormName As Form)
Dim FormInstance As New FormName
FormName.Show()
End Sub
View 3 Replies
May 13, 2009
I'm trying to elaberate on some basic examples of .Net programming in using VB. The basic example of creating a new instance of Form1 is:
Dim x as New Form1
x.Show
I've added some OptionButtons to set the StartPosition of the Next Instance of Form1 as well as some Labels that display the Top, Left, Width and Height properties when the new instance of Form1 is Shown.
This is the code I'm using.
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim x As New Form1
If Me.RadioButton1.Checked = True Then
x.Top = 0
x.Left = 0
[Code] ......
View 1 Replies
Sep 14, 2010
Is it possible to create instances of controls on a form ? Of course I mean visually , not just by code. After all, these languages define themselves as "Visual" so they should provide that possibility. It is important for the instances to be visible during design time because otherwise we could only guess where those controls might "land". Nevertheless , I have the feeling this is not possible in VB .NET but still I thought I should ask first ...
View 11 Replies
Feb 15, 2011
I have been trying to create good multithreading programs and it is not working well considering the use of global variables, local variables etc and thread safe controls. I have not found a good way of doing it since it seemed to be not as efficient as just running it on a single thread.
The program accesses facebook and twitter api, parses etc. and I am wondering if I can just create new tasks and map the program project file and fire new instances of the project. Someone this using the taskfactory in 2010 but I thought this was just the same as the threadpool. on this: create windows services and set them to run on task scheduler??
View 2 Replies
Jul 31, 2011
I'm creating a twitter account manager using the Twitter API. I have multiple accounts, over 10 of them. I want to automate all 10 of these accounts to do certain things, now the way I started to code the program was so that it would accommodate only one account, and all the codes worked perfectly and were managed by individual timers for individual processes that I wanted done. i could tweet between certain intervals, follow people who tweet certain things without me being on top of it.
Now the problem is that I've been trying to create new instances of subs that I've already created so that I dont have to create 10 new subs with the exact same procedures. I'm pretty sure it's impossible to create copies of subs dynamically or within a loop but it didn't stop me from trying. So question is how can I edit a program that was designed to accommodate and automate only one account, to potentially accommodate over a 100? I don't need codes or anything I need ideas so I can try them, but right now I'm completely blank.
View 2 Replies
Oct 31, 2011
I have a class structure and am attempting to create an array of object instances from the class some instances are parents and some are children Code snippets,
Parent Class object
Option Strict On
Option Explicit On
Public Class cTransportItem
[code]....
View 1 Replies
Nov 6, 2009
Is it possible to look for all current instances of a specified object without specifically IDing each instance as it's created?
View 12 Replies
May 12, 2009
can i do some thing like this in .net? and how?
Code:
dim object1 as new clsDatadim object2 as object
object2 = getobject("object1")
"getobject" function is my "needed function"
the purpose is to set object2 to have same memory address with object1 so if i change the properties of object2 then the properties of object1 also changes..
View 1 Replies
Oct 12, 2011
I am just getting started with VB.NET - what I couldn't find in my book is whether a new instance of an object with the same variable-name will delete the previously stored values - or will that somehow remain in memory?This is the scenario:
I open a data file and load the contents in 'Dim var As New dataObject'what happens when I again open another file and the same line is encountered:Dim var As New dataObject'
Hope the question is clear p.s. the dataObject is a simple structure with a bunch of variables in it - nothing fancy.
View 7 Replies
Jun 23, 2010
Like i have. Dim MainWindow as new Classic.
But i have another i need to Access.
Is there a Way. Ive Tried and Tried. But i can't find a Way to Load another.
View 19 Replies
Sep 5, 2009
having difficulty with understanding object lifetime / instantiation.I have a windows from with a datagridview and a panel. The datagridview has a checkbox column and a list of names which is populated from a database.The panel has a few text boxes (e.g. name, age, favourite sports team) and a 'save changes' button.
The idea is that when the user selects a person in the datagridview by checking the appropriate checkbox then the panel shows the relevant data for that person (name, age, fav sports team) by pulling the data from a database. If the user would like to update the person's details they can do so by typing in the textboxes and then clicking the 'save changes' button. All quite simple so far.
The way I have designed this is to have a 'panel' class and to create an instance when the user checks a checkbox.(NB - the reason I have created a 'panel' class is that I intend to replicate the datagridview and panel on other tabpages within my form and thought it would be useful to have a generic 'panel' class that I could re-use.)
My code looks a bit like this:
If CheckBoxClicked Then
Dim UpdatePanel As New UpdatePanel(MyForm.NameTextBox, MyForm.AgeTextBox, MyForm.FavSportTeamTextBox, MyForm.SaveButton)
UpdatePanel.GetData()
...
When the user clicks the SaveButton the data is updated to the database and I have a display message (simple textbox) which says "Update successful" and displays for 5 seconds before hiding itself.
Here is the problem:Suppose a user checks a checkbox, reviews the data and does not make any changes, and then checks another checkbox and decides to update the data by clicking the 'save changes' button. What happens is that the "Update successful" message is displayed twice.
I think this is because every time the user checks a checkbox an instance of UpdatePanel is created. If a I select five different people using the checkboxes and then hit 'save changes' I get five "Update successful" messages.
I am not sure how to overcome this. It feels like each time a checkbox is clicked I need to check if an instance of UpdatePanel exists and then destroy it. I tried using UpdatePanel = Nothing and also investigated IDisposable and GC.Collect() but with no luck.
[code]....
View 1 Replies
Oct 27, 2009
I am having a problem with a and OOP class i made that contains a sub that creates random integers.
Problem is if i define two instances of this class and configure them(name in this case) then they both display different names but the random integers are ALWAY the same. in this case having the integers the same kinda kills the idea of the program.
Is it possible that the random part only every works for one class, but if .NET is fully OOP then this should not be possible... right?
Some of my Code (broken down to something smaller) i will display for obvious reasons.
Code:
View 11 Replies
Jun 23, 2012
I'm trying to create a pivot table by opening an Excel file from my drive.But I'm receiving the error saying "Object reference not set to an instance of an object".[code]
View 1 Replies
Apr 13, 2012
I'm having this problem with my code and cannot seem to get past it although it was working fine before. The error is "An error occurred creating the form. See Exception.InnerException for details. The error is: Object reference not set to an instance of an object." The code is:
CODE:
I am trying to get information to be pulled out of a database and show in text boxes on another form (frmviewsdets). The error occurs when it gets to the line frmviewsdets.txtsnumber.Text = rdr("StudentNumber") and even when a breakpoint is applied there it just moves on to the next and so on.
I have tried to show frmviewsdets before I pull the data out of the database beut I get the same message.
View 14 Replies
Mar 29, 2010
I am having some trouble creating an object array of different object types. Here is what I have so far:
Public Sub New()
Dim b1 As New Book("Book Title 1", "Gold Book Publisher", 1.0, "Bob Jones", "192DJDJD212", "01/02/10")
Dim b2 As New Book("Book Title 2", "Gold Book Publisher", 1.0, "Bob Jones", "192DJDJD212", "01/02/10")
Dim b3 As New Book("Book Title 3", "Gold Book Publisher", 1.0, "Bob Jones", "192DJDJD212", "01/02/10")
[code]....
If I define the array As Book (Public publicationArray(6) As Book) or Magazine (Public publicationArray(6) As Magazine) I am able to access the properties of that class but not both. I think I need to define a type for each array instance but not sure how to do this.
View 5 Replies
Sep 17, 2010
I have a TabControl object on my form with many tabs created in code (TabPages) and my problem is that the same objects that are in the initial TabPage needs to be in the other TabPages created in code, I have this done in code when the user clicks the 'New Tab' menu option, however the same code is used for any new tabs created. The problem created here is that I have an event against one of the objects that appear in the other TabPages, but because the same code is used to create any new tab pages, the event will only work on the newest tab page, if that makes sense? By the way these objects that appear on the other TabPages are properties at the top so events can be handled against them in the respective subroutine.
[Code]...
View 5 Replies
Apr 30, 2009
WTF, here's my code...
Public Class Form1
Dim BIT01 As Integer = BIT_01.Text
Dim Value As Integer = TB_OutPut.Text
[code].....
View 1 Replies
Nov 1, 2011
MVC 3 razor VB.NET project. I have resorted to manual building a list for a drop down box so I can insure certain values are available in the select list and also to control what the first item is in the list. The below is my code snippet for the part that is giving me problems..
[Code]...
View 2 Replies
Jul 27, 2009
I have a connection string issue, sometimes when I change servers, I run into an issue of where My.Settings.Save doesnt save the changes sometimes. I created a text file when I change my connection string to see if it is saving the right information and it is, but sometimes my settings does not reflect the changes after calling my.settings.save.
View 1 Replies
Jun 1, 2009
I know you can globally declare a structure so every class knows it.But I have a class named "WPNConnection", but I was wondering if you do like.Public WPN as new WPNConnection but so every class in the whole project could access it. It's just annoying having to raise events to get back to the class holding it, or finding the main class and finding it declared there.
View 2 Replies
Aug 26, 2009
I am using a .dll called Kiosk in my application which is resonsible for disabling some keyboard keys. I am doing like this... using Kiosk; public static Kiosk.Kiosk KIOSK = new Kiosk.Kiosk();
[Code]...
View 2 Replies
Jul 10, 2009
how can i import system.data.sqlclient globally?
instead of typing system.data.sqlclient in everypage.. i want is to type it once and all pages has now the namespace of the system.data.sqlclient...
View 6 Replies
Jul 10, 2009
I need to store a value globally (application level). This is part ID retreval program, procedure will return teh Max ID number thena i need to store the retreved value gloablly, so that if the user open many intance of teh same form i can use the gloabl value, to send Unique ID numbers to each form.
View 4 Replies
Sep 15, 2009
Ok this is probably the most basic question that you ever saw. How to declare value publicly (globally).
I want to declare time = 0
And I want my timer sub to know what time equals to How can I do this?
View 3 Replies