delphi+Access
I try using TField.Required property, but it looks
work not right.
tanks!
http://www.experts-exchange.com/Programming/Languages/Pascal/Delphi/Q_20099725.html
Hi experts,
C# 2.0 comes with which version of .NetFrameWork. Tesing with .NetFrameWork 1.1, nullable type varialbe & code sample giving error. So pls tell me the solution that what is required ...
http://www.experts-exchange.com/Programming/Languages/C_Sharp/Q_21075150.html
Zones:
C#Date Answered: 08/03/2004 Rating: 8.2 Views: 0
hi,
what is the advantage to using nullable types over this sort of code other than length of code :)
string myValue = ((ud.Rows[0].ItemArray[1] == System.DBNull.Value) ? ...
http://www.experts-exchange.com/Programming/Languages/C_Sharp/Q_21955351.html
Zones:
C#Date Answered: 08/15/2006 Rating: 9.4 Views: 0
I am trying to take advantage of the nullable datetime introduced in C# 2005 to handle null datetime values I have in my database. here is my approach.
My "DB class" has the following property:
...
http://www.experts-exchange.com/Programming/Languages/C_Sharp/Q_22458231.html
hi
i am stuck in a very complex issue. my c# code is generating an xml file which i belive is not serialzed properly. on one node it has something like this (generated by c# code)
<MsaTxAlarmLeve...
http://www.experts-exchange.com/Programming/Languages/C_Sharp/Q_22678284.html
Zones:
C#,
.NET,
XMLDate Answered: 07/18/2007 Rating: 5.8 Views: 0
I've using ADO in VB to create a new table in an existing database. By default the new fields are all set to not nullable. No matter what I've tried I can't seem to set this to Is Nullable.
He...
http://www.experts-exchange.com/Programming/Languages/Visual_Basic/VB_DB/Q_20861204.html
Zones:
VB DBDate Answered: 01/26/2004 Rating: 6.4 Views: 0
Hi
I have this code to store an integer as a property. It's an asp.net page but i'm sure you vb.net experts can handle a littel viewstate.
I used this approach because i wanted to be able to ...
http://www.experts-exchange.com/Programming/Languages/.NET/Visual_Basic.NET/Q_21981465.htm...
Dim rs As ADODB.Recordset
Set rs = New ADODB.Recordset
rs.CursorLocation = adUseClient
rs.Fields.Append "iValue", adInteger
...
rs.Open
rs.AddNew
rs.Fields("iValue")...
http://www.experts-exchange.com/Programming/Languages/Visual_Basic/Q_21990945.html
Zones:
Visual BasicDate Answered: 09/15/2006 Rating: 9.6 Views: 0
Hi
I have a business entity which has a property called startTime which has type nullable (of Date)
i'm doing this:
lblDate.Text = String.Format("ddd, dd MMM", pv.StartTime)
but its ju...
http://www.experts-exchange.com/Programming/Languages/.NET/Visual_Basic.NET/Q_22008767.htm...
Try as I might, I cannot figure out how nullable values work.
In my class definition I declare my variable like this:
protected DateTime? extDate;
public DateTime? ExtDate
{
...
http://www.experts-exchange.com/Programming/Languages/.NET/ASP.NET/Q_22800131.html