Simple theme for Graffiti CMS

Graffiti CMS express edition is popular amid developers as well as Community Server. At the moment I wanted to decide between Graffiti And Community Server  I couldn't made my mind. Blog subsystem of community server has a simple theme which is similar to MSDN blog theme (Like current theme). This theme was inducement of community server. Finally, I used graffiti because of simplicity, anyway , Recently I decided to convert simple theme of community server 2008 to graffiti CMS theme. I put first version of simple theme [here](https://gkasoq.bay.livefilestore.com/y1pkcDCK8ftzzfzO_6UO7nvtklXqCwp8FPSD2Tp_Lj3_7WVvfN_YWXQX5DBuXKoWFPiX8yUuyvqx96dLHR7MiWKIw/Simple.zip?download&psid=1) [Read More]
Tags: Graffiti CMS

Where are the Northwind and Pubs?

SQL Server 2005 is installed without any samples - at least versions I installed don’t contain Northwind and pubs databases -. However Microsoft put SQL Server 2005 Samples and Sample Databases in Codeplex, light version of these two sample databases were always famous in a way that you can find one of them in most database related samples with high probability.  You can find SQL Server 2000 Sample here. After installation file is downloaded take following two steps: 1. Install msi file. Some files will be copied in C:\SQL Server 2000 Sample Databases 2. Attach Northwind.mdf file which is located... [Read More]

How to change mouse cursor icon in windows mobile application

Informing user about application state is one of important aspects in user experience. In windows applications mouse icon indicates one of great application states. When an application is busy mouse icon should be changed to wait cursor mode or hourglass icon. In windows application you can achieve this by changing Cursor property of any Control, Usually by changing "this.Cursor" which "this" is current form in application. See example: [Read More]

TickCount instead of millisecond in compact framework

After long absence I'm back now. Recently I wanted to develop an application for windows mobile with .Net Compact framework. In this application I need to measure elapsed time in millisecond resolution. First of all like everyone I tried to use Millisecond property of DateTime.Now static class. But it won't work at all in .Net Compact framework even in version 3.5! If you want to use a timer with millisecond resolution you have to use TickCount property of Environment class. //Will be zero. lblMillisecondVal.Text = DateTime.Now.Millisecond.ToString(); //Total milliseconds elapsed since the system started. lblTickCountVal.Text = Environment.TickCount.ToString(); [Here](https://gkasoq.bay.livefilestore.com/y1p-j36TiPUqAUB6w5kYE05nlr4sJQ6zrqwpr1ggB654bL0E7JHIehasbHjEaireeiTg9vR_nxCaAskngmyKX-o1Q/TickCountTest.zip?download&psid=1) is an example... [Read More]

Pocket PC Developers Resources

Currently, I'm working on Pocket PC development. During last week I've found interesting resources about windows mobile development with .Net compact framework. first of all [Windows Mobile Team Blog ](https://blogs.msdn.com/windowsmobile/)would be a sophisticated resource. Moreover you could find other useful links in this weblog. Other blogger's web site would be good resources, like [Chris Craft's Blog](https://www.cjcraft.com/blog/default.aspx). CJ's weblog contains a series of posts for a month. For each day he wrote a post about windows mobile programming. It would be a good starting tutorial for beginners. Another web site that could be useful is [www.dotnetfordevices.com](https://www.dotnetfordevices.com/) . However, I'll post related... [Read More]