Create A List Of List In That Would Like To Work On Multiple Accounts At Same Time
Oct 24, 2011
i am trying to create a list of list in that i would like to work on multiple accounts at the same time. lets say i have 5 accounts. every account has a seperate name. each account has a few fields. so i though of having a list of bookkeeping (with 5 accounts) and a list of accounts (with expense, income, tax, status, etc as fields). [code] and if the idea of using list of list works how do i loop through both lists.
View 6 Replies
ADVERTISEMENT
May 13, 2010
VB 2010 express. I have a situation where I want to create multiple list(of string), in a sub routine during run-time, where the list is available to other subs and functions in the same module, either to populate, edit or delete. The quantity of lists, names of the lists and their capacity will not be known until run-time. What would be the method and syntax for doing this?
View 3 Replies
Jun 7, 2011
I am trying to create a list that will add information each time someone submits the form. I keep getting the error:Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index..I know I am getting the values passed from the Class since I can output it to a message box. But when I try to create the index it crashes every time.[code]
View 1 Replies
Jul 26, 2009
Is there anyway to return a list of all user accounts on a PC running windows vista business edition using VB2008?I am trying to integrate a type of security in my application using what it already implemented in windows.
View 8 Replies
May 14, 2009
II am trying to create a toggle button that switches a list to a range and then back to a list if needed. I am able to get it to do both but when I add an item to the list, convert to a range and then convert back to a list it leaves off the last items I entered.I tried to work in a code to select all cells but I must not be putting it in the right place.This is what I have so far:
ActiveSheet.ListObjects.Add(xlSrcRange, Range("$A$3:$AE$7"), , xlYes).Name = _
"List1"
I realize the problem is the $AE$7 (the $A$3 is correct)
View 1 Replies
Jun 2, 2011
I would like to create list of child objects from list of parent object. Like If i have list of bookingroom which has one member room then i would like to create list of room from it.
eg. code:
Dim BookingRoomList As List(Of BookingRoom) = New List(Of BookingRoom)
Dim RoomList As List(Of Room) = New List(Of Room)
BookingRoomList = BookingRooms.FillGrid()
[Code]....
Is there any short cut method instead of iterating over for earch?
View 1 Replies
Oct 26, 2011
This is probably a really basic question - but I have a list of items (custom objects) being passed from one winform (.net 3.5) to another. I want to create a local list to store changes that only get persisted if the user clicks save. Currently if the user clicks cancel - the changes are still applied in the first form because I assume the objects are reference type.I have the save working as it calls a service layer to do the save and then refreshes the other form - but not the cancel.
View 1 Replies
Oct 24, 2011
I am trying to create a program which will allow users to select multiple files from a list and then burn them all to a playable DVD. It would be wonderful if i could setup a custom menu programatically as well. I have seen some documentation on Imapi 2.0 but i have not been able to find too much suppoert for it. I have also found a few SDK's out there but most are over $1000 which just isnt in the budget.
1) Is there a library included in windows 7 that will allow me to do this.
2) Is there an inexpensive or open source sdk with good documentation out there to do this with
View 4 Replies
Jun 1, 2011
How can I get a new distinct list from an existing list using LINQ? This is what I have so far and it is not distinct but does give me a new list.
Dim tmpQryColumn = (From a In _allAudits
Select New CheckBoxListItem
With {.Id = a.AuditColumn, .Name = a.AuditColumn}
).Distinct()
_columnList = New List(Of CheckBoxListItem)(tmpQryColumn)
View 2 Replies
Mar 12, 2010
How can I get a new distinct list from an existing list using LINQ? This is what I have so far and it is not distinct but does give me a new list.
Dim tmpQryColumn = (From a In _allAudits
Select New CheckBoxListItem
With {.Id = a.AuditColumn, .Name = a.AuditColumn}
[code]......
View 2 Replies
Nov 23, 2011
I'm trying to create a list of days(integer) from a list of dates(date).
I tryed to do this....
[Code]...
View 4 Replies
Jan 20, 2011
If I create a list for a TextBox:
[Code]....
I am able to only add controls that are of type TextBox. My question to you is, can I create a List to hold more than one control type or do I have to create a list for each control type?
View 8 Replies
Dec 15, 2009
I have a variable declared as...
Dim MyList as List(Of String)
I would like to create an array of these lists of string.
Something like....
[code].....
View 14 Replies
Jun 22, 2010
The idea with this form is to add the futures which is calculated when the button is pushed but I need the list to update every time and show the values each time to which the previous value is added to the new calculation, e.g. of what it should look like in listbox:
Year 1: $1,290.93
Year 2: $2,724.32
Year 3: $4,350.76
etc....
I have been working on this a while and I am at a standstill, I was given a function to clear the form everytime it calculates but I don't know how to implement it, I am new to VB. Here is what I have so far:
Public Class frmFutureValue
Private Sub btnCalculate_Click(ByVal sender As System.Object, _
ByVal e As System.EventArgs) Handles btnCalculate.Click
[code]....
View 7 Replies
May 14, 2009
i am trying to put the contents of a listbox into an array using listcount so i can sort and manipulate the data in the listbox using linq. Everytime I try to use list**** it errors and tells me that listcount is not a member of systems.windows.forms.listbox It also gives this error or list. Here is the for loop i am trying to use to put the data into the array.
[code]
For i = 0 To displayListBox1.Listcount - 1
sorting(i) = displayListBox1.list(i)
Next
[code]
i dim'd i as an integer and sorting() as a string early in the program as class level variables. displayListBox1 is the name of the listbx containing the data I need to use in my LINQ inquiry.
View 2 Replies
Feb 15, 2012
I'm trying to learn how to work with Collections list. In the past, if I wanted to create a list I would use an array and then save it to a text file after I was done manipulating the data via CSV.how to save things of different types to a list such as:
Name, Birthdate(as date), Salary
I know how to do this in an array but all the synapses aren't firing with the "new to me" collections list as collections lists are hard typed....
View 2 Replies
Nov 23, 2011
Public Class Item
Public Text As String
Public Value As Integer
End Class
[code]....
Why does this not work, where itms is a List(Of Item)?
Error event triggered on the line: Me.uxDropDown.DataBind()
DataBinding: 'Project.Item' does not contain a property with the name 'Text'.
View 1 Replies
May 26, 2011
So I am trying to code something in vb.net 2010 which will have a list box. For example:
1) Apple
2) Pizza
3) Juice
How would I display Line number 2 or any other to the user - I tried doing it with a label box like this Label1.Text = ListBox1.Text(2) - does not work.
View 2 Replies
Oct 31, 2011
I have 3 check boxes on a form and am trying to code them to change the font in combinations of Large Font,Bold Font, and underline font.I coded the bold font check box and large font check box but cannot get the Bold and large font to work at the same time.
View 5 Replies
Mar 13, 2012
Okay this is the simple thing I'm trying to accomplish. I can get richtextbox1 to add to listbox 1. but i cant get both to add. the compare works fine. I'm stumped.
View 3 Replies
Apr 29, 2012
Public Class MortgageDetailsCalculatorForm
Private Sub CalculateButton_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CalculateButton.Click
[code].....
View 14 Replies
Mar 10, 2011
I want to learn the code to load multiple accounts in to the program in the format "username:password" and have them auto sign in.
View 3 Replies
Oct 8, 2009
I am building help files for a program using HTML Help Workshop.I have been trying to manually add files to the project file list as I write them, as HHW doesn't do so automatically.But it doesn't seem to matter whether the files are included in the list or not.When I compile, it tells me if any are duplicated, but it doesn't tell me if any are missing.(I have deliberately removed some to see if it makes a difference, so it's not that I haven't left any out.) And, whether they are in the list or not, the compiled help seems to find the files it needs.What is this list of files for?What files need to be included in it - html, css, images, maps? Why doesn't it seem to matter if my files are included in it or not? Is there any way to add files to the list other than one at a time? (e.g specify an entire folder?
View 4 Replies
Dec 15, 2011
Every time I run my code my list city still visible at run time how do i make not to visible when I run my vb code. lstCity.Visible = False
View 1 Replies
Oct 13, 2010
I have List (of class). having 1800 of count and each object has 90 properties. When I terate earch with 90 properties taking more and more time. How to resolve this
Dim cellIntStyle As HSSFCellStyle = hssfworkbook.CreateCellStyle
cellIntStyle.DataFormat = HSSFDataFormat.GetBuiltinFormat("#")
Dim cellDateStyle As HSSFCellStyle = hssfworkbook.CreateCellStyle
[Code]....
View 4 Replies
Jan 23, 2009
how can i edit the list view in run time
View 1 Replies
Apr 5, 2011
I want to get two lists for system time formates and DateFormates
I am able to get current format
My.Computer.Info.InstalledUICulture.DateTimeFormat.ShortDatePattern
CType(My.Computer.Info.InstalledUICulture.DateTimeFormat.FirstDayOfWeek, System.DayOfWeek).ToString
but not found any way to get list of all formates used ..
View 1 Replies
Jan 7, 2010
I'm trying to create a program where a user has to login. However, I also want the user to create their own account and login with it whenever they want. For this I have 2 forms (frmLogin and frmCreateLogin).frmLogin has a username, a password and a login button, aswell as a linklabel connecting it to frmCreateLogin, here is the code for it:[code]I haven't added any code to frmCreateLogin because I don't know where to start. Can anyone nudge me in the right direction, as I have no idea how to code this.
View 13 Replies
Apr 1, 2011
I am using VB.NET and .NET framework 3.0I am currently sorting a list like this: lstPeople.Sort(Function(p1, p2) p1.LName.CompareTo(p2.LName))However, now I want to sort by FName as well after the LName. So it sorts first by last name and then by first name.
View 3 Replies
Apr 13, 2010
In c# I can initialize a List at creation time like var list = new List<String>() {"string1", "string2"};
[Code]...
View 2 Replies