Blogs1 - 10 of 922 recent posts for tag:".NET Framework"
08
Nov
2009
Silverlight Bits&Pieces – Part 7: Application Permissions

6 hours ago by ajdotnet

OK, back down from vacation – proud about the accomplishment and perhaps with some new perspectives. It really makes you think about the effects of the financial crisis if you happen to work primarily for banks… . Well. Note: This is part of a series, you can find the related posts here… The last po ...

AJ's blog - ajdotnet.wordpress.com · 10 references

Paint.NET 3.5 Released!

1 day ago by Brandon LeBlanc

Yesterday, Rick Brewster announced that the final release of Paint.NET 3.5 is now available for download. Download: Paint.NET 3.5 I had blogged about one of the initial beta releases of Paint.NET 3.5 back in August. Paint.NET 3.5 utilizes DirectWrite in Windows 7 to render text (instead of GDI). As ...

The Windows Blog - windowsteamblog.com/blogs · Rank: 108,070 · 271 references

07
Nov
2009
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

06
Nov
2009
Chapter 1: Lesson 1: Using Value Types

2 days ago by johnmora

Value types are variables which contain their data directly as opposed to reference types which store only a reference to the data stored elsewhere. Instances of value types are stored in an area of the memory called the “stack” where the runtime can manipulate them quickly with minimal overhead. re ...

Code Tales - blog.codetales.com

Previous1234567