How to send Ctrl+ALT+DEL in a Remote Desktop Client.
If you press Ctrl+ALT+DEL in a remote desktop client, it will send back to your local machine. I cannot find any menu options to do that, like VMWave Workstation. I found a useful article form Microsoft ,List of the keyboard shortcuts that are available in Windows XP. It stated you can use Ctrl+ALT+END to send a Ctrl+ALT+DEL command in a Remote Desktop Client.
Wordpress Version 3.0.2
Wordpress is great! They got a minor version update. There is some security fixes. Please go to Wordpress.org for the download
Samsung Galaxy Tab is arrived in Australia
I went to Harvey Norman today. Finally, I saw the real version of Galaxy Tab in Australia. Currently, it need to bind with a $59.95 Optus plan. Then you can have 10GB Peak Data allowance and 20GB Off-peak data allowance. Plus, $0 Galaxy Tab. But that is still too much to me. Moreover, I found 7" screen is a bit too small.
MSN 2011
I have used MSN 2011 for around a month. So far, I like it. I love the "friend feed" on the MSN. That is my other "copy" of facebook. But I hate the tab version of conversation windows. But sometimes, I will open more one conversation windows. I am very multi-tasking. The tab version is limited to chat with one person per times.
Error Message :"The type 'TEntity' must be a reference type in order to use it as parameter 'T' in the generic type or method 'XXXXX' (CS0452) -"
I got a line of code like this:
Code
public class HibnerateRepository<TEntity, TId> : IRepository<TEntity, TId> | |
...... | |
public IList<TEntity> GetAll() |
That sounds alright, but I got an Error Message :"The type 'TEntity' must be a reference type in order to use it as parameter 'T' in the generic type or method 'XXXXX' (CS0452) -".
Well, that is a common mistake and easy to fix.
Code
public class HibnerateRepository<TEntity, TId> : IRepository<TEntity, TId> where TEntity:class | |
...... | |
public IList<TEntity> GetAll() |
