Showing posts with label Visual Studio. Show all posts
Showing posts with label Visual Studio. Show all posts

AngularJs Intellisense Add to Visual Studio

AngularJs Intellisense Add to Visual Studio 

angular.intellisense.js file that allows for auto-update of references to drive intellisense.


 AngularJs  working within Visual Studio important to keep the intellisense . that is how to add the visual studio reference to file below show that.


C:\Program Files\Microsoft Visual Studio 11.0\JavaScript\References\angular.intellisense

Click here to Download Angularjs.intellisense.js 





.NET Framework Version


.NET Framework Version



Version No.Release DateVisual Studio VersionDefault in WindowsCLR VersionFeatures in Release
1.013 Feb 2002Visual Studio .NET   NA1.0First Version of CLR and Base Class Library
1.124 Apr 2003Visual Studio 2003Windows Server 20031.11. First Major version of .NET Framework

2. Built-in support for mobile ASP.NET controls. Previously available as an add-on for .NET Framework, now part of the framework

3. Security changes – enable Windows Forms assemblies to execute in a semi-trusted manner from the Internet, and enable Code Access Security in ASP.NET applications

4. Built-in support for ODBC and Oracle databases. Previously available as an add-on for .NET Framework 1.0, now part of the framework

5. .NET Compact Framework – a version of the .NET Framework for small devices

6. Internet Protocol version 6 (IPv6) support
2.07 Nov 2005Visual Studio 2005Windows Server 2003 R22.01.  Generics

2.  Language support for generics built directly into the .NET CLR

3.  Full 64-bit support for both the x64 and the IA-64 hardware platforms 

4.  SQL Server integration – .NET 2.0, VS 2005, and SQL Server 2005 are all tied together. This means that instead of using T-SQL, one can build stored procedures and triggers in any of the .NET-compatible languages

5.  A new hosting API for native applications wishing to host an instance of the .NET runtime. The new API gives a fine grain control on the behavior of the runtime with regards to multithreading, memory allocation, assembly loading and more

6.  Many additional and improved ASP.NET web controls

7.  New data controls with declarative data binding

8.  New personalization features for ASP.NET, such as support for themes, skins, master pages and webparts

9.  .NET Micro Framework – a version of the .NET Framework related to the Smart Personal Objects Technology initiative

10. Membership provider

11. Partial classes

12. Nullable types

13. Anonymous methods

14. Iterators

15. Data tables
3.06 Nov 2006Visual Studio 2005Windows Vista, Windows Server 20082.01. Windows Presentation Foundation (WPF), a new user interface subsystem and API based on XML and vector graphics, which uses 3D computer graphics hardware and Direct3D technologies

2. Windows Communication Foundation (WCF), a service-oriented messaging system which allows programs to interoperate locally or remotely similar to web services

3. Windows Workflow Foundation (WF) allows for building of task automation and integrated transactions using workflows

4. Windows CardSpace, a software component which securely stores a person’s digital identities and provides a unified interface for choosing the identity for a particular transaction, such as logging in to a website
3.519 Nov 2007Visual Studio 2008Windows 7, Windows Server 2008 R22.0, 2.0 SP1, 3.0 SP11. Added new features such as AJAX-enabled Web sites and LINQ

2. Source code of Base Class Library (BCL) has been partially released

3. New .NET Compact Framework 3.5 released
3.5 SP111 Aug 2008Visual Studio 2008Windows 7, Windows Server 2008 R23.0 SP21. .NET Framework Client Profile 

2. Dynamic Data

3. Two new data service components added, ADO.NET Entity Framework and ADO.NET Data Services

4. Two new assemblies for web development, System.Web.Abstraction and System.Web.Routing

5. New set of controls “Visual Basic Power Packs” introduced
4.012 Apr 2010Visual Studio 2010          NA4.01. New Version of CLR

2. Parallel Extensions to improve support for parallel computing, which target multi-core or distributed systems. To this end, technologies like PLINQ (Parallel LINQ), a parallel implementation of the LINQ engine, and Task Parallel Library, which exposes parallel constructs via method calls are included

3. New Visual Basic .NET and C# language features, such as implicit line continuations, dynamic dispatch, named parameters, and optional parameters

4. Code Contracts

5. Inclusion of new types to work with arbitrary-precision arithmetic (System.Numerics.BigInteger) and complex numbers (System.Numerics.Complex)

6. Dynamic Language Runtime (DLR)

7. Managed Extensibility Framework (MEF)

8. Windows Server AppFabric for application server capabilities in the form of AppFabric hosting and in-memory distributed caching support
4.515 Aug 2012Visual Studio 2012Windows 8, Windows Server 20124.51. Windows Store Apps

2. The Portable Class Library project in Visual Studio 2012

3. Background Garbage Collection Servers

4. Asynchronous File Operations

5. Regex Timeout

6. Profile Optimization – Improved Startup Performance
7. Zip Compression
8. Async and Await – Code Markers

Step By Step MsAccess DataBase Connection To Visual Studio 2012 Using OleDb Connection in C#.Net Window Application

MsAccess DataBase Connection To Visual Studio

MsAccess DataBase Connection To Visual Studio Using OleDb Connection in Window Application  Store Values To MsAccess DataBase in Particular Persional Computer(PC) C#.Net.

"MsAccess Close After Table & Field Created "

" If Open MsAccess Does Not Work In Visual Studio"


                                 DEMO





C# CODING


using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Data.OleDb;


namespace MsAccess_Creation
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {

            OleDbConnection con = new OleDbConnection(@"Provider=Microsoft.ACE.OLEDB.12.0;Data Source=E:\Database3.accdb");
            con.Open();

    OleDbCommand cmd = new OleDbCommand("insert into Register(name,mobile)values('"+txtName.Text+"','"+Convert.ToInt32(txtMobileNumber.Text)+"')",con);

            cmd.ExecuteNonQuery();

            MessageBox.Show("Data Register");

        }
    }
}



First - Open - MsAccess Sheet






Next -Create New DataBase







Next - Create Table Fields & ID Automatic Generates







Next - Add New - Field - Select DataType = Text







Next - Change The Field Name = name






Next - Add New Field DataType=Number






Next - Click Save Button 






Next - Open - PopUp  Window - Change Table Name = Register - OK






If Want To Change The DataType  - Right Click Table Name- Go - To Design View 







Next - Change The DataType In Particular Fields







Next - Open The DataBase Source Folder - Copy To Change Another Colon(Drive)







Next - Change  To E Colon







Next - Server Explorer - Connect To Server 






Next - Select - Change Button 






Next - Change Data Source = Microsoft Access DataBase File.






Next - Select - Browse Button 






Next - Select DataBase  From E Drive - Open







Next - Get The DataBase From Drive Path 







Next - Click The Test Connection - Connection Succceded - OK






Next - Open DataBase From Server Explorer






Next - Select TextBox From  ToolBox - Change Id 






Next - Select TextBox From  ToolBox - Change Id 







Next - Go To - Data - Select  - OleDbConnection  






Next - OleDb Connection - Property - ConnectionString - DataBase Select 






Next - DataBase - Connection String Path Get 






Next - Add OleDb Connection Name Spaces - Insert Query Using OleDb Connection - Mobile Number Change To Integer Because DataType = Number






Next - Run[F5] - Enter Values To TextBox  - Register






Next - Data Register 






Next - Open Registered Data in Visual Studio








Next - Open MsAccess DataBase 






Next - Select - Table Name - Open






Next - Show Registered Data's From MsAccess DataBase