Click here to Skip to main content
15,918,333 members

Comments by Code_Observer (Top 12 by date)

Code_Observer 29-Jan-14 18:56pm View    
Thank you so much this actually worked. That was perfect my complete code is this now:


$(function () {
$("#newDepBirthDate").datepicker({
onClose: function() {
$("#newDepBecameDep").val($("#newDepBirthDate").val());
}
});
$("#newDepBecameDep").datepicker();
});
Code_Observer 15-Jan-14 19:31pm View    
I had Imports System.Linq under References in the project but it was missing from a VB file where I was calling a query.

Thank you.
Code_Observer 15-Jan-14 19:04pm View    
I have all these:
EntityFramework
EntityFramework.SqlServer
System
System.ComponentModel.DataAnnotations
System.Configuration
System.Data
System.Data.Linq
System.Runtime.Serialization
System.Security
System.Web.DynamicData
System.Web.Extensions
System.Xml
System.Xml.Linq

Code_Observer 15-Jan-14 18:53pm View    
It helps because now I know the problem is in System.Collections.Generic not available but I still don't know how to a select query for one record. It helps but it didn't solve my problems in fact now it is even worse.
Code_Observer 15-Jan-14 18:47pm View    
I don't have a reference for System.Collections.Generic it is not available to me. Is that because I have .net 4.0 ?