Populate A List(Of Object) In A Class Method, Where The List Was Passed To The Method As A Parameter
Aug 13, 2011
I'm trying to code a class of RandomNumber. One of the class methods needs to populate a "List (Of RandomNumber)" ... which was passed as a parameter to the method ... with 10 random numbers between 1 and 50. DEAD SIMPLE :)
View 6 Replies
ADVERTISEMENT
Apr 12, 2010
I have implemented inheritance for two parent classes called Table and Field. Each parent class has several child classes. In the Table parent class, I created a method that expects parameter List(Of Field).
I get an error when trying to pass in parameter List(Of ChildField) to the method that expects a parameter of List(Of Field). The error message is as below:
Value of type
'System.Collections.Generic.List(Of
com.hlb.icisbatch.data.ChildField)'
[Code]....
View 2 Replies
Mar 23, 2011
Public Class notifierMain
Public Class Contacts
Inherits List(Of row)
Public Sub New()
[code]....
When I debug this winforms application I get curType = "notifier.notifierMain+Contacts+row" I want to the Validate function to know it is in MyContacts. How do I do this?
View 3 Replies
Mar 1, 2009
I have a method which requires a parameter to be passed in. I would like to use the Addhandler to call the method through a dynamically created button control's click event.
When I include () in the AddressOf, VS complains: 'AddressOf' operand must be the name of a method (without parentheses).
When I exclude the brackets, VS complains: Method '...' does not have a signature compatible with delegate...
My code:
CODE:
View 5 Replies
Feb 15, 2011
Given a list of objects, I'd like to print a string version of them just in case the object.ToString() result is a relevant string.By that I mean I don't want to get things like:
obj.ToString() -> System.Collections.Generic.List`1[MyLib.Dude]
obj.ToString() -> System.Collections.Generic.Dictionary`2[System.Int32,System.DateTime]
obj.ToString() -> System.Byte[]
But I want to get things like:
obj.ToString() -> Hi
obj.ToString() -> 129847.123
obj.ToString() -> Id = 123
What should be the best way to implement this in a method:
Public Sub PrintInterestingStuffOnly(ByVal coolList as Ilist(Of Object))
For Each obj in coolList
'insert solution here
[code].....
View 3 Replies
Jul 27, 2010
I need to create a remoteable object with a method that sums up elements in an array list. How do i go about it?
View 1 Replies
Feb 10, 2012
I save the client data into an array list. How to find part of data(currentIP) inside the array list(clientList) with fast method? [code]
View 1 Replies
Sep 17, 2009
Does anyone know how to get my class name and method name dropdown lists again? It's the dropdown lists that are usually above the code. It's just a setting but i can't seem to find it. I don't want to reset my setting btw. I shouldn't have to.
View 2 Replies
Aug 2, 2010
Let say I have a function inside a class which require 4 parameter (table name,field name,field value, return field) When I use this function my form, such as
myclass.Search("customers", <-- after pressing the "," a popup list will be displayed that contain all the fields in "customers" table.
View 19 Replies
Oct 19, 2010
Consider a MyForm class that contains a shadowed implementation of Show(). It also contains a CreateForm() method, which accepts an instance of the form and calls the shadowed sub:
[Code]....
View 3 Replies
Feb 14, 2011
say I have two POCOs I'm using in EF code first
Public class C1
property F1 as integer
End Class
Public class C2
property F2 as String
End Class
I want to have a function that will create a list either of C1 or C2, to be used in some generic operation, such that
[Code]...
View 1 Replies
Oct 19, 2011
I would like to catch any exceptions from any method in a class so that I may record class specific data to the exception for logging before it is passed up the stack. I know that I can put a try-catch in every method of the class, but there are many methods and It seems there should be a more efficient way. Example of what I am currently doing:
public class ClassA
{
private int x;
[code].....
View 2 Replies
Dec 23, 2010
I have a method/sub that takes an object as a parameter, then it scans through a panels controls and trys to find if it is in the window.
Public Sub removetype (ByVal findobject As Object)
Dim types As System.Type = findobject.GetType
For Each ThisCtrl In Flow.Controls 'flow is a panel
[Code]......
View 3 Replies
Apr 21, 2010
Is it accepted to have a method parameter named the same as a property? At least it gives no error, even if in the same letter-case.. How does the compiler distinguish? does it always prioritize the local parameter?
[Code]...
View 4 Replies
Aug 25, 2010
I'm currently working on being able to import a DLL written in Fortran into Visual Basic. I've got all the basics down, so now I'm trying to take it a step further. The title basically says it all, but I'll explain what it is I'm trying to do anyways.
For kicks and giggles, let's just assume I want to pass an object that has three double values in it, possibly representing a point in space in three dimensions. In my Fortran method, I want to take that object, print out the x value, then change the x value to 7.5. Here's my Fortran code that does just that.[code]...
View 2 Replies
Jan 4, 2012
I am trying to get a methods name and add it to a list. I had a look around and came across actions. So far I have the following:
Protected Function MethodToString(method As Action) As String
Return method.Method.Name
End Function
...
Me.Stages.Add(MethodToString(GetWeightFromSID()))
but it does not work when called as it says expression do not produce a value.
View 2 Replies
Feb 16, 2010
I will try to explain what I need.Let's say that I have a class like this:
Public Class Example1 Public Sub ToBeCalled()
[Code]...
View 5 Replies
Feb 4, 2011
Is there a way to choose between different methods and pass one into another method ?
Sub conditionnal_binding(ByVal list_box_reference As ListBox, ByVal list_box_final As ListBox, _
ByVal dico_source As Dictionary(Of String, List(Of String)), _
ByVal my_methode As ??? )
' DO SOMETHING
End Sub
I wrote ??? because I don't know how to call another method inside a method.
I would like to choose between different "sub-methods". Here is how I would like to use my method :
conditionnal_binding(ListBox1, ListBox3, HTML.dico_basic_attribut, best_method)
conditionnal_binding(ListBox1, ListBox3, HTML.dico_basic_attribut, some_method)
conditionnal_binding(ListBox1, ListBox3, HTML.dico_basic_attribut, another_method)
View 5 Replies
Jan 2, 2010
I have a data structure (which is a class) called user_class and I want to load all the users data from a database.Currently I have
While SQLreader.Read()
Hold_user.username = SQLreader(0)
Hold_user.BlahBlahBlah = SQLreader(1)
[code]....
Where return_value is a List of user_class and hold_user is an instance of the same class.
Dim return_value As New List(Of user_class)
Dim Hold_user As New user_class
As the while statement loops through the read data, SQLreader(0),(1) and (2) are updated with new data, however they also appear to be updating the stored values held in return_value....
View 2 Replies
Feb 20, 2012
I am using the HtmlElement's InvokeMember function and was wondering if there is a nicely formatted list of all the strings that can be passed into that function.So far I know about these strings that can be passed into InvokeMember:Click, Focus provide a link to a list of all strings that can be passed into the InvokeMember function or write them down?
View 1 Replies
Feb 22, 2011
I hate to see the name of the class used as a string parameter like "FileDownloader" in the code, and I would like to use something like this FileDownloader.Name(), where FileDownloader is name of the class.Only problem is that I can't find out how to do that without instantiating object or creating a static method..Is there a way to get a class name in .net without having the object instance and without creating a static method that returns the name of the class?
View 4 Replies
Mar 23, 2012
I want to pass a List of T where T is an object I've created that has about ten properties (strings, dates and integers).The lst passes to the function successfully. I am also passing an New T of the Object (itm as T).I can see all the values (see image below), but because it's generic I cannot seem to retrieve the property values and I cannot figure out how to iterate through the properties of each itm as they are retrieved in the For Each.[code]
View 10 Replies
Apr 7, 2009
I've got a simple function that takes a List parameter. While working with it, it copies it and reverses the copy using .NET's List(Of T).Reverse method.
[Code]...
View 6 Replies
Jun 7, 2009
I have a class myClass. MyClass has a property myName. I have a generic list myList(of myClass). I have to check if value of myName in all myClass objects in myList is same and is equal to a string myString. I have created a method:
Private Function IsMatching(ByVal objMyClass As MyClass, ByVal strMyString As String) As Boolean
If objMyClass.MyName = strMyString Then
Return True
Else
Return False
End If
End Function
Now I want to use is TrueForAll method of Generic list. How can I use it ?
If there was No second Parameter in IsMatching method, I could have simply used
myList.TrueForAll(AddressOf IsMatching)
But since there is a parameter strMyString, I dont understand how can I use IsTrueForAll method. How can I use IsTrueForAll method in this scenario.
View 2 Replies
Nov 1, 2009
I am probably not even saying it correctly when I pose the question.
I have this simple class (starting out)
Public Class Players
Public Name As String
Public Sub New(ByVal name As String)
[Code]....
I'd like to be able to use players globaly thru-out the project. So if I navigate away from the form that created it. I can access it again.
Dim players As List(Of Players) = New List(Of Players)
View 7 Replies
Oct 22, 2009
I want a string and a listbox, both which are in a form to be modified by an instance of a class method. Should (could I):
1. Pass the entire form to the class method as parameter.
2. Pass the listbox and the string to the method as parameters.
What's the best approach to get access and modify this string and listbox on the form.
View 3 Replies
Mar 7, 2011
I want to search particular item in Binding Source for which i use BindingSource.Find() method, but it throws an exception "This operation requires an IBindingList". My binding source is bind to a .net class object.. I searched over the internet, but could not find the clear solution to achieve this task. The sample class code is given below:
Imports System.ComponentModel
Public Class Department
Private _code As Long
[Code].....
View 1 Replies
Jan 4, 2012
trying to write an updateview method to basically clear the contents of the current listbox and then loop through a list of objects and pass 2 items from each of the objects in the list into the listbox.This is what I have so far
vb.net
Public Sub updateview()
holidaylistbox.items.clear()
[code].....
View 4 Replies
Aug 4, 2011
i have these 3 sets of code that are giving me INT() errors. Error: Expression is not an array or a method, and cannot have an argument list.
Code1:
Private Sub Form6_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Dim Browser As New WebBrowser
[code]....
View 2 Replies
Aug 14, 2011
When ListView is not in Virtual mode the following method seems to be the fast method to load a large list into ListView:
Dim items As New List(Of ListViewItem)
Dim alllines as String()=System.IO.File.ReadAllLines("FilePath")
For each line as string in alllines
Dim item As New ListViewItem
item.Text = line
items.Add(item)
Next
ListView1.Items.AddRange(items.ToArray())
View 2 Replies