2 Structures Using Eachother?
May 14, 2011
Structure TextureStruct
Dim unk1 As ULong 'always 0x70007
Dim unk2 As ULong 'always 0x70007
Dim unk3 As ULong 'always 0x70007
Dim unk4 As ULong 'always 0x70007
Dim unk5 As ULong 'always 0x70007
Dim unk6 As ULong 'always 0x70007
[Code]...
View 4 Replies
ADVERTISEMENT
Jan 20, 2009
I have a structure called 'Scheme' and in my program I want (ideally) an ArrayList of 'Schemes' (so i can add, remove schemes etc.). However, within the 'Scheme' structure, I want to have an ArrayList of 'Item''Item' is another structure. Are there any solutions out there for iterating through these arrays quite easily?
How can I easily add multiple Items to a Scheme and mutliple Schemes to my Scheme array. Code is below. When I try to add Items to a Scheme, I get the 'Object not set to a reference of an object, try the 'New' keyword', but you cannot declare 'New' keywork within a structure.
[Code]...
View 4 Replies
Jan 12, 2011
vb program to append two pdf files together into one? I have invoices that are created as pdf files and I need to append a special announcement also a pdf to the end of it so I can upload one file to the internet for customers to download and view.
View 4 Replies
Dec 25, 2009
I need to take six altitudes altitude1 and altitude2 and check to see if they are with in a value of 250 of each other. Then if there are any that are within 250 of each other, to make them turn red.
Second thing is:
I need to take 6 altitudes, and arrange them. I have them in panels and I have 6 empty panels as place holders for .location value however I need to know how to look at 6 values and say arrange these values accordingly highest number this place lowest number this place etc.
I have looked everywhere on the internet and maybe im just retarded when it comes to math in vb.net.
View 2 Replies
Mar 24, 2010
Is there any way to generate checksum for a dll from the main app (compiled) and the main app from the dll when I run the main app or something of this kind?
View 3 Replies
Nov 11, 2010
I am trying to figure out how to place controls on top of one another in html.For example. I am trying to place 2 labels on top of eachother. and also I am trying to place a text box under a dropdownList.
View 3 Replies
Jan 15, 2011
I have so far written a program where you click a button and a custom control is added to the form. These controls can then be dragged and positioned anywhere on the form.I know want to be able to align/snap these controls.
View 11 Replies
Aug 19, 2009
I have hex strings that I would like to write a regular expression for. Here are some example strings.
[Code]...
View 3 Replies
May 13, 2011
I've noticed that a class can "overload" a read-only property of its parent class, even though this isn't allowed within a class. I don't understand why this is allowed or what (if anything) it accomplishes.
[Code]...
The signature of mySubClass.SomeProp is identical to myClass.Prop—how can the former overload the latter?
In practice this seems to function just like Shadows, is that true?
View 1 Replies
Jun 2, 2010
I read in the Book "Mastering Microsoft Visual Basic 2008" about "User-Defined data types".The example given is creating a Structure as follows.I wanted to check that so I wrote all the code given; I used a TextBox and a Button for this.(I didn't include the "CheckDate" here; that is in the book)
Structure CheckRecord
Dim CheckNumber As Integer
[code]....
The problem is this does work.What I get is "00000". and I found out that the "Checks(4)" Array does hold any value ie: on keeping the cursor over that, it shows "CheckAmount 0.0, CheckNumber 0 , CheckPaidTo Nothing ".
View 1 Replies
Jul 20, 2009
I'm attempting to create a list of structures that contains a list of structures. I can't seem to figure out how to properly allocate the object for the inner list of structures. I expect the outer list of structures to have a couple thousand entries and the inner list of structures to be fairly small at 2 to 10. Both lists will grow over time but the number of elements within the inner list will be constant for an instance of the outer list. Meaning, if an instance of the outer list has 2000 entries each of those will have the same number of elements on the inner list, say 4 entries.
Here is a simplified code fragment. This fragment makes no attempt to create the instance of the inner list "StructBlist" since I can't figure out where to put it. Tried "New List(Of StructB)" in the declaration as well as "Alist(0).StructBlist = New List(Of StructB)" but neither works.
Public Class Form1
Structure StructA
Dim FieldA1 As Integer
[Code]....
View 5 Replies
Jun 1, 2012
Well im currently developing an application for public use, I have a login screen in which the user enter's their registered credential's and the progressbar loads by increments of 3, now i placed 6 labels ontop of eachother and where the progressbar coding is i put:
If Progressbar.Value >= 1 Then
Label3.Show()
If Progressbar.Value >= 20 Then
Label3.Hide()
Label4.show()
And so on up until Label8 Show at 100%,
Now the problem is... As i have placed the labels ontop of eachother i need them hidden until they are called to show, i have tried adding a background worker to do this but have had no luck, all i see is the labels overlapping eachother when i run my application when i want them hidden untill Label3.Show() is called, and then to display them as they are called and hide them when another one is called to show...
View 3 Replies
Mar 28, 2010
What is the different between these 2 structures?
Structure INPUT
Public dwType As InputType
Public mi As MOUSEINPUT
Public ki As KEYBDINPUT
End Structure
[Code]...
View 1 Replies
Jun 5, 2010
Is it possible to declare a new list inside a structure.
I'm trying to get a list of structures that each contain a list of points,
but when i try to declare a new list inside the structure VB says "keyword not valid as an identifier"
View 2 Replies
May 24, 2009
I'm currently doing this project where i have to create a program that let's the administrator manage students (and their tests.) I have decided to use Random Access file in this project.because structures will need fixed lengths...i don't know how will i search through the students (a function of the program) when each student structure has a different length because of the number of tests they've done.* I have created a variable in the aStudent structure so that i can know the number of tests a student has done...but don't know how to use it.
Public Class FormAdmin
Dim currentStudentName As String
Dim currentStudentID As Integer = 0
[code]....
View 3 Replies
Jun 18, 2011
I have created a structure as below. I want the structure to be an array...so I can use a call like picks(1).a or picks.a(1) = blah blah. I don't understand how to use an array of a structure..
Public Structure apicks
Dim a As String
Dim b As String
End Structure
View 3 Replies
Mar 8, 2010
I have been trying to read the cd toc in one go from the API, I can read it OK with a single byte array, but I can't find a way to fill the formatted arrays
Code:
'ORIGINAL STRUCTS
'MAXIMUM_NUMBER_TRACKS = 99
'typedef struct _CDROM_TOC {
' UCHAR Length[2];
[code].....
View 2 Replies
May 22, 2011
what is the best way to add, delete elements from arrays of structures structure
vb
Structure Proxy
Dim Server As String
[Code].....
View 7 Replies
Jan 21, 2010
I am currently working on a project for myself which looks through employee's information to find their availability to work. I've tried making a structure which holds the employee's information but I can't think of a good way to create different instances of it and store information in it at runtime. I'd prefer to load the information in at startup and not have to declare each employee and information. I am very new to Visual Basic 2008 but I have a good grasp of arrays from C and C++.
View 3 Replies
Oct 23, 2010
I know that Structures are value types and classes are reference type, i know that since structures are stored in stack they are faster to use i also understands that structures can not use the Inheritance concept but still in most examples i see i always see that the authors use classes when building something like BBL library, if structures is light-weight compare to classes and i don't need it to be inherited should i use structure instead of class?is there a rule of when to use class and when to use structure ?
View 2 Replies
May 1, 2012
lets say its something like[code]...
i want to add a function like this inside the structure
View 2 Replies
Nov 7, 2009
I have a Structure, and I am having trouble initialising it. Specifically when I try to populate the Vector3 variables, it tells me that they are Nothing, so I need to make them New when the array of this structure is declared.[code]Structures cannot declare a non-shared 'Sub New' with no parameters.I have no parameter to supply, and this will be an array so I'm not even sure how I would supply it.The second option to fix the error is to make the Sub New shared, but then I get other errors: Cannot refer to an instance member of a class from within a shared method or shared member initializer without an explicit instance of the class.Does anyone know how I can resolve this. My end goal is to have an array of this structure type with the Vector3s ready to use.
View 6 Replies
Mar 10, 2009
I have created a collection of structures. Each structure, of course, contains fields.
Lets say something like:
Public Structure clientStructure
Public ID As String
Public firstName As String
[Code]....
How can I access a field of a particular structure using for.... each?
That is, how can I retrieve out of the collection (lets say item 5's) firstName, using for...each?
View 2 Replies
Sep 1, 2009
Can a list class in vb.net contain Data Structures ?
View 1 Replies
Jul 26, 2009
Just a little frustrated with a simple error in a listbox result on a mobile application.Here is a sample of the results I should be getting:
The inputs are 50mph & 4.5 hours
Hour distance
1 50
[code].....
View 1 Replies
Feb 21, 2012
I need to have an Array of UDTs(Structures). Elements have to be added (at end) and removed (from anywhere). The different values of the elements need to be changeable.
I know how to implement it as an oldstyle array, but wouldn't it be better to implement as a List ( of T)? and if yes is such a procedure possible?[code...]
View 8 Replies
Mar 16, 2011
It says that I can't have structures as optional arguments.That's really annoying for my program. Isn't there any way to circumvent this?
Sub fa(Optional ByVal colz As System.Drawing.Color = Color.AliceBlue)
End Sub
This example cannot compile
View 14 Replies
Aug 4, 2011
I have an interface IDigitalState defined as
Public Interface IDigitalState
ReadOnly Property Code As Integer
ReadOnly Property Name As String
End Interface
[Code]....
What I wanted to do was declare a variable as a nullable type of IDigitalState. I understand why I cant do this because the interface may be implemented by a class which is not allowed to be nullable. Is there a way to define the interface so that it can only be implemented by a structure.
View 2 Replies
May 31, 2011
I have 2 Structures
Public Structure One
Public ItemOne As String
Public ItemTwo As Integer
End Structure
[Code]...
Results In an Unhandled exception. Bad Record Length. and then If I close it and reopen it I get an 'Unable to read beyond end of stream' error. So what is the best way to save an array of structures? Binary Reader/Writer? and why does this way not work (Even if its derived from VB6)
View 2 Replies
Jan 29, 2011
The following is a mini version of a data structure that I need to be able to write & save to disk. Can someone give me a sample of code needed to do this
Public CardType
Card(0 to 52) as Integer
Suit(0 to 52) as Integer
[code]....
View 2 Replies