Joomla Chinese Version Admin Interface
I built a Joomla for my Church and gave Chinese Version Admin interface for that instance. I found the problem on translation. Because that is built by some Taiwan Opensource Developers. That is not suit for Hong Kong People. Even Taiwan and Hong Kong both are using Chinese. My users gave me the feedback they can't understand some wording in Admin interface. Thus, I suggest please do a focus group review before you give them a final solution!
Upgarde a WordPress 2.4 to 2.7
That is very easy and fast for WordPress 2.7 upgarde. Just upload the latest code, then done. Moreover, that has not the Chinese Characters encoding problems in 2.6.X.
Sub-window should not show in the task bar
That is a common mistake for myself. I like to create some sub-windows which are acting a dialog. I am so easy to forget set ShowInTaskbar = false.
Bolded the dates in MonthCalendar
I am writing a simple diary application. I am using a monthcalendar control to select the date to load the diary. I need the control to display the date in bolded if that date on the calendar has the data. That is easy and simple. Just using BoldedDates.
Code
List<DateTime> boldedDates = new List<DateTime>(); | |
foreach(DateTime boldedDate in entries.Keys) | |
{ | |
boldedDates.Add(boldedDate); | |
} | |
this.monthCalendar1.BoldedDates = boldedDates.ToArray(); |
Get the current assembly version
That is very easy by using Reflection.
Code
using System.Reflection; | |
Assembly.GetExecutingAssembly().GetName().Version; |