Use Nullable(of T) For Property Using List<of T>?

Jan 17, 2012

In the below sample code, I have tried to use Nullable(of T) for DateTime and I want to use it same of the Dimensions property which is List(of Dimension).

CODE:

View 1 Replies


ADVERTISEMENT

Property Keycode Is Non-nullable?

Apr 7, 2009

I am creating a setup project for my VB application. Everything seems to look fine. However when I tell it to build the solution I get the following error:Property 'keycode' is non-nullable. I have never seen this before in other setup projects and I can't find any help from MS.

View 8 Replies

Nullable(Of Double) Property Turns Nothing Into 0.0?

Mar 5, 2009

I was under the impression that any time I set a Nullable(Of Something) to Nothing, it will take the value of Nothing.In a class, I have;

Private _something As Nullable(Of Double)
Public Property Something() As Nullable(Of Double)
Get
Return _something
End Get

[Code]...

In my page, using this class I set Something = Nothing, but as I step into the Set method, value = 0.0.Am I doing something wrong here? Or do I just not understand Nullable types yet?

View 4 Replies

VS 2008 Nullable Property Question?

Feb 16, 2011

I have Nullable properties in my class:Public Property FileStatusID() As Integer?

Get
Return m_FileStatusID
End Get

[code].....

View 7 Replies

Build Error - Property Keycode Is Non Nullable

Jul 4, 2005

I tried to build my project but it has 1 build error
:Property 'Keycode' is non-nullable.
I double click it but it points nowhere. I'm really desperate. My project consists of Crystal Report. It had just been upgraded from version 8.5 to version 11. Is it possible that this is the source of error?

View 5 Replies

Invoke HasValue On A Nullable Property Of An Object Via Reflection?

Sep 15, 2010

This function loops all properties of an object to create the updatequery to save te object to the DB.

We had to make some changes to it because of the introduction of nullable properties. If the property is nullable we would like to check the 'HasValue' property. This does works when it has a value. When the property has no value we get an 'Non-static method requires a target'-error at the CBool-line

An other way to check the 'HasValue'-prop of a property using reflection?

Private Function GetUpdateQuery(ByVal obj As Object, ByRef params As List(Of SqlParameter), Optional ByVal excl As String() = Nothing) As String
Dim sql As String = String.Empty

[Code].....

View 1 Replies

Nullable Property - Set Code That Execute In The Case Of The Value Being Null

Sep 17, 2010

[Code] Now the problem is that after i put this user-control in a form, I have to set a value for the Handled file. Otherwise it gives me a value cannot be null exception. Is there a way that i can set code that would execute in the case of the value being null? [Code]

View 14 Replies

Set Nullable Property In Program Like "public Decimal?

Dec 17, 2011

How to set Nullable Property in vb.net like "public decimal? unitprice {get; set;}"

View 2 Replies

Why Won't A Nullable Public Property In A Class Accept 0 (zero) As Assignment

Apr 17, 2009

I have a nullable public property on a class using Vb.net 3.5:

Public Property TicketCharge() As Nullable(Of Decimal)
Get
If _TicketCharge = Nothing Then

[code]....

View 4 Replies

.net - CLR FormatException Thrown When Databinding An Int32 Field To A Nullable Decimal Property?

May 28, 2012

I have written a .Net 4.0 Winforms Numeric Editor control (which inherits from TextBox), and I have added a Value property that is a nullable decimal type, as follows:

Public Class NumericEditor
Inherits TextBox
Private _value As Decimal? = Nothing

[code]....

how to get around this exception, particularly when I'm databinding a number field to a number property, and there should be no string conversion happening. (To further complicate things, I'm using a similar technique for another control where I databind a DateTime field to a nullable DateTime property, and that control works just fine.)

View 1 Replies

OrderBy Nullable Properties In A Generic List Throwing InvalidCastException?

Jun 13, 2012

I need to return an a generic list in the correct order for my project, and I'm getting InvalidCastException errors. Here is the code:

Dim lDt As List(Of Comment) = RemapCommentsForE1(so.CommentList). _
OrderBy(Function(x) x.CreateDate.Value). _
ThenBy(Function(x) x.Sequence). _

