| Windows® API Code Pack for Microsoft® .NET Framework 1 day ago by Mehmet Gani TOMBALAK The Windows® API Code Pack for Microsoft® .NET Framework provides a source code library that can be used to access some new Windows 7 features (and some existing features of older versions of Windows operating system) from managed code. These Windows features are not available to developers today in ... Mehmet Gani TOMBALAK - blog.ganitombalak.com |
| Come caricare un DataTable con una Enumerazione 1 day ago by Luigi Melisi DataTable myDataTable = new DataTable("Stato"); DataColumnCollection myColumns= myDataTable.Columns; myColumns.Add("ID", typeof(System.Int32)); myColumns.Add("Descrizione", typeof(System.String)); DataRowCollection myRows= myDataTable.Rows; foreach (Stato o in Enum.GetValues(typeof(Stato))) { DataRo ... Luigi Melisi - luigimelisi.com |
| Come aprire una pagina WEB o eseguire un’applicazione con C# 1 day ago by Luigi Melisi // apre una pagina web System.Diagnostics.Process.Start(” http://www.luigimelisi.com/“); // esegue un file System.Diagnostics.Process.Start(”notepad.exe”); // apre una directory System.Diagnostics.Process.Start(”c:\windows”); Luigi Melisi - luigimelisi.com |
| Windows Identity Foundation (WIF) RC released 1 day ago by DG Microsoft released the release candidate of “Geneva” framework, officially known as “Windows Identity Foundation (WIF),” that helps .NET developers build claims-aware applications that externalize user authentication from app, improving developer productivity, enhancing application security, and ena ... D' Technology Weblog - ditii.com · Rank: 20,577 · 242 references |
| Come catturare l’evento del tasto ‘ENTER’ nel componente di login con C# 1 day ago by Luigi Melisi Per catturare l’evento del tasto enter nel componente di login di aspx e sufficiente scrivere nell’onload della pagina contenitore questo codice: 1.protected void Page_Load(object sender, EventArgs e) 2.{ 3.Control ctl = MyLogin.FindControl("LoginButton"); 4.MyLogin.Attributes.Add("onkeypress", Stri ... Luigi Melisi - luigimelisi.com |
| MSDN Tutorials: nuovi video su Silverlight 3 1 day ago by Luigi Melisi Sulla piattaforma video BEIT sono disponibili i nuovi video su Silverlight 3 ed in particolare sulle novità di Silverlight 3 rispetto a Silverlight 2. Per chi fosssa interessato, di seguito vi riporto il link da seguire : MSDN TUTORIALS Luigi Melisi - luigimelisi.com |
| SQL 2008 – Spatial Data 1 day ago by shapemetrics I recently started playing with SQL 2008’s new spatial data types. The field types allow you to store geometry/geographic data in the database server; query data based Distance, Intersections and all the other little goodies that allow you to compare geometry. Issues that I have with the Microsoft’s ... Rusty Davis - shapemetrics.wordpress.com |