Click here to Skip to main content
15,921,840 members

Videos


Page 11 of 17
6 7 8 9 10 11 12 13 14 15


.

()
» »
Updated:
Rating: ()
.

()
» »
Updated:
Rating: ()
.

()
» »
Updated:
Rating: ()
.

()
» »
Updated:
Rating: ()
.

()
» »
Updated:
Rating: ()
.

()
» »
Updated:
Rating: ()
.

()
» »
Updated:
Rating: ()
.

()
» »
Updated:
Rating: ()
201. SQL Query in LINQ in C#
I think this would be the more or less equivalent: from test in testcollection where test.postdate == DateTime.Now.Date group test by test.name into newtest select new { Name = newtest.Name, PostDate = newtest.postdate };
Patrick Kalkman Updated: 9 May 2011
Rating: ( (No votes))
.

()
» »
Updated:
Rating: ()
202. Need help with C# with datetime
Extracting the time or date from a datetime is possible. The following code shows a way how to extract the time from a date and how to remove the time from the date. DateTime now = DateTime.Now; TimeSpan onlyTime = now - now.Date; DateTime onlyDate = now - onlyTime;...
Patrick Kalkman Updated: 7 May 2011
Rating: 1.00/5 ( (2 votes))
203. ERROR: it is not a member of 'ASP.default_aspx.'
Make sure that youre namespaces, classes and events are correctly named. Make sure that you have a GridView1_RowCommand in the code behind class in the right namespace. This is most probably the error. It happens when you rename the name of the class or file and forget to also rename the...
Web Development » ASP.NET »
Patrick Kalkman Updated: 6 May 2011
Rating: ( (No votes))
204. .net CompactFramework and Album Art
If WMPLib supports the ID3v2.3 tags then it should be possible to extract the png or jpg images. If not, you could extract the image yourself, the IDv2.3 documentation is very good.
.NET » .NET CF »
Patrick Kalkman Updated: 6 May 2011
Rating: ( (No votes))
205. Debugger moving backward in C#.Net
It could be that your debugging symbols are out of date, this could give the impression that your debugger move backwards. What is happening is that the debugger shows the line of source code that is mapped to the il that is executing. Try a full rebuild of your application and check if the...
Web Development » ASP.NET »
Patrick Kalkman Updated: 5 May 2011
Rating: 4.00/5 ( (1 vote))
206. how to name a list collection in c# at run time
Just like the previous answers, I do not know what you try to accomplish but you could also implement your own named collection that just derives from a list of strings and add a name property to the class.public class NamedList : List{ public string Name { get; set; }}
Patrick Kalkman Updated: 4 May 2011
Rating: 5.00/5 ( (3 votes))
207. C#.net database application
There are two articles here on codeproject that show you how to connect to an DB2 database from an Microsoft .Net application.Connection to DB2 from .NET[^]Connect to DB2 from Microsoft .NET[^]Hope this helps.
Patrick Kalkman Updated: 3 May 2011
Rating: ( (No votes))
.

()
» »
Updated:
Rating: ()
208. Difference between Debug Dll and Release Dll
I think you are referring to Microsoft.Net assemblies. The biggest difference is performance. In a debug dll several extra instructions are added to enable you to set a breakpoint on every source code line in for example Visual Studio. Also the code will not be optimized, againg to enable you to...
Patrick Kalkman Updated: 2 May 2011
Rating: 5.00/5 ( (3 votes))
.

()
» »
Updated:
Rating: ()
209. Androng, a Pong clone for Android
This article describes how I developed Androng, a Pong clone for Android.
Mobile Apps » Android »
Patrick Kalkman Updated: 1 May 2011
Rating: 4.96/5 ( (43 votes))

Page 11 of 17
6 7 8 9 10 11 12 13 14 15