[code].....

View 2 Replies

IDE :: Make A Property In A Property Grid A List Box In 2010?

Feb 21, 2011

I have the following property in a property grid in VB.Net 2010.

<Description("Rapid Entry Post Car Wash Settings CarWashOptionPushButtons"), _
Category("Post Car Wash")> _
Public Property CarWashOptionPushButtons() As String

[code]....

I need to make this property a list box that gets the values from a database table and populates the list box with the values from the table. I have tried numerous things to no avail.

View 4 Replies

Determine If Property Is Generic List<of T> Via Reflection And Loop List Items

Oct 1, 2009

I'm looping all the properties in an object via reflection:

For Each p As PropertyInfo In values.[GetType]().GetProperties()
If p.CanRead Then
'Do stuff
End If
Next

how to determine whether the property in question is a generic List(Of T)? If it is I need to loop the list itself.

I've experimented with GetType and TypeOf but have not managed to get anything working.

To clarify, I want to keep this generic. I do not want to specify the type of T, I need to loop the list items and call the ToString method on each item. T could be one of a number of different types (application specific reference types). Is it possible to do this without specifying types?

(VB.NET 2005 with .Net 2.0)

View 3 Replies

.net - List.Contains Based On A Property Of A List Item?

Jan 11, 2011

I have a List myList of MyObjects. Is it possible to check if myList contains a particular myObject based on a property of myObject in VB.NET? In C#, you'd something similar to this right:

myList.Exists(myObject => myObject.property1 == 3)

View 2 Replies

List Of T Find Date Or Other Property In A Object In The List - Then Return Found Object?

Sep 3, 2009

After reading all the examples for list of T exists and Find and find first, none show how to handle multi-property objects. Below is bare bones example maybe someone could flesh out to show how this should be done.

Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim DatePriceList As New List(Of DateAndPrice)
DatePriceList.Add(New DateAndPrice(Date.Parse("1/1/2000"), 10.12))
DatePriceList.Add(New DateAndPrice(Date.Parse("1/2/2000"), 11.12))

[Code]...

View 3 Replies

List As A Property?

Nov 24, 2009

I have a class with a property that is a list. Within the Set portion of the property I want to run some code, however the problem is that the code is not executed when the list is modified with something such as List.Add, List.Remove, etc.

View 2 Replies

.net - Get A Class Property To Be A List Array?

Oct 14, 2009

Stack Overflowers:I have been racking my brain trying to get an List(of T) type array to be the property of a class. I know there has to be a simple way of doing it and I can't find a good example on google. Everytime I create a class that I think will work I get the "Object reference not set to an instance of an object" error when I try to use it. My thinking now is that I cannot use it in the way I was hoping to. Here is my latest attempt:

Public Class Item
Private _itemno As String
Public Property ItemNo() As String
Get

[code]....

View 2 Replies

Asp.net List Of Users By Profile Property?

Oct 10, 2011

I have created some profile properties for when a new user is added to our system.

One property is called 'Client' and links this user to a particular client and stores a client id.

I am trying to create a page that shows a list of users for each client on the system such as:

Client 1
User 1
User 2

[Code].....

Is there a way to get a list of users that match a particular profile property?

View 2 Replies

Continuation Of A List (of T) As A Property Of A Class

Apr 2, 2010

This is another continuation of an issue with a List(of T) as a property of a class.Following the excellent advice of AtmaWeapon and others on this forum, I have my classes working fine except for something that is inexplicable to me.I initialize my "course" class at a public level in a module. This is so the data in the class will be available program wide and for the application's lifetime. "Public newCourse As New Course".I initialize a local instantiation of the class TimeTable as newTimeTable [code] This issue is: The List(of T) is populated with data, however, when the loop finishes, what I have is the last set of values repeated "X" number of times in the List instead of the data being different in each element of List( Of T). [code]

View 2 Replies

Find An Object With A Given Property Value From A List?

Oct 8, 2010

This Questions has properties QuestionID and QuestionAnswer. While iterating through this List of Question in foreach, I have to find .QuestionID = 12. If I find .QuestionID = 12 then I have to immediately assign a value to .QuestionAnswer = "SomeText" of .QuestionID = 14.

