ATTENTION: I've decided to put the upgrade on hold due to a compatibility issue of our server environment with the latest CS installer package. CS 2008 now requires SQL Server 2005 as the backend DB but our database server currenlty has SQL Server 2000 installed on it. I'll resume the upgrade once I figure out when Telligent is releasing a patch to the schema compatibility issue. For now, we will continue to use the old version of CS while waiting for the said patch. If you have any questions about this process, please don't hesitate to post them on our forums and I'll answer them as soon as I can. Thanks for your patience and support guys! I'll let you know as soon as this is resolved. -
Keith Rull
Browse Site by Tags
Showing related tags and posts accross the entire site.
All Tags »
Tips »
.NET »
techie (RSS)
-
My current project uses a double data type for its values and i have raised a suggestion to convert it to decimal data type instead. I remember that it is recommended to use decimal over double for financial applications because decimal data types have greater significant digits compared to floating...
-
i noticed yesterday that my double quote key is switched with the @ key in visual studio. i tried it in notepad and it seems to be working. i'm glad i found a helpful post in the msdn forums this morning on how to fix this and it turns out that i have two language settings installed, US and UK, i...
-
I was reading around ASPNET forums when I got this interesting information about the order of directories returned by the DirectoryInfo.GetDirectories() function here by an MVP. "The rule of thumb used to be that the NTFS file system would return file names in alphabetical order, while a FAT file system...
-
I have long wanted to have a utility to know what particular windows process is using a particular assembly. Sometimes you want to delete an assembly which you can’t because a process, most of the time a windows service is still using it. I finally googled yesterday and saw Process Explorer . I can also...
-
John Papa blogs about the new merge feature between two datatables in v2.0. In v1.1, you have to create a dummy dataset as datatable holder since the method is defined only on the dataset class. A very useful feature IMO. http://www.codebetter.com/blogs/john.papa/archive/2005/03/30/ADO_NET_2_DataTable_Merge...
-
Thanks to EricGu’s post, I found out that Apress is releasing a number of free ebooks and one of them was Troelsen’s good book “COM and .NET Interoperability,” I’ve planned to buy this book before after loving his “C# and the .NET Platform," thank God it was postponed, Check them out here .
-
I have this custom layout logic for a custom container control which uses a number of properties defined on an interface implemented by most of our controls. For this implementation, I needed temporary holders of controls which implement the said interface and the need for an array of the said interface...
-
I have read the Exception Handling Best Practices article in .NET in CodeProject and all this time I thought that rethrowing exceptions is this way: [code language="C#"] try { // Some code that throws an exception } catch (Exception ex) { // some code that handles the exception throw ex; } [/code] I...
Page 1 of 1 (8 items)