New Features in Visual Studio 2010
Microsoft has added lot of new features with Visual Studio 2010. These new features/functionalities help developers to work more efficiently, make their works simple, and reduce development times. This article …
tutorials | source code | tips & tricks
Development Tools
Microsoft has added lot of new features with Visual Studio 2010. These new features/functionalities help developers to work more efficiently, make their works simple, and reduce development times. This article …
The dll is a portable executable (PE) file format with .dll extension. It provides numerous advantages. Many development tools or IDE (Integrated Development Environment) presents to create or access dll …
The .dll is a portable executable (PE) file format. It helps us to reuse the same code in many applications simultaneously. Many development tools or IDE (Integrated Development Environment) supports …
Microsoft Visual Studio allows us to connect database server. This article describes how to connect database server with Server Explorer; access database with Server Explorer. Summary of the article: What …
A DLL is a type of file that contains executable codes, resources like data, images, etc and cannot be directly executed, but can be executed by an application. DLL files …
The exe is a computer file format that ends with the extension “.exe”. These files are used to install and run programs that perform various functions or operations on a …
Both DLL and EXE is a computer file format and contain the exact same layout. They are Portable Executable (PE) File Format. But they are not exactly same. Their exits …