Archives mensuelles : février 2014

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 … Lire la suite

Publié dans Informatique | Tagué | Laisser un commentaire

Excel specifications and limits

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

Publié dans Excel | Tagué , | Laisser un commentaire

Send Keys

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

Publié dans Informatique | Laisser un commentaire

Data Type Conversion (Database Engine)

Implicit and Explicit Conversion:

Publié dans SQL | 1 commentaire

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 … Lire la suite

Publié dans Informatique, SQL | Laisser un commentaire

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 … Lire la suite

Publié dans SQL | Laisser un commentaire

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> … Lire la suite

Publié dans CSharp | Tagué | Laisser un commentaire