jwcoleman87
Well-known member
- Joined
- Oct 4, 2014
- Messages
- 124
- Programming Experience
- Beginner
Lets say I have a bunch of objects of type ActionTab (which is an abstract derivation of TabPage)
I've set up a CommentTab, FailureFixTab, and ScreeningTab.
All of these are derived from Action Tab and can be instantiated.
I have a table, looks something like this:

This table has fields which will lay out what actions are available in what processes. The application will first query the database to determine the processID of a particular repair, it will then need to query this table and determine what actions are available in that particular process. This part is not difficult and not really what I am concerned about.
The thing I've never done before is somehow connect the integer held in the database (the ActionID)) with the actual object in the application. The objects look like this:
It's basically just an abstraction of a tab page with some added event handlers and control initialization functions to make it easier to define tabpages which are useful for the client.
My question is simple: What are my options for connecting the information held in the database (an integer or string) with this class. I want to avoid instantiating all of them but only using a few of them so my goal is to create them on the fly based off of what is laid out in the database. (If this process ID then these actions are available). At that point I want to be able to instantiate them by actionID (or by ActionName)
I haven't googled yet, but that's what I'll be doing throughout the day, I just like to post my questions here first to see if you guys can point me in the right direction.
To clarify the question one more time: Is it possible to associate an integer or string with an object and tell my program what it should do if it is presented with a sequence of ActionID's {0, 1, 2}
Like for each action in ActionID's instantiate the object with actionID of action
I'm thinking maybe an enumeration?
Some kind of array?
On to google!
I'll get back to you guys.
I've set up a CommentTab, FailureFixTab, and ScreeningTab.
All of these are derived from Action Tab and can be instantiated.
I have a table, looks something like this:

This table has fields which will lay out what actions are available in what processes. The application will first query the database to determine the processID of a particular repair, it will then need to query this table and determine what actions are available in that particular process. This part is not difficult and not really what I am concerned about.
The thing I've never done before is somehow connect the integer held in the database (the ActionID)) with the actual object in the application. The objects look like this:
Public MustInherit Class ActionTab : Inherits TabPage Private ChildContainer As FlowLayoutPanel Private EventHandlerArray As Array Public ParentFormReference As Object Public Property ChildContainerControl() As FlowLayoutPanel Get Return ChildContainer End Get Set(ByVal value As FlowLayoutPanel) ChildContainer = value End Set End Property Public Property ControlEventHandlersArray() As Array Get Return EventHandlerArray End Get Set(ByVal value As Array) EventHandlerArray = value End Set End Property Public Sub New(Name As String, ByRef ParentForm As Object) ParentFormReference = ParentForm Dim flp As New FlowLayoutPanel ChildContainerControl = flp flp.FlowDirection = FlowDirection.TopDown ChildContainerControl.Parent = Me ChildContainerControl.Dock = DockStyle.Fill ChildContainerControl.Name = Name InitializeControls() InitializeEventHandlers() End Sub Protected MustOverride Sub InitializeControls() Protected MustOverride Sub InitializeEventHandlers() Protected MustOverride Sub ActionEvent(sender As Object, e As EventArgs) End Class
It's basically just an abstraction of a tab page with some added event handlers and control initialization functions to make it easier to define tabpages which are useful for the client.
My question is simple: What are my options for connecting the information held in the database (an integer or string) with this class. I want to avoid instantiating all of them but only using a few of them so my goal is to create them on the fly based off of what is laid out in the database. (If this process ID then these actions are available). At that point I want to be able to instantiate them by actionID (or by ActionName)
I haven't googled yet, but that's what I'll be doing throughout the day, I just like to post my questions here first to see if you guys can point me in the right direction.
To clarify the question one more time: Is it possible to associate an integer or string with an object and tell my program what it should do if it is presented with a sequence of ActionID's {0, 1, 2}
Like for each action in ActionID's instantiate the object with actionID of action
I'm thinking maybe an enumeration?
Some kind of array?
On to google!
I'll get back to you guys.