Make A Public Array?
Nov 25, 2009
I'm trying to make a public array that I can use in Form1.vb and module1.vb.
It seems to work fine in Form1.vb but module1.vb complains about that it isn't declared.
This is how I've done it: I placed it right after this line in Form1.vb:
Public Class Form1
Public SuffixArray() As String
how I declare a Array that I can use in all forms and modules?
View 4 Replies
ADVERTISEMENT
Mar 28, 2011
Public Property TabsCollection()() as String()()
Get
Return _tabsCollection
End Get
[code]....
but it errors saying: End of statement expected.
View 3 Replies
Apr 8, 2011
So, I make a public array: Public files As ArrayList
I try to add a value to the array inside of the "Form1_Load": files.add("Hello")
Which returns a null error. how to add values to a public array for multiple subs to access?
View 3 Replies
May 3, 2011
I'm trying to declare a array that I want to use in the module and in the forms. I like it to be usable all over but I cant get it to work.[code]...
View 3 Replies
Jun 20, 2011
I have an array that I created in a sub with a button. I was wondering how I could use this array in other subs after it has been created. I tried making it public and global, but it didn't work.
View 10 Replies
Sep 17, 2010
i am new at everything VB.net/ASP.net. I have an ASCX.vb page that lets the user choose someone from a table. Once they do select someone, the page reloads with that persons information into another table below that one where they can submit an order for that person or remove that person. Problem being is that i wanted to store the users ID that are selected but it seems that everytime the page reloads to show an update, it dim's my array again back to default. This is my code once they choose a user:
[Code]...
View 2 Replies
Jan 5, 2010
I am trying to create a property of type string array (if this is possible).....and I seem to be lost.
I tried the following, but it says "String cannot be converted to '1-dimensional array of string'" at the return
Private _strZipList As String()
Public Property strZipList(ByVal i As Integer) As String()
Get
[Code].....
View 10 Replies
Jul 12, 2011
I am attempting to make a form public. I've start out with this class:[code]I can see the stupid form thru intellisense, but when this code is run I'm getting a null reference exception. I believe this is because the stupid form has not been initialized. I thought that placing 'new' in my class definition would initialize the form.
View 4 Replies
Aug 21, 2011
Is there any way to make a class instance public?In my mainform I define an instance of a certain class and then later on in some other forms which appear I want to alter this class.I try and pass them through when creating new instances of these other forms and it tells me Error3<instance of the class I want> cannot expose type <the class> outside the project through class <the form I want to edit it with>Which I gather from documentation is about it defeating the purpose to have a private class suddenly be thrown aroudn.but then how do I make it public? I can't define it in the first place as public myXClass as XClass, it only accepts private.
View 6 Replies
Jul 5, 2011
basically how do I make my dataset public so I can access it on another form.
Dim ds As New DataSet("Dataset1")
Dim filePath As String
OpenFileDialog1.ShowDialog()
filePath = OpenFileDialog1.FileName
ds.ReadXmlSchema(filePath)
[Code]...
View 2 Replies
Apr 25, 2009
I just stumbled over this in some C# code...:public Foo Foo { get; private set; }
View 2 Replies
Jun 9, 2011
how to make a variable public to all forms within the application.Eg
Public MyPath = "C:"
can do for one form but not all
View 3 Replies
May 27, 2009
I was thinking about writing some VB 2005 code that would be able to open an excel file and keep it open while I do things in separate functions/subs basically just check boxes, so each check box is its own sub but HOW do I do that with out opening and closing the excel file for every check box sub, since every time I make a check box the sub comes up as private?
View 9 Replies
Jan 30, 2010
ok basically i was trying to make a Control that exposes its protected properties to the public. example, you could call the protected DoubleBuffered property publicly. the problem is that this class called ExposedControl must be compatible with the type System.Windows.Forms.Control, meaning i should be able to create an ExposedControl using an existing Control so i had something like this in the constructor.
Public Sub New(ByVal control as Control) Me = control
[Code]...
View 8 Replies
Apr 6, 2009
I have a class inside a class.I need to expose the properties of the 2nd class to other classes, therefore it is public.However, I do not wish other classes to be able to create instances of this 2nd class, it should only be instantitated from its parent class.I thought I could resolve this issue by making the constructor of the 2nd class private, but this even prevents the parent class from instantiating its child class! How can I work around this, do I have to make the constructor public and allow anybody to create an instance of the class?
View 3 Replies
Feb 3, 2010
I am new in this forum, also new in VB.Net I need to create a public class for insert and delete data to database Public Class My_DBFunctions
[Code]...
View 1 Replies
Feb 10, 2011
I can access a module from code behind but not from the aspx page in inline VB code <% ... %>.
View 2 Replies
Apr 7, 2011
Imports System
Imports System.Threading
Imports System.ComponentModel[code]....
how to declare "smsport" on class smscomms as public so that it can be access in class form1 or button1_click event.
View 5 Replies
Aug 26, 2010
How do declare a public variable .aspx web page that can be used in all the pages within my web application?
View 3 Replies
Aug 5, 2011
with one form and 1 class it is simple.but i have now 4 forms and 4 classfiles with 8 classes.i only need 1 commandlist with 20 commands i made them classes form 4 makes a private instance of the commandlist with the dim statement so i cant use it througout the projekt if i chance it in public , i get the reaction of visual studio i must replace it with dim (private) i read it is better to make instances ( dynamically)then to publicly share your classes(static)but i want my instances to be used by all forms and classes.
View 3 Replies
Jul 3, 2010
Public Class Form1
Dim str As String
Dim strA() As String
Dim strB() As String
Dim f As Integer = -1
Private Sub btngo_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btngo.Click
If txtmain.TextLength > 0 Then
str = txtmain.Text
[Code]...
View 2 Replies
Mar 8, 2012
My app has three forms and one module; each form has it's own, private code, and the module has all of the shared, public functions and subprograms. One of my controls (MSFlexGrid) is "contained" by my form1 but must be referenced within the public module.
If I try to use a With statement in my module to reference form1's grid control, the control's name is flagged as an "undeclared variable name". Is there a way of either declaring or qualifying the control's name so that it can referenced outside its owning form?
View 5 Replies
Feb 13, 2010
how do I declare an array with an array? Say I have the following
item11
item12
item21
[code]....
View 2 Replies
Jun 6, 2011
Imports System.Net Public Class Form1
[Code]...
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
View 9 Replies
Mar 22, 2011
I do have to create at runtime a list that will contains some methods. These will be called in proper time.
So far, I used reflection and have made an array of methodInfo.
The problem is that these methods do have different signature, and I also need somehow to get the value of the arguments to follow their method.
And finally, I need to be able to put all this together and invoke these method when the time comes
View 2 Replies
Jun 17, 2009
is there a way to make an arry of buttons in vb.net in VB6.0 there is a prop of buttons name Index but not in VB.NET so if there is some way to do that,[code...]
View 2 Replies
Oct 10, 2009
i want to make a vb.net program that reads from a text file a movie, with the help of a Open Dialog (called openFD in my program) (we don't know how many movie we've got), the actors, the release date, the country, and the rating.
The text file look like this:
Movie1;Actor,Actor,Actor1;Date1;Country1;Rating1
Movie1;Actor,Actor,Actor1;Date2;Country2;Rating2
...
First question: How can I make a 2-dimensional array? line(0,0) - Movie1, ... , line (1,5) - Rating2. Here Is my try, but it's not good:
Dim line As ArrayList = New ArrayList()
Dim itm As ArrayList = New ArrayList()
Dim i As Integer = 0
[code]....
And here is the code for the Delete Button. It deletes a movie from the listbox, but the details of the deleted movie remains for the next one, I must delete the details for the deleted movie, too.
ListBox1.Items.Remove(ListBox1.SelectedItem.ToString)
View 7 Replies
Jun 23, 2009
I want to try/use this code [URL] now im stuck with the last part, how can i make an Array list?
View 5 Replies
Sep 3, 2010
I've been making a table control for a few days, and I've got to the point of making it capable of accepting new data. To do this, I'm making it generate a row of text boxes, combo boxes, and date selection windows along the row that you're entering data into.
I've tried using an array of 'control' types and changing them to whatever specific control I need as I generate it. That sort of works. For example, the code under 'Case "Employees"' below will make a combo box display on the form, but 'ControlArray(i).Items.Add' gives an error because it doesn't think that ControlArray(i) is actually a combobox yet.
You might also be interested to know that everything will have to be dynamically generated since the table I'm using will not always be the same (and the Select Case code will eventually be replaced by something that checks for relationships in the database).
Dim ControlArray(NumberOfColumns - 1) As Control
For i As Integer = 0 To NumberOfColumns - 1
ControlArray(i) = New TextBox
[Code].....
View 4 Replies
Jan 9, 2010
I am trying to make an array of picturesbox's. Now I need one array to loop though all the pictureboxs on the form and add them to the array. I also need another array to loop though all the picturebox's on the form however I only want it to add the ones that there names start with "ladder_" How can I do this?
-Manmax75Don't Be Scared To Ask,
View 2 Replies