I don't want iterate again inside .QuestionId = 12' to find.QuestionID = 14` again.

Is there any way I can go directly to .QuestionID = 14 using LINQ?[code]...

View 4 Replies

Find List Index For A Given Property Value?

Aug 15, 2011

Ive got two lists (each representing a table in a DB, so they are related). lstTransaction has t_id, date, and cust_id. lstCustomer has Name, and cust_id.For each item in lstTransaction Id like to find the index in lstCustomer where lstCustomer.cust_id = lstTransaction.cust_id.

View 5 Replies

Pass A List Through The PreviousPage Property?

Oct 24, 2011

I'm trying to pass some values to another page and I have the values in List (Of String). However, I'm getting an error (at design-time in the IDE) saying: There is no member "X" of System.Web.UI.Page. I was able to get the Property through Intellisense. So I'm not sure why I'm getting the error.

Here's the code:

[code]...

View 2 Replies

Sort List Of Class Using Id Property?

Oct 8, 2010

I have a class called Questions. This Questions has properties QuestionID and QuestionAnswer. My list of Questions has QuestionID like 2, 3,4, 15, 12, 24,22,,,, etc.I need to sort this List of Questions Object based on QuestionID and store in another Questions object.

View 2 Replies

Why Does List.Clear() Also Get Rid Of A Class Property

Oct 4, 2011

I have the following class:

[Code]...

I could be way off here, but it almost seems like ID.IDlist points to the address of mylist and so when mylist is cleared so is ID.Idlist. It seems as though the reason the second block of code works is because I am creating a new list in memory for each ID object and ID.IDlist just points to it... is that right?

View 2 Replies

Pass A Nullable Valuetype Into A Non Nullable Valuetype?

Sep 17, 2009

I accidently wrote some code today that was like this[code]...

I immediately noticed the issue, but I had already hit the run button. It compiled successfully, I ran it through to the section and it threw an exception.

You can't do this in C#, it gives a compile error "cannot convert from 'int?' to 'int'".

Is there an 'Option Explicit' type switch that I can turn on to ensure that this sort of error does not occur again?

View 1 Replies

.net - Modifiy Item Property In List(of Structure)?

Jan 7, 2012

In a list(of structure), i constantly have to modifiy the property of items using this code

Private Sub ChangeState(ByVal ww As WebWorker, _
ByVal NewState As WorkerState)
Dim oWBB As WebWorker = ListWebWorkers.Find(Function(item As WebWorker) item.Browser.Name.ToLower = [code].....

But this give problem when two or more of the items call this sub procedure. in that one item may already have been removed. This code is executed in the ui thread, and has to be.so is there a better way to modify the items in list structure?

View 2 Replies

Checked List Box With Data Value Property For Each Item?

Apr 12, 2011

Does anyone know of a control such as a Checked List Box where each item can have a value against it.For example you have a list of fruits and in the listbox it displays Apple, Orange & Banana but the values for those items are A, O & B.

View 3 Replies

JavaScript - RadioButton List OnClientClick Property

Apr 27, 2010

I've noticed there is no OnClientClick() property for the radiobuttonlist in the ASP.NET control set. Is this a purposeful omissiong on Microsoft's part? Anyway, I've tried to add OnClick to the radio button list like so:

For Each li As ListItem In rblSearch.Items
li.Attributes.Add("OnClick", "javascript:alert('jon');")
Next

But alas, it doesn't work. I've even checked the source in firebug, and there is no javascript shown in the radiobuttonlist. I'm using ASP.NET control adapters so don't know if that has anything to do with it. (I wish asp.net/javascript would just work out the box!!!)

View 4 Replies

Update Property Of Object In List In ForEach?

Apr 2, 2011

I have a List(Of SomeObject) that I enumerate over using a For Each loop. This SomeObject contains a Property that references another Object, as such

Class SomeObject
Public Property Another As AnotherObject
Get

[Code]....

If not, what is a valid way to do it? (ordinary for loop perhaps?)

View 1 Replies

VS 2010 : Make A List Items Property?

Nov 23, 2011

how to create a property like this:[URL]

View 7 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved