| Thread | Last Post | Replies |
|
| Dealing with Timezones | 28 Aug 2006 06:11 GMT | 7 |
In .Net 2.0, I can get the standard name of the current timezone by: System.TimeZone.CurrentTimeZone.StandardName The problem I'm having is that I have datetimes that are serialized as a UTC time, with a named timezone. I keep looking for a way to say:
|
| Error with SqlSmlCommand | 28 Aug 2006 03:45 GMT | 7 |
I am attempting to read XML data directly from a table in SQL Server 2000 using VB.Net 2003. When I run the code shown below, I get the following error: "SQLXML: invalid direct object (dbobject) query -><-"
|
| convert datetime to sortable format | 27 Aug 2006 19:53 GMT | 5 |
Hello again, I need to convert date to "yyyy-MM-ddTHH:mm:ss" format. Below code does this, but it appends time twice in date variable. DateTimeFormatInfo dy = new DateTimeFormatInfo();
|
| DataGridView (.NET 2.0 Windows Forms) Text wrapping in DataGridView Items | 27 Aug 2006 18:07 GMT | 1 |
Is it possible to have the text wrap in a DataGridView's DataGridViewItem/Row? And if so how is it accomplished? Thanks,
|
| Adding a Section In Configuration File | 27 Aug 2006 13:58 GMT | 5 |
I know that we can add a single name value entry in app.config or web.config in the configuration/configSettings/appSettings section like so: <add key="key" value="value" />
|
| Async Sockets and IOCPS | 27 Aug 2006 12:22 GMT | 6 |
Hang my head in shame; I only found out yesterday that .NET sockets are already doing overlapped I/O with IOCPs when you make async calls. The only problem I see (experimentally via debugging, so I don't know if it's true), is that each socket gets it's own IOCP. Is there any way
|
| Asynchronous Design Pattern | 26 Aug 2006 07:13 GMT | 2 |
I'm thinking about using the design pattern described at the link below to solve a problem: http://msdn2.microsoft.com/en-us/library/ms228963.aspx I have a question, though, and would appreciate any help.
|
| .NET 2.0 embaressment | 26 Aug 2006 05:39 GMT | 2 |
I have a .NET 2.0 application that has been released using clickonce installation both online and from CD. I have no control over the end user systems and I am being flooded with complaints that the application fails to install on XP SP1 machines and NT4 systems.
|
| Windows Defender | 26 Aug 2006 02:30 GMT | 3 |
I got A virus and the Defender was doing its job..but when all these windows started popping up I clicked on some "Ignore" buttons by accident..It finally cleaned the puter but when it runs the scheduled scan I wind up having to reboot to clean the puter. I realize there is still ...
|
| CreateChildView() vs DataTable.Select() on entire table | 25 Aug 2006 19:29 GMT | 1 |
Can anyone shed some light on why DataRowView.CreateChildView() would significantly slower than DataTable.Select()? my DataSet looks like this DataSet ds; //ds assignment code left out for simplicity
|
| How to | 25 Aug 2006 18:31 GMT | 3 |
I am Ilayaraja. I have a interesting (might be beginners) doubt in Dot Net framework. I have an Solution Named X, I have to two projects A and B. A is an windows Applicaiton developed in VB.Net 2005 and B is an Class
|
| Click once and exe.config file | 25 Aug 2006 14:11 GMT | 2 |
I'm about to release a application to a customer. This app uses a config file to store connection settings. I'd like to be able to create a "Click Once" installer, as this will remove lots of dependency issues that are likely to arise with this app. However, my understanding of
|
| How to configure Access database using Enterprise Library Data block | 25 Aug 2006 12:17 GMT | 1 |
I want to know how to configure Access database using Enterprise Library Data block. I want to be able to spacify local path to mdb file in configuration file. I do not want users to creat DSNs, they should be able to connect any mdb file to application by updating
|
| ILASM for Compact Framework 2 | 25 Aug 2006 07:14 GMT | 2 |
I already asked in CF group, but nobody was able to help me - I hope someone here would know the answer... I need to compile some IL code to CF2 class library (.dll). I just tried it, got the dll using something like
|
| Get day name given year, month and day number | 25 Aug 2006 03:06 GMT | 2 |
Hmm. Is there a way to get the day name (ie Monday) given a year, month and day number? Thanks,
|