MY Note

study it – know it – use it

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

January 10, 2012 Posted by | Silverlight 4 | Leave a Comment

morale 3

December 23, 2011 Posted by | OTHER | Leave a Comment

morale 1

December 23, 2011 Posted by | OTHER | Leave a Comment

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

ref: http://www.mvcsharp.org/

September 18, 2011 Posted by | MVC pattern | Leave a Comment

HTML 5 Intellisense for Visual Studio 2010 and 2008

http://visualstudiogallery.msdn.microsoft.com/d771cbc8-d60a-40b0-a1d8-f19fc393127d

September 18, 2011 Posted by | HTML5 | Leave a Comment

How to Extreme Programming

http://wiki.nectec.or.th/setec/Knowledge/ExtremeProgramming

November 29, 2010 Posted by | Management, Uncategorized | Leave a Comment

F# how to

http://en.wikibooks.org/wiki/F_Sharp_Programming/Getting_Set_Up

November 23, 2010 Posted by | F# | Leave a Comment

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

 

November 4, 2010 Posted by | Visual studio 2010 | Leave a Comment

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;

October 31, 2010 Posted by | Silverlight, Silverlight 2.0, Silverlight 4 | Leave a Comment

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 …

October 26, 2010 Posted by | OTHER | Leave a Comment

Follow

Get every new post delivered to your Inbox.