Category Archives: Informatique

MVVM Tutorial From Start to Finish

MVVM Tutorial From Start to Finish

Posted in CSharp | Tagged , | Leave a comment

Environment Variables

Environment Variables Source: Microsoft Variable Type Description %ALLUSERSPROFILE% Local Returns the location of the All Users Profile. %APPDATA% Local Returns the location where applications store data by default. %CD% Local Returns the current directory string. %CMDCMDLINE% Local Returns the exact … Continue reading

Posted in Informatique | Tagged | Leave a comment

Excel specifications and limits

http://office.microsoft.com/en-001/excel-help/excel-specifications-and-limits-HP010342495.aspx

Posted in Excel | Tagged , | Leave a comment

Send Keys

Send / SendRaw / SendInput / SendPlay / SendEvent: Send Keys & Clicks http://www.autohotkey.com/docs/commands/Send.htm

Posted in Informatique | Leave a comment

Data Type Conversion (Database Engine)

Implicit and Explicit Conversion:

Posted in SQL | 1 Comment

Microsoft SQL Server Data Tools

…provides an integrated environment for database developers to carry out all their database design work for any SQL Server platform (both on and off premise) within Visual Studio. Database developers can use the SQL Server Object Explorer in VS to … Continue reading

Posted in Informatique, SQL | Leave a comment

SQL Server Data Tools – Business Intelligence

Download File Install SQL Server Data Tools – Business Intelligence for Visual Studio 2012 To install SQL Server Data Tools – Business Intelligence for Visual Studio 2012 Run SSDTBI_VS2012_x86_ENU.exe to begin installation. In SQL Server 2012 Setup, on the License … Continue reading

Posted in SQL | Leave a comment

IDisposable interface

public class MyClass : IDisposable { private bool disposed; /// <summary> /// Construction /// </summary> public MyClass() { } /// <summary> /// Destructor /// </summary> ~MyClass() { this.Dispose(false); } /// <summary> /// The dispose method that implements IDisposable. /// </summary> … Continue reading

Posted in CSharp | Tagged | Leave a comment