Walkthrough: Localizing Windows Forms
http://msdn.microsoft.com/en-us/library/y99d1cd3.aspx

Resources and Localization
http://msdn.microsoft.com/en-us/magazine/cc163609.aspx 


Microsoft .NET Internationalization
http://msdn.microsoft.com/en-us/goglobal/bb688096.aspx 

Let Your Apps Span the Globe with Windows Forms and Visual Studio .NET
http://msdn.microsoft.com/en-us/magazine/cc301720.aspx 

posted @ 2010-02-01 15:48 Warren Tang 阅读(5) | 评论 (0)编辑
posted @ 2010-01-25 23:02 Warren Tang 阅读(9) | 评论 (0)编辑


Need for Speed: Most Wanted Game Guide
http://guides.gamepressure.com/needforspeedmostwanted/guide.asp?ID=487

Need for Speed: Most Wanted FAQ/Walkthrough
http://www.neoseeker.com/resourcelink.html?rlid=142876&rid=132685 

Cheats
Enter one of the following codes at the "click to continue" screen to activate the corresponding cheat function

burgerking - Unlocks Burger King Challenge
castrol - Exclusive Castrol Ford GT
givemethegto - Releases the GTO
iammostwanted - Unlocks all cars



Driving Techniques
http://www.cnblogs.com/WarrenTang/articles/1656295.html 

posted @ 2010-01-25 22:34 Warren Tang 阅读(5) | 评论 (0)编辑


C++

   #define WATERMARK_TODAY         1     
   
#define WATERMARK_TODAYFULL     2 
    typedef 
bool (*LPF_SHSetAsWatermark)(HWND hWnd, LPCWSTR lpszFile, int iWhich, DWORD* pdwAlpha);

    HMODULE hModule 
= LoadLibrary(L"aygshell.dll");
    
if (hModule)
    {
        LPF_SHSetAsWatermark pSHSetAsWatermark 
= (LPF_SHSetAsWatermark)GetProcAddress(hModule, (LPCWSTR)169);
        
if (pSHSetAsWatermark)
        {            
            DWORD dwAlpha 
= 0
            
bool ret = pSHSetAsWatermark( NULL, L"\\My Documents\\My Pictures\\Leaf.jpg",WATERMARK_TODAYFULL, &dwAlpha);           
        }
    }

 

 

C#

    //BOOL SHSetAsWatermark(HWND hWnd, LPCWSTR lpszFile, int iWhich, DWORD* pdwAlpha);
    [DllImport("aygshell.dll", EntryPoint = "#169")]
    
private static extern bool SHSetAsWatermark(IntPtr hWnd, string lpszFile, int iWhich , ref uint pdwAlpha);

    
uint alpha = 10;
    
bool ret = SHSetAsWatermark(IntPtr.Zero, imagePath, 2ref alpha);

 


 

posted @ 2010-01-08 12:02 Warren Tang 阅读(21) | 评论 (0)编辑
     摘要: Enginehttp://en.wikipedia.org/wiki/Internal_combustion_engine Engine Animationhttp://www.youtube.com/watch?v=OXd1PlGur8MV Enginehttp://en.wikipedia.org/wiki/V_engineV8 Engine Animationhttp://www.youtu...  阅读全文
posted @ 2009-12-29 17:32 Warren Tang 阅读(42) | 评论 (0)编辑
     摘要: Lamborghini Reventonhttp://thecarsblog.com/lamborghini-reventon-review/http://www.automobilemag.com/reviews/lamborghini/0711_2008_lamborghini_reventon/index.htmlLamborghini Gallardohttp://www.edmunds....  阅读全文
posted @ 2009-12-28 18:12 Warren Tang 阅读(7) | 评论 (0)编辑
Car
     摘要: Lamborghini http://www.cnblogs.com/WarrenTang/articles/1634341.html Driving Techniqueshttp://www.cnblogs.com/WarrenTang/articles/1656295.htmlEnginehttp://www.cnblogs.com/WarrenTang/articles/1635272.ht...  阅读全文
posted @ 2009-12-24 17:11 Warren Tang 阅读(15) | 评论 (0)编辑
     摘要: When I run WinDbg on Windows 7 64-bit and tried to start local kernal debugging, the following error message popped up:The system does not support local kernel debugging...Here is the solution (sort o...  阅读全文
posted @ 2009-12-16 18:10 Warren Tang 阅读(20) | 评论 (0)编辑