Add Data To A Class In BV?
Jun 15, 2009
I am trying to create a class in vb where I can store data on its properties, then I want to use that object to populate data in a data grid or any other output. I just want to know how to start adding data to the class. This is what I have so far, I know
My Class: Public Class Items
Public Property PartNo() As String
[code].....
View 2 Replies
ADVERTISEMENT
Jul 26, 2011
I'm designing a small GUI Windows program that allow staff at a cinema to reserve seats for customers. There will be a total of 60 seats in the cinema. I have two classes in my program:-
1.) MainForm.vb - used for I/O actions and user interaction
2.) SeatManager.vb - used to hold and handle the background methods and functions that make the program work
Here is the code for my MainForm.vb class thusfar:-
Public Class MainForm
Private Const m_totalNumberOfSeats As Integer = 60
Private m_seatManager As SeatManager
[Code]....
Basically, when the program opens, the lstReservations list in the MainForm class will be populated with a total of 60 (m_totalNumberOfSeats) entries to represent 60 seats. Each of these seats will contain the index number from the array m_nameList; this index number (+1) will represent the seat number and then in the lstReservations list, after the seat number, I'd like it to contain the respective entry from the m_nameList array. As all entries will be held in RAM, when the GUI is opened, all m_nameList array entries will be empty. As the user uses the program, they can highlight a row in the lstReservations list and then use the GUI textboxes to enter the customer's name which will then be populated into the respective array entry.
how to, when the GUI opens, ensure that the lstReservations list takes all of the blank entries from the m_nameList array and from there, I can highlight a row to carry out further methods on?
View 1 Replies
Jun 2, 2011
How can I data scrub a collection of data? I am working with existing VB.NET code for a Windows Application that uses StreamWriter and Serializer to output an XML document of transaction data. Code below.
Private TransactionFile As ProjectSchema.TransactionFile
Dim Serializer As New Xml.Serialization.XmlSerializer(GetType(ProjectSchema.TransactionFile))
Dim Writer As TextWriter
Dim FilePath As String
Writer = New StreamWriter(FilePath)
[Code]...
View 1 Replies
Mar 9, 2009
rewriting a class I use for saving Treeview data to a XML file for use of saving ListView data I can't really figure out the rewrite, I'm stucked, unfortunately Listviews seems to be a big problem for me in general.
Option Strict On
''' <summary>
''' The TreeViewDataAccess class allows the nodes within a TreeView to be
''' persisted to xml for later retrevial.
''' </summary>
[Code]....
View 9 Replies
Dec 16, 2009
If Class X is within the scope of Class Y, is X a subclass of Y?If Class A is a sub Class of B, then is Class B considered a super class of A?if Class C inherits Class D is Class D a superclass or parent of Class C?if Class E extends Class F then we can consider Class E a child of F?if Class G inherits Class H and is within the scope of Class I then who is the parent of Class G? Classes that inherits Class J and classes that are within Class J are all sub classes of Class J?
View 1 Replies
Apr 15, 2010
I have put this code in the global form Inherits System.Windows.Forms.Form. And then in the form that will inherit this from the global Inherits MenuStrip. "MenuStrip" is what the global form is called. But keep getting this error: Error1Base class 'MenuStrip' specified for class 'Lesson2' cannot be different from the base class 'System.Windows.Forms.Form' of one of its other partial types.
View 5 Replies
Jul 16, 2009
I have been asked by a code snippet to add the instance of class that contains data i want to add to an XML file, the only trouble is i am not sure what an instance of class is. Is it something that looks like this: [Code]
View 2 Replies
Apr 30, 2010
I'm trying to create a application using VB.Net 2008 and my database is SQL Express 2005 (currently on visual studio installation)Here's my codeThis is on code on class (I'm using data adapter and data set)
Imports System.Data.SqlClient
Public Class Code1
Dim connection As New SqlConnection(Mod1.connString)
[code]....
In the other form its works, but its just for show the data/table itself. in this case i want to make validation for login form. i want user get a notice when they user name and password are wrong.my code doesn't works, is there something wrong?
View 3 Replies
Apr 7, 2011
I'm still trying to develop p2p chat application from this thread. I have 2 applications, server and client. A client has: Form1.vb, BB_Client.vb, and RTS_SocketClient.vb. Dataflow is Form1 creates new object of BB_Client, BB_Client calls RTS_SocketClient.[code]...
View 7 Replies
May 12, 2010
How do I pass a structure containing strings from VB.net to VB6. I can get an integer to work but not a string.
View 3 Replies
Feb 18, 2009
I have data in this format: [URL] which can be random in the amount of sections, etc.I want to split it so i can then use the data in my windows form, this is how to decode the data[URL] am struggling, ive got the file already split, as metarItems = Split(metarData, Environment.Newline) so metaritems contains the individual lines.The first 2 parts are always the same, ie EGBB 181320Z are always in same place?
View 2 Replies
Jul 22, 2011
I have a class (see below)
Imports Microsoft.VisualBasic
Imports System.Data.SqlClient
Public Class ClientProfile
#Region "Variables"
[CODE]...
It is in the file ClientProfile I have placed in both App_Code and also App_Code/Models
In my code behind I have the following
[CODE]...
The last word, "ClientProfile" has the scary squiggly red line below it. It is not recognizing my class.Even the Intellisense is not picking up te class. Do I have to register the class file in any way?
View 4 Replies
Oct 21, 2010
I have a web site project in which I added a "Class.vb" file to hold public functions/procedures/variables. I'm trying to access a function within this file from my code-behind file from an aspx page. I've called the Class file "Module1"; Publc Class Module1.[code]...
View 3 Replies
Apr 13, 2012
A few years ago we (as a company) faced the scenario of getting our developers to stop writing classic asp pages and switch to .net (and in turn system.data for data access). As a supposedly ˜short term measure I wrote the following class to make the switchover easier for those not used to system.data & all its new objects: [URL] The main purpose of this class was to keep usage as similar to classic asp as possible & keep the usage VERY simple (plus to add email alerts for error catching yada yada yada):
[Code]...
View 2 Replies
Apr 11, 2009
Is there an alternative to load data from a datagridview into a class than to iterate through the datagridview?
View 1 Replies
Dec 16, 2011
I have a "generic" Tag class which holds an ItemValue, which at this time is declared as Object. The ItemValue could be one of several datatypes; String, Boolean, Integer, etc. Is there a way to create a class property to identify which data type the Tag is?
I've tried this but it's not working;
Public Property DataType As Type
Get
Return m_DataType
[code]....
View 6 Replies
Aug 17, 2009
I want to decorate a VB.NET class with meta data to describe additional information associated with the properties of the class. Also I need this information to be visible through reflelction.Is this even possible for me to accomplish?
View 3 Replies
Aug 14, 2011
I want to read data from xml into memory. My code works fine providing I only have one record in XMl file. If I have more than 1 record the program fails.[code]...
View 12 Replies
Jan 28, 2012
My assignement is to create a simplistic checkbook organizer. The GUI is built, and the form is needing to call to a transactional class i have created. My problem is I dont know the right commands or syntax. I though I had it, but i'm getting an error.
Error: "Arguement not specified for parameter 'PreviousBalance' of 'Public Sub New (PreviousBalance as Double)'.
Here is my code so far for the form:
Private Sub btnAddTransaction_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnAddTransaction.Click
'declare user input variables in this GroupBox2
Dim TransactionAmount As Double
[code]....
View 1 Replies
Apr 1, 2009
I'm trying to set up a CLASS to represent a data stream.This is a newbie question so if the answer is obvious, please excuse me.Several of the data items are multiples which I would normally represent as an Array element.For example, in the code below, the element SolarNameplate has up to 10 instances, so I'd like to use array notation.I get errors, and it doesn't work, so I assume I can't do it like below.
QUESTIONS : 1 - is it possible to use an array element in a class ?
2 - is there another way to achieve what I want ?
Public Class SM1PS01
Private _Projid As String '... name or number of project
Private _LogoFile As String '... file containing customer logo[code]...........
View 18 Replies
Sep 30, 2010
I am in a VB programming class and I am having an issue with a program that I created. The focus of the program is creating a class to do calculations and sharing the data with a form.
The problem that I am having is with a certain piece of data that is shared between the class and form. To be more specific, it is two check boxes that each have their own variable as boolean, done as a true/false if checked/unchecked situation.
When I step through the program, somehow the values get changed entering the class for calculations. For example if it was true, false, it comes out as false, true when the class accesses the data. There are other variables and data types that get pulled but these are the only ones that are being altered.
View 3 Replies
May 4, 2012
How do I get a datatable that has been populated(filled) in a subroutine in one class and use it in a sub-routing in another class with that same data?
View 1 Replies
Sep 9, 2011
I have the below xaml that I am trying to bind to my class. I am having trouble getting the values to show up.
code]...
View 2 Replies
Mar 17, 2010
[code]Index was out of range. Must be non-negative and less than the size of the collection.Parameter name: index
View 2 Replies
Aug 10, 2010
how to organize the classes within my RPG project that I'm making. I've tried to implement a battle system but I am not comfortable with my initial results. This is the basic layout I currently have for my classes. [Code] clsCharacter contains statistics pertaining to one character, including magic available to that character to use. Also includes what weapons that character has equipped. clsTeam contains multiple clsCharacter, as well as a list of items that each clsCharacter in the team can use. clsBattle contains two clsTeams. One team is the player and the other is the computer. Now, this is a wonderful way to organize data. However, I see limitations with this approach. For instance, to pass data from Battle to Character, it has to pass through the team class and vice-versa. Plus, if I use Properties, it transfers data as ByVal instead of ByRef, so I cannot guarantee that I'm editing the original and not a copy of the passed object (IIRC)
In addition, I feel it is just messy code to include methods within the clsCharacter class that invoke this: MyTeam.MyBattle.DoAction(). Plus, the clsCharacter might not even be in the battle at the time - I don't won't to bog down that class featuring code that is exclusive for battling when I also need to be concerned about moving around the map, saving/loading data, etc. So, any suggestions? Right now, I'm burnt out of ideas. One idea I have so far is to include a function for the clsCharacter that exports a list of all possible moves the character could make, and if the character is CPU choose the most optimal one, and if Human than wrap it up in some nifty GUI so they can choose what action to take. But at the same time, how do I use that information within the context of the battle?
View 2 Replies
Jul 20, 2010
The problem is, I've never created a class before, not in VB, Java, or anything. I know all the terms associated with classes, I understand at a high level how classes work no problem. But I suck at the actual details of making one.[code]...
As for the Getter and Setter, the reason I put the question marks in is because I want to return the whole array there. The class will eventually have other properties which are basically permutations of the same data, but this is the full set that I will use when I want to save it out or something. Now I want to return the whole Array, but typing "Return fullDataSet()" doesn't seem like a good idea. I mean, the name of the property is "fullDataSet()." It will just make some kind of loop. But there is no other data to return.
View 3 Replies
Feb 17, 2010
I am trying to build a dynamic validator for a data entry application. I want to be able to query a table for the validators relating to the current task and then be able to reference class properties based on the description of the validators returned.
ex. Validator = "person/firstname"
How do I get to _clsPerson.FirstName?
View 2 Replies
May 30, 2011
How to create a class which inherits from a data type, specifically from Char data type? I just want to add one property to it. If it's not possible, are there any other ways to accomplish this?
View 2 Replies
Oct 2, 2009
How do I distinguish copying data and a pointer when using a class?E.g.
public class myparams var1 as integervar2 as intergerv3 as stringend classmyvar as new myparamsmyvar.var1=1myvar.var2=2myvar.v3 ="hh"othervar as new myparams
I want to copy all of myvar data into othervar in one go.. without doing
othervar.var1=myvar.var1 etcusing othervar=myvar"
Looks like its just copying the pointer of myvar into othervar? Can I copy all the class data in one go? VB2008 user
View 1 Replies
May 3, 2009
I declared made an array of my class like this
Dim
myClass(3) As Class1
Now when I try to enter data like this:
myClass(0).s = ("Test")
I get an error "Object reference not set to an instance of an object."
View 3 Replies