Disable intellisense for speed up Silverlight App with WCF RIA Service
1. Disable WCF RIA Service intellisense
[HKEY_LOCAL_MACHINE]\SOFTWARE\Wow6432Node\Microsoft\WCFRIAServices\v1.0
Right click on the right (where the values are) and select NEW > DWord 32 bit value called: DisableLiveIntellisense
Right click the value you just added and select Modify.
Enter the Value 1
2. Disable XAML intellisense
Set the following registry key to 0:
HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\10.0\Text Editor\XAML\Auto List Members
MVC Overview
Abstract: This article gives an overview of MVC# – a Model-View-Presenter framework for .NET platform. It firstly explains the MVP pattern essentials and then walks through the key features of the MVC# framework which help building true MVP-based solutions.
What is Model-View-Presenter?
3-tier architecture
MVC and MVP patterns
Why using MVC#?
1. Views and controllers get connected automatically
2. Multiple GUI platforms supported
3. Platform-independent navigation to views
4. Tasks concept
Conclusion
HTML 5 Intellisense for Visual Studio 2010 and 2008
http://visualstudiogallery.msdn.microsoft.com/d771cbc8-d60a-40b0-a1d8-f19fc393127d
How to Extreme Programming
http://wiki.nectec.or.th/setec/Knowledge/ExtremeProgramming
F# how to
http://en.wikibooks.org/wiki/F_Sharp_Programming/Getting_Set_Up
Visual studio 2010, How to solve The name ‘InitializeComponent’ does not exist in the current context
Typically this is making sure that the “CustomTool” of the .xaml file says “MSBuild:CompileXaml“
Thank Shawn Wildermuth for posting at: http://forums.silverlight.net/forums/p/9218/29127.aspx
Call javascript from silverlight, How to?
1. javascript function
<script language=”javascript”>
function SayHello()
{
alert(“Hello from JavaScript, invoked by Silverlight”);
}
</script>
2. .xaml
<Grid x:Name=”LayoutRoot” Background=”White”>
<Button x:Name=”btnSayHello” Content=”Say Hello”
Click=”btnSayHello_Click”></Button>
</Grid>
3. .xaml.cs
private void btnSayHello_Click(object sender, RoutedEventArgs e)
{
HtmlPage.Window.Invoke(“SayHello”);
}
4. include HtmlPage class
using System.Windows.Browser;
English Abbreviations You Should Know ASAP, FYI, lol, anything else I don’t know?
ASAP = As soon As Possible = เร็วที่สุดเท่าที่เป็นไปได้
FYI = For your Information = เพื่อเรียนให้ทราบ (http://www.andrewbiggs.com/columns/column-189.htm)
IMO = In my opinion = ความเห็นของฉัน
BTW = By the way = ว่าแต่.. (http://www.andrewbiggs.com/columns/column-162.htm)
LOL=Laughing Out Loud=หัวเราะเสียงดัง
LYL=Chat Instant Message Slang – Love You Lots=รักคุณมากมาย
LMFAO=Laughing my ass off=หัวเราะตูดแหก
F2F=Face To Face=สองต่อสอง
ROTFL=Rolling On The Floor Laughing=ขำกลิ้ง
ROTFLOL=Rolling On The Floor Laughing Out Loud=ขำกลิ้งเสียงดัง
ROTFLMFAO=?
TTTT=Abbreviation Slang – These Things Take Time=สิ่งเหล่านี้ใช้เวลา
TAFN=Abbreviation Slang – That’s All For Now=นั้นคือทั้งหมดสำหรับตอนนี้
DOA=?
CIA
ETA
HMO
IBM
AWOL
PDQ
PIN
IRA
LOC
Update soon …