Enter Keywords:
1 - 10 of 39(0.011 seconds)
Sort By:
 
delphi+Access I try using TField.Required property, but it looks work not right. tanks!
Zones: Delphi ProgrammingDate Answered: 12/16/2003 Rating: 7.4 Views: 0
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 ...
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) ? ...
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: ...
Zones: C#, ASP.Net ProgrammingDate Answered: 03/19/2007 Rating: 8.2 Views: 0
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...
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...
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 ...
Zones: MS Visual BasicDate Answered: 09/11/2006 Rating: 9.4 Views: 0
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")...
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...
Zones: MS Visual BasicDate Answered: 10/02/2006 Rating: 9.0 Views: 0
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     {     ...
Zones: ASP.Net Programming, C#Date Answered: 08/31/2007 Rating: 6.8 Views: 143