<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/">
<channel>
<title>Home Page http://blogs.dotnethell.it</title>
<description>dotNetHell.it Blogs</description>
<link>http://blogs.dotnethell.it/rss.aspx</link>
<generator>HyperBlogs Professional v.2.0</generator>
<item>
<title>VB.NET - Come cambiare il colore di una ProgressBar (Codice)</title>
<link>http://blogs.dotnethell.it/imaginsystems/Post_19223.aspx</link>
<pubDate>Sun, 19 May 2013 19:03:33 +0100</pubDate>
<source url="http://blogs.dotnethell.it/imaginsystems/rss.aspx">Davide De Rubeis</source>
<description>&lt;div&gt;&lt;div&gt;&lt;h1 style=&quot;padding: 0px 0px 10px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(235, 235, 235); background-color: rgb(255, 255, 255);&quot;&gt;&lt;font face=&quot;Trebuchet MS&quot;&gt;&lt;span style=&quot;font-size: 20px;&quot;&gt;VB.NET - COME CAMBIARE IL COLORE DI UNA ProgressBar (Codice)&lt;/span&gt;&lt;/font&gt;&lt;/h1&gt;&lt;/div&gt;&lt;div style=&quot;font-family: 'Trebuchet MS'; font-size: 10pt; text-align: center;&quot;&gt;&lt;img src=&quot;http://blogs.dotnethell.it/filestore/10849_MyProgressBar.By.ImaginSystems.jpg&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div style=&quot;font-family: 'Trebuchet MS'; font-size: 10pt; text-align: center;&quot;&gt;&lt;br&gt;&lt;/div&gt;&lt;div style=&quot;font-family: 'Trebuchet MS'; font-size: 10pt; text-align: center;&quot;&gt;&lt;br&gt;&lt;/div&gt;&lt;div style=&quot;font-family: 'Trebuchet MS'; font-size: 10pt; text-align: center;&quot;&gt;&lt;br&gt;&lt;/div&gt;&lt;div style=&quot;font-family: 'Trebuchet MS';&quot;&gt;&lt;font size=&quot;2&quot;&gt;Oggi vi parlo di come personalizzare la ProgressBar con colori diversi e colorare il testo di Percentuale che visualizzate al centro della ProgressBar.&lt;/font&gt;&lt;/div&gt;&lt;div style=&quot;font-family: 'Trebuchet MS';&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;br&gt;&lt;/font&gt;&lt;/div&gt;&lt;div style=&quot;font-family: 'Trebuchet MS';&quot;&gt;&lt;font size=&quot;2&quot;&gt;Per prima cosa creo un file e ci copio il seguente codice :&lt;/font&gt;&lt;/div&gt;&lt;div style=&quot;font-family: 'Trebuchet MS'; font-size: 10pt;&quot;&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;&lt;br&gt;&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;div style=&quot;text-align: justify; text-indent: -24px;&quot;&gt;&lt;font color=&quot;#808080&quot; face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;&lt;span style=&quot;line-height: 20px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; CODICE VISUAL STUDIO 2010 - VISUAL BASIC .NET - VB.NET:&lt;/span&gt;&lt;/font&gt;&lt;span style=&quot;font-family: 'Trebuchet MS'; font-size: 10pt; color: rgb(128, 128, 128); line-height: 20px; text-align: justify; text-indent: -24px;&quot;&gt;&amp;nbsp;: (File :&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;text-align: justify; text-indent: -24px;&quot;&gt;&lt;font color=&quot;#808080&quot; face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;&lt;span style=&quot;line-height: 20px;&quot;&gt;ProgressBarNewStyle.vb)&lt;/span&gt;&lt;/font&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;font&gt;&lt;pre class=&quot;sh_perl sh_sourceCode&quot; style=&quot;background-color: rgb(238, 238, 238); border: 1px solid rgb(136, 136, 136); padding: 1em;&quot;&gt;&lt;div&gt;Imports System.Collections.Generic
Imports System.Linq
Imports System.Text
Imports System.Windows.Forms
Imports System.Drawing
Imports System.Drawing.Drawing2D


Namespace ProgressBarNewStyle
    Class MyProgressBarStyle
        Inherits ProgressBar

        Public ProgressBarLabelValue As String = &quot;0&quot;
        Public colorText As Color = Color.Green


        Private obbligateColor As Color
        Private colorBarBottom As SolidBrush
        Private colorBarTop As SolidBrush

        Public Sub New()
            Me.SetStyle(ControlStyles.UserPaint, False)
        End Sub

        Public Sub New(colorBar As Color)
            Me.SetStyle(ControlStyles.UserPaint, True)
            Me.obbligateColor = Color.White
            Me.colorBarBottom = New SolidBrush(colorBar)

            'riempimento del &quot;rettangolo&quot; superiore bianco con opacit&#224; del 50%

            Me.colorBarTop = New SolidBrush(Color.FromArgb(128, obbligateColor))
        End Sub


        Protected Overrides Sub OnPaint(e As PaintEventArgs)

            Dim width As Integer = 0
            Dim height As Integer = 0
            'La propriet&#224; ClipRectangle applicata su PaintEventArgs ritorna il rettangolo che bisogna riempire
            Dim rec As Rectangle = e.ClipRectangle

            'Calcolo le dimensioni del rettangolo -4 
            rec.Width = CInt(Math.Truncate(rec.Width * (CDbl(Value) / Maximum))) - 4
            rec.Height = rec.Height - 4

            'grandezza e altezza del rettangolo con opacit&#224; che andremmo a sovrappore su quello principale per
            'generare l'effetto
            width = rec.Width
            height = (rec.Height \ 2)

            'ProgressBarRender.isSupported verifica se pu&#242; essere effettuato il rendering del rettangolo in questione
            'nella progressBar con la visualizzazione corrente del sistema operativo in uso
            If ProgressBarRenderer.IsSupported Then

                'uso un metodo statico su questa classe per disegnare orizzontalmente nel componente
                'ovviamente la progressBar verr&#224; svuotata per fare spazio al nostro riempimento
                ProgressBarRenderer.DrawHorizontalBar(e.Graphics, e.ClipRectangle)
            End If
            'riempio l'interno dei rettangoli ottenuti
            e.Graphics.FillRectangle(colorBarBottom, 2, 2, rec.Width, rec.Height)
            e.Graphics.FillRectangle(colorBarTop, 2, 2, width, height)

            'Applico una scritta
            Using sb As New SolidBrush(colorText)
                Dim sz As SizeF = e.Graphics.MeasureString(ProgressBarLabelValue + &quot; %&quot;, Me.Font)
                e.Graphics.DrawString(ProgressBarLabelValue + &quot; %&quot;, Me.Font, sb, New PointF((Me.Width - sz.Width) / 2.0F, (Me.Height - sz.Height) / 2.0F))
            End Using
        End Sub
    End Class
End Namespace
&lt;/div&gt;&lt;/pre&gt;&lt;/font&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;font size=&quot;2&quot; style=&quot;font-family: 'Trebuchet MS';&quot;&gt;&amp;nbsp;&amp;nbsp;&lt;/font&gt;&lt;div&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;Codice che inserisco nel Form o dove voglio far apparire la ProgressBar :&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;&lt;br&gt;&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;font color=&quot;#808080&quot; face=&quot;Trebuchet MS&quot; size=&quot;2&quot; style=&quot;text-align: justify; text-indent: -24px;&quot;&gt;&lt;span style=&quot;line-height: 20px;&quot;&gt;CODICE VISUAL STUDIO 2010 - VISUAL BASIC .NET - VB.NET:&lt;/span&gt;&lt;/font&gt;&lt;span style=&quot;text-align: justify; text-indent: -24px; font-family: 'Trebuchet MS'; font-size: 10pt; color: rgb(128, 128, 128); line-height: 20px;&quot;&gt;&amp;nbsp;: (File :&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;text-align: justify; text-indent: -24px;&quot;&gt;&lt;font color=&quot;#808080&quot; face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;&lt;span style=&quot;line-height: 20px;&quot;&gt;Form1.vb)&lt;/span&gt;&lt;/font&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;div&gt;&lt;font&gt;&lt;pre class=&quot;sh_perl sh_sourceCode&quot; style=&quot;background-color: rgb(238, 238, 238); border: 1px solid rgb(136, 136, 136); padding: 1em;&quot;&gt; Public Class Form1
    Private newProgressBar As New ProgressBarNewStyle.MyProgressBarStyle(Color.Violet)
    Private newProgressBar1 As New ProgressBarNewStyle.MyProgressBarStyle(Color.GreenYellow)
    Public Sub New()
        InitializeComponent()
        
      
        newProgressBar.Location = New Point(12, 12)
        newProgressBar.Width = 200
        newProgressBar.colorText = Color.Black
        Me.Controls.Add(newProgressBar)

        newProgressBar1.Location = New Point(12, 50)
        newProgressBar1.Width = 276
        newProgressBar1.colorText = Color.Tomato
        Me.Controls.Add(newProgressBar1)

    End Sub


    Private Sub Button1_Click(sender As System.Object, e As System.EventArgs) Handles Button1.Click
        newProgressBar.Style = ProgressBarStyle.Blocks
        If newProgressBar.Value &amp;lt; newProgressBar.Maximum Then
            newProgressBar.ProgressBarLabelValue = newProgressBar.Value.ToString
            newProgressBar.Value += 10

        End If
    End Sub

    Private Sub Form1_Load(sender As System.Object, e As System.EventArgs) Handles MyBase.Load

    End Sub

    Private Sub Button2_Click(sender As System.Object, e As System.EventArgs) Handles Button2.Click
        newProgressBar1.Style = ProgressBarStyle.Blocks
        If newProgressBar1.Value &amp;lt; newProgressBar1.Maximum Then
            newProgressBar1.Value += 10
            newProgressBar1.ProgressBarLabelValue = newProgressBar1.Value.ToString
        End If
    End Sub

   
End Class
&lt;/pre&gt;&lt;/font&gt;&lt;font face=&quot;monospace&quot;&gt;&lt;span style=&quot;white-space: pre;&quot;&gt;&amp;nbsp;&lt;br&gt;&lt;/span&gt;&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-family: 'Trebuchet MS'; font-size: small;&quot;&gt;Potete scaricare il file d'esempio :&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;font-family: 'Trebuchet MS'; font-size: 13px;&quot;&gt;&lt;div style=&quot;font-size: small;&quot;&gt;&lt;font face=&quot;Trebuchet MS&quot;&gt;&lt;br&gt;&lt;/font&gt;&lt;/div&gt;&lt;div style=&quot;font-size: small;&quot;&gt;&lt;font face=&quot;Trebuchet MS&quot;&gt;Password : &amp;nbsp;&quot;ImaginSystem&quot;&amp;nbsp;&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Trebuchet MS&quot;&gt;&lt;font size=&quot;2&quot;&gt;Link File Download :&amp;nbsp;&lt;a href=&quot;http://www.mediafire.com/?aw3wxu6y2e37t12&quot;&gt;Download&amp;nbsp;Personalizzare il colore di una ProgressBar , Style ProgressBar&lt;/a&gt;&amp;nbsp;&lt;/font&gt;&lt;/font&gt;&lt;/div&gt;&lt;div style=&quot;font-size: 10pt;&quot;&gt;&lt;br&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style=&quot;font-family: 'Trebuchet MS'; font-size: 10pt;&quot;&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;&lt;br&gt;&lt;/font&gt;&lt;/div&gt;&lt;div style=&quot;font-family: 'Trebuchet MS'; font-size: 10pt;&quot;&gt;&lt;span style=&quot;color: rgb(128, 128, 128); font-family: 'trebuchet ms'; line-height: 20px;&quot;&gt;By ImaginSystems &amp;amp; Queen Gin&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;font-size: 10pt; color: rgb(128, 128, 128); font-family: 'trebuchet ms'; line-height: 20px; background-color: rgb(254, 253, 250);&quot;&gt;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;font size=&quot;2&quot; style=&quot;font-family: 'Trebuchet MS';&quot;&gt;&lt;br&gt;&lt;/font&gt;&lt;/div&gt;&lt;/div&gt;</description>
<dc:creator>Davide De Rubeis</dc:creator>
<slash:comments>0</slash:comments>
<comments>http://blogs.dotnethell.it/imaginsystems/ReadComment_19223.aspx</comments>
<category>VB.NET</category>
</item>
<item>
<title>Sql Server Optimizer - nice tool</title>
<link>http://blogs.dotnethell.it/DynamicsNAV/Post_19222.aspx</link>
<pubDate>Sun, 19 May 2013 11:38:08 +0100</pubDate>
<source url="http://blogs.dotnethell.it/DynamicsNAV/rss.aspx">Roberto Stefanetti</source>
<description>&lt;p&gt;

nice Sql Server tool from arthurgraus&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://www.sqlserveroptimizer.com/&quot;&gt;http://www.sqlserveroptimizer.com/&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;img style=&quot;width: 241px; height: 228px;&quot; src=&quot;/filestore/10847_sql_optimizer.png&quot; width=&quot;244&quot; height=&quot;251&quot;&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Blog&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://www.sqlserveroptimizer.com/category/blog/&quot;&gt;http://www.sqlserveroptimizer.com/category/blog/&lt;/a&gt;&lt;/p&gt;</description>
<dc:creator>Roberto Stefanetti</dc:creator>
<slash:comments>0</slash:comments>
<comments>http://blogs.dotnethell.it/DynamicsNAV/ReadComment_19222.aspx</comments>
<category>Sql Server 2012</category>
</item>
<item>
<title>Petizione &quot;Uno di noi&quot;</title>
<link>http://blogs.dotnethell.it/silvanopollena/Post_19221.aspx</link>
<pubDate>Sun, 19 May 2013 11:14:35 +0100</pubDate>
<source url="http://blogs.dotnethell.it/silvanopollena/rss.aspx">Carlo Silvano</source>
<description>Ieri sera ho firmato la petizione &quot;Uno di noi&quot; rivolta al Parlamento europeo affinch&#233; riconosca la dignit&#224; e il rispetto che merita l'embrione umano. Ci&#242; &#232; affermato anche nella sentenza CEG nel caso Brustle, che definisce l’embrione umano come l’inizio dello sviluppo dell’essere umano. Per garantire la coerenza nei settori di sua competenza dove la vita dell’embrione umano &#232; in gioco, l’Unione europea deve introdurre un divieto e porre fine al finanziamento di attivit&#224; presupponenti la distruzione di embrioni umani in particolare in tema di ricerca, aiuto allo sviluppo e sanit&#224; pubblica.
E' possibile firmare la petizione sul sito www.oneofus.eu</description>
<dc:creator>Carlo Silvano</dc:creator>
<slash:comments>0</slash:comments>
<comments>http://blogs.dotnethell.it/silvanopollena/ReadComment_19221.aspx</comments>
<category>Segnalazioni</category>
</item>
<item>
<title>Microsoft&#174; SQL Server&#174; 2012 Performance Dashboard Reports </title>
<link>http://blogs.dotnethell.it/DynamicsNAV/Post_19220.aspx</link>
<pubDate>Sat, 18 May 2013 14:46:43 +0100</pubDate>
<source url="http://blogs.dotnethell.it/DynamicsNAV/rss.aspx">Roberto Stefanetti</source>
<description>


&lt;font size=&quot;3&quot; face=&quot;Times New Roman&quot;&gt;

&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;b style=&quot;mso-bidi-font-weight: normal;&quot;&gt;&lt;span style=&quot;mso-ansi-language: EN-US;&quot; lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;3&quot;&gt;&lt;font face=&quot;Calibri&quot;&gt;Microsoft&#174; SQL Server&#174; 2012 Performance
Dashboard Reports &lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;mso-ansi-language: EN-US;&quot; lang=&quot;EN-US&quot;&gt;&lt;font face=&quot;Calibri&quot;&gt;&lt;font size=&quot;3&quot;&gt;The SQL
Server 2012 Performance Dashboard Reports are Reporting Services report files
designed to be used with the &lt;b style=&quot;mso-bidi-font-weight: normal;&quot;&gt;Custom
Reports feature of SQL Server Management Studio&lt;/b&gt;. &lt;?xml:namespace prefix = o ns = &quot;urn:schemas-microsoft-com:office:office&quot; /&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;Times New Roman&quot;&gt;

&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;mso-ansi-language: EN-US;&quot; lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;3&quot;&gt;&lt;font face=&quot;Calibri&quot;&gt;The reports
allow a database administrator to quickly identify whether there is a current
bottleneck on their system, and if a bottleneck is present, capture additional
diagnostic data that may be necessary to resolve the problem.&amp;nbsp;&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;Times New Roman&quot;&gt;

&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;font size=&quot;3&quot;&gt;&lt;font face=&quot;Calibri&quot;&gt;&lt;b style=&quot;mso-bidi-font-weight: normal;&quot;&gt;&lt;u&gt;&lt;span style=&quot;mso-ansi-language: EN-US;&quot; lang=&quot;EN-US&quot;&gt;Common performance problems&lt;/span&gt;&lt;/u&gt;&lt;/b&gt;&lt;span style=&quot;mso-ansi-language: EN-US;&quot; lang=&quot;EN-US&quot;&gt; that the dashboard reports may help
to resolve include: &lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;mso-ansi-language: EN-US;&quot; lang=&quot;EN-US&quot;&gt;&lt;font face=&quot;Calibri&quot;&gt;&lt;font size=&quot;3&quot;&gt;- &lt;b style=&quot;mso-bidi-font-weight: normal;&quot;&gt;CPU bottlenecks&lt;/b&gt; (and what queries are
consuming the most CPU)&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;mso-ansi-language: EN-US;&quot; lang=&quot;EN-US&quot;&gt;&lt;font face=&quot;Calibri&quot;&gt;&lt;font size=&quot;3&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&lt;/span&gt;- &lt;b style=&quot;mso-bidi-font-weight: normal;&quot;&gt;IO
bottlenecks&lt;/b&gt; (and what queries are performing the most IO)&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;mso-ansi-language: EN-US;&quot; lang=&quot;EN-US&quot;&gt;&lt;font face=&quot;Calibri&quot;&gt;&lt;font size=&quot;3&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&lt;/span&gt;- &lt;b style=&quot;mso-bidi-font-weight: normal;&quot;&gt;Index
recommendations generated by the query optimizer&lt;/b&gt; (missing indexes)&lt;o:p&gt;&lt;/o:p&gt;&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;Times New Roman&quot;&gt;

&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;mso-ansi-language: EN-US;&quot; lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;3&quot;&gt;&lt;font face=&quot;Calibri&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&lt;/span&gt;- &lt;b style=&quot;mso-bidi-font-weight: normal;&quot;&gt;Blocking&lt;/b&gt;&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;mso-ansi-language: EN-US;&quot; lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;3&quot;&gt;&lt;font face=&quot;Calibri&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&lt;/span&gt;- &lt;b style=&quot;mso-bidi-font-weight: normal;&quot;&gt;Latch
contention&lt;/b&gt;&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;b style=&quot;mso-bidi-font-weight: normal;&quot;&gt;&lt;span style=&quot;mso-ansi-language: EN-US;&quot; lang=&quot;EN-US&quot;&gt;&lt;/span&gt;&lt;/b&gt;&lt;font size=&quot;3&quot; face=&quot;Times New Roman&quot;&gt;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;font size=&quot;3&quot;&gt;&lt;font face=&quot;Calibri&quot;&gt;&lt;b style=&quot;mso-bidi-font-weight: normal;&quot;&gt;&lt;u&gt;&lt;span style=&quot;mso-ansi-language: EN-US;&quot; lang=&quot;EN-US&quot;&gt;How To:&lt;/span&gt;&lt;/u&gt;&lt;/b&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;mso-ansi-language: EN-US;&quot; lang=&quot;EN-US&quot;&gt;&lt;font face=&quot;Calibri&quot;&gt;&lt;font size=&quot;3&quot;&gt;The
information &lt;b style=&quot;mso-bidi-font-weight: normal;&quot;&gt;&lt;u&gt;captured in the reports&lt;/u&gt;&lt;/b&gt;
is retrieved from SQL Server's dynamic management views. &lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;mso-ansi-language: EN-US;&quot; lang=&quot;EN-US&quot;&gt;&lt;font face=&quot;Calibri&quot;&gt;&lt;font size=&quot;3&quot;&gt;There is no
additional tracing or data capture required, which means &lt;b style=&quot;mso-bidi-font-weight: normal;&quot;&gt;the information is always available&lt;/b&gt; and this is a &lt;b style=&quot;mso-bidi-font-weight: normal;&quot;&gt;very inexpensive&lt;/b&gt; means of monitoring
your server.&lt;o:p&gt;&lt;/o:p&gt;&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;Times New Roman&quot;&gt;

&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;i style=&quot;mso-bidi-font-style: normal;&quot;&gt;&lt;span style=&quot;mso-ansi-language: EN-US;&quot; lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;3&quot;&gt;&lt;font face=&quot;Calibri&quot;&gt;&quot;&lt;b style=&quot;mso-bidi-font-weight: normal;&quot;&gt;&lt;u&gt;Reporting Services is not required to be
installed to use the Performance Dashboard Reports&quot;&lt;/u&gt;&lt;/b&gt;&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/i&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;mso-ansi-language: EN-US;&quot; lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;3&quot;&gt;&lt;font face=&quot;Calibri&quot;&gt;&lt;img style=&quot;width: 436px; height: 335px;&quot; src=&quot;/filestore/10846_sql_perf.jpg&quot; width=&quot;388&quot; height=&quot;314&quot;&gt;&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;mso-ansi-language: EN-US;&quot; lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;3&quot;&gt;&lt;font face=&quot;Calibri&quot;&gt;Download@&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp; &lt;/span&gt;&lt;b style=&quot;mso-bidi-font-weight: normal;&quot;&gt;&lt;a href=&quot;http://www.microsoft.com/en-us/download/details.aspx?id=29063&quot;&gt;http://www.microsoft.com/en-us/download/details.aspx?id=29063&lt;/a&gt;&lt;/b&gt;&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;font size=&quot;3&quot;&gt;&lt;font face=&quot;Calibri&quot;&gt;&lt;span style=&quot;mso-fareast-language: IT; mso-no-proof: yes;&quot;&gt;&lt;?xml:namespace prefix = v ns = &quot;urn:schemas-microsoft-com:vml&quot; /&gt;&lt;v:shapetype id=&quot;_x0000_t75&quot; stroked=&quot;f&quot; filled=&quot;f&quot; path=&quot;m@4@5l@4@11@9@11@9@5xe&quot; o:preferrelative=&quot;t&quot; o:spt=&quot;75&quot; coordsize=&quot;21600,21600&quot;&gt;&lt;v:stroke joinstyle=&quot;miter&quot;&gt;&amp;nbsp;&lt;v:formulas&gt;
  &lt;v:f eqn=&quot;if lineDrawn pixelLineWidth 0&quot;&gt;
  &lt;v:f eqn=&quot;sum @0 1 0&quot;&gt;
  &lt;v:f eqn=&quot;sum 0 0 @1&quot;&gt;
  &lt;v:f eqn=&quot;prod @2 1 2&quot;&gt;
  &lt;v:f eqn=&quot;prod @3 21600 pixelWidth&quot;&gt;
  &lt;v:f eqn=&quot;prod @3 21600 pixelHeight&quot;&gt;
  &lt;v:f eqn=&quot;sum @0 0 1&quot;&gt;
  &lt;v:f eqn=&quot;prod @6 1 2&quot;&gt;
  &lt;v:f eqn=&quot;prod @7 21600 pixelWidth&quot;&gt;
  &lt;v:f eqn=&quot;sum @8 21600 0&quot;&gt;
  &lt;v:f eqn=&quot;prod @7 21600 pixelHeight&quot;&gt;
  &lt;v:f eqn=&quot;sum @10 21600 0&quot;&gt;
&lt;/v:f&gt;&lt;/v:f&gt;&lt;/v:f&gt;&lt;/v:f&gt;&lt;/v:f&gt;&lt;/v:f&gt;&lt;/v:f&gt;&lt;/v:f&gt;&lt;/v:f&gt;&lt;/v:f&gt;&lt;/v:f&gt;&lt;/v:f&gt;&lt;/v:formulas&gt;&lt;/v:stroke&gt;&lt;/v:shapetype&gt;&lt;v:shape style=&quot;width: 318pt; height: 241.5pt; visibility: visible; mso-wrap-style: square;&quot; id=&quot;Immagine_x0020_2&quot; type=&quot;#_x0000_t75&quot; o:spid=&quot;_x0000_i1025&quot;&gt;&lt;v:imagedata o:title=&quot;&quot; src=&quot;file:///C:\Users\Luca\AppData\Local\Temp\msohtmlclip1\01\clip_image001.png&quot;&gt;
&lt;/v:imagedata&gt;&lt;/v:shape&gt;&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;mso-ansi-language: EN-US;&quot; lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;3&quot;&gt;&lt;font face=&quot;Calibri&quot;&gt;&lt;strong&gt;&lt;/strong&gt;&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&amp;nbsp;&lt;/p&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;mso-ansi-language: EN-US;&quot; lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;3&quot;&gt;&lt;font face=&quot;Calibri&quot;&gt;&lt;strong&gt;Another great
free tool&lt;/strong&gt; from Microsoft !&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
</description>
<dc:creator>Roberto Stefanetti</dc:creator>
<slash:comments>0</slash:comments>
<comments>http://blogs.dotnethell.it/DynamicsNAV/ReadComment_19220.aspx</comments>
<category>Sql Server 2012</category>
</item>
<item>
<title>Bloccare la pagina durante il caricamento</title>
<link>http://blogs.dotnethell.it/DevelopmentPost/Post_19219.aspx</link>
<pubDate>Fri, 17 May 2013 12:34:33 +0100</pubDate>
<source url="http://blogs.dotnethell.it/DevelopmentPost/rss.aspx">[b]Edoardo[/b] </source>
<description>&lt;div align=&quot;center&quot;&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;o:OfficeDocumentSettings&gt;
  &lt;o:AllowPNG/&gt;
 &lt;/o:OfficeDocumentSettings&gt;
&lt;/xml&gt;&lt;![endif]--&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;b&gt;&lt;span style=&quot;font-size:14.0pt;mso-bidi-font-size:11.0pt;
line-height:115%&quot;&gt;jquery.blockUI&lt;/span&gt;&lt;/b&gt;&lt;span style=&quot;font-size:14.0pt;
mso-bidi-font-size:11.0pt;line-height:115%&quot;&gt;&lt;/span&gt;&lt;/p&gt;

&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;w:WordDocument&gt;
  &lt;w:View&gt;Normal&lt;/w:View&gt;
  &lt;w:Zoom&gt;0&lt;/w:Zoom&gt;
  &lt;w:TrackMoves/&gt;
  &lt;w:TrackFormatting/&gt;
  &lt;w:HyphenationZone&gt;14&lt;/w:HyphenationZone&gt;
  &lt;w:PunctuationKerning/&gt;
  &lt;w:ValidateAgainstSchemas/&gt;
  &lt;w:SaveIfXMLInvalid&gt;false&lt;/w:SaveIfXMLInvalid&gt;
  &lt;w:IgnoreMixedContent&gt;false&lt;/w:IgnoreMixedContent&gt;
  &lt;w:AlwaysShowPlaceholderText&gt;false&lt;/w:AlwaysShowPlaceholderText&gt;
  &lt;w:DoNotPromoteQF/&gt;
  &lt;w:LidThemeOther&gt;IT&lt;/w:LidThemeOther&gt;
  &lt;w:LidThemeAsian&gt;X-NONE&lt;/w:LidThemeAsian&gt;
  &lt;w:LidThemeComplexScript&gt;X-NONE&lt;/w:LidThemeComplexScript&gt;
  &lt;w:Compatibility&gt;
   &lt;w:BreakWrappedTables/&gt;
   &lt;w:SnapToGridInCell/&gt;
   &lt;w:WrapTextWithPunct/&gt;
   &lt;w:UseAsianBreakRules/&gt;
   &lt;w:DontGrowAutofit/&gt;
   &lt;w:SplitPgBreakAndParaMark/&gt;
   &lt;w:EnableOpenTypeKerning/&gt;
   &lt;w:DontFlipMirrorIndents/&gt;
   &lt;w:OverrideTableStyleHps/&gt;
  &lt;/w:Compatibility&gt;
  &lt;m:mathPr&gt;
   &lt;m:mathFont m:val=&quot;Cambria Math&quot;/&gt;
   &lt;m:brkBin m:val=&quot;before&quot;/&gt;
   &lt;m:brkBinSub m:val=&quot;&amp;#45;-&quot;/&gt;
   &lt;m:smallFrac m:val=&quot;off&quot;/&gt;
   &lt;m:dispDef/&gt;
   &lt;m:lMargin m:val=&quot;0&quot;/&gt;
   &lt;m:rMargin m:val=&quot;0&quot;/&gt;
   &lt;m:defJc m:val=&quot;centerGroup&quot;/&gt;
   &lt;m:wrapIndent m:val=&quot;1440&quot;/&gt;
   &lt;m:intLim m:val=&quot;subSup&quot;/&gt;
   &lt;m:naryLim m:val=&quot;undOvr&quot;/&gt;
  &lt;/m:mathPr&gt;&lt;/w:WordDocument&gt;
&lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;w:LatentStyles DefLockedState=&quot;false&quot; DefUnhideWhenUsed=&quot;true&quot;
  DefSemiHidden=&quot;true&quot; DefQFormat=&quot;false&quot; DefPriority=&quot;99&quot;
  LatentStyleCount=&quot;267&quot;&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;0&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; QFormat=&quot;true&quot; Name=&quot;Normal&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;9&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; QFormat=&quot;true&quot; Name=&quot;heading 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;9&quot; QFormat=&quot;true&quot; Name=&quot;heading 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;9&quot; QFormat=&quot;true&quot; Name=&quot;heading 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;9&quot; QFormat=&quot;true&quot; Name=&quot;heading 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;9&quot; QFormat=&quot;true&quot; Name=&quot;heading 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;9&quot; QFormat=&quot;true&quot; Name=&quot;heading 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;9&quot; QFormat=&quot;true&quot; Name=&quot;heading 7&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;9&quot; QFormat=&quot;true&quot; Name=&quot;heading 8&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;9&quot; QFormat=&quot;true&quot; Name=&quot;heading 9&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;39&quot; Name=&quot;toc 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;39&quot; Name=&quot;toc 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;39&quot; Name=&quot;toc 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;39&quot; Name=&quot;toc 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;39&quot; Name=&quot;toc 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;39&quot; Name=&quot;toc 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;39&quot; Name=&quot;toc 7&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;39&quot; Name=&quot;toc 8&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;39&quot; Name=&quot;toc 9&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;35&quot; QFormat=&quot;true&quot; Name=&quot;caption&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;10&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; QFormat=&quot;true&quot; Name=&quot;Title&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;1&quot; Name=&quot;Default Paragraph Font&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;11&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; QFormat=&quot;true&quot; Name=&quot;Subtitle&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;22&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; QFormat=&quot;true&quot; Name=&quot;Strong&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;20&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; QFormat=&quot;true&quot; Name=&quot;Emphasis&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;59&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Table Grid&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; UnhideWhenUsed=&quot;false&quot; Name=&quot;Placeholder Text&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;1&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; QFormat=&quot;true&quot; Name=&quot;No Spacing&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;60&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light Shading&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;61&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light List&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;62&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light Grid&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;63&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Shading 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;64&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Shading 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;65&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium List 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;66&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium List 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;67&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;68&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;69&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;70&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Dark List&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;71&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful Shading&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;72&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful List&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;73&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful Grid&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;60&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light Shading Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;61&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light List Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;62&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light Grid Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;63&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Shading 1 Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;64&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Shading 2 Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;65&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium List 1 Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; UnhideWhenUsed=&quot;false&quot; Name=&quot;Revision&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;34&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; QFormat=&quot;true&quot; Name=&quot;List Paragraph&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;29&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; QFormat=&quot;true&quot; Name=&quot;Quote&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;30&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; QFormat=&quot;true&quot; Name=&quot;Intense Quote&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;66&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium List 2 Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;67&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 1 Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;68&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 2 Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;69&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 3 Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;70&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Dark List Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;71&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful Shading Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;72&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful List Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;73&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful Grid Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;60&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light Shading Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;61&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light List Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;62&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light Grid Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;63&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Shading 1 Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;64&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Shading 2 Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;65&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium List 1 Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;66&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium List 2 Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;67&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 1 Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;68&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 2 Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;69&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 3 Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;70&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Dark List Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;71&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful Shading Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;72&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful List Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;73&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful Grid Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;60&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light Shading Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;61&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light List Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;62&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light Grid Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;63&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Shading 1 Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;64&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Shading 2 Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;65&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium List 1 Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;66&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium List 2 Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;67&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 1 Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;68&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 2 Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;69&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 3 Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;70&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Dark List Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;71&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful Shading Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;72&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful List Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;73&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful Grid Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;60&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light Shading Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;61&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light List Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;62&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light Grid Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;63&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Shading 1 Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;64&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Shading 2 Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;65&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium List 1 Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;66&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium List 2 Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;67&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 1 Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;68&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 2 Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;69&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 3 Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;70&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Dark List Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;71&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful Shading Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;72&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful List Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;73&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful Grid Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;60&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light Shading Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;61&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light List Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;62&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light Grid Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;63&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Shading 1 Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;64&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Shading 2 Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;65&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium List 1 Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;66&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium List 2 Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;67&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 1 Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;68&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 2 Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;69&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 3 Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;70&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Dark List Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;71&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful Shading Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;72&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful List Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;73&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful Grid Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;60&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light Shading Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;61&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light List Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;62&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light Grid Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;63&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Shading 1 Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;64&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Shading 2 Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;65&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium List 1 Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;66&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium List 2 Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;67&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 1 Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;68&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 2 Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;69&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 3 Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;70&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Dark List Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;71&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful Shading Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;72&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful List Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;73&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful Grid Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;19&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; QFormat=&quot;true&quot; Name=&quot;Subtle Emphasis&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;21&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; QFormat=&quot;true&quot; Name=&quot;Intense Emphasis&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;31&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; QFormat=&quot;true&quot; Name=&quot;Subtle Reference&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;32&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; QFormat=&quot;true&quot; Name=&quot;Intense Reference&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;33&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; QFormat=&quot;true&quot; Name=&quot;Book Title&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;37&quot; Name=&quot;Bibliography&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;39&quot; QFormat=&quot;true&quot; Name=&quot;TOC Heading&quot;/&gt;
 &lt;/w:LatentStyles&gt;
&lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 10]&gt;
&lt;style&gt;
 /* Style Definitions */
 table.MsoNormalTable
	{mso-style-name:&quot;Table Normal&quot;;
	mso-tstyle-rowband-size:0;
	mso-tstyle-colband-size:0;
	mso-style-noshow:yes;
	mso-style-priority:99;
	mso-style-parent:&quot;&quot;;
	mso-padding-alt:0cm 5.4pt 0cm 5.4pt;
	mso-para-margin-top:0cm;
	mso-para-margin-right:0cm;
	mso-para-margin-bottom:10.0pt;
	mso-para-margin-left:0cm;
	line-height:115%;
	mso-pagination:widow-orphan;
	font-size:11.0pt;
	font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
	mso-ascii-font-family:Calibri;
	mso-ascii-theme-font:minor-latin;
	mso-hansi-font-family:Calibri;
	mso-hansi-theme-font:minor-latin;
	mso-fareast-language:EN-US;}
&lt;/style&gt;
&lt;![endif]--&gt;&lt;/div&gt;&lt;br&gt;Con Jquery &#232; possibile bloccare la UI durante il caricamento della pagina utilizzando il plugin &lt;b&gt;jquery.blockUI&lt;/b&gt;&lt;br&gt;&lt;br&gt;&amp;lt;script type=&quot;text/javascript&quot;&amp;gt;&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $.blockUI({ message: '&amp;lt;h1&amp;gt;&amp;lt;img src=&quot;~/App_Themes/wHTheme/img_wHCore/Loading.gif&quot; /&amp;gt; Just a moment...&amp;lt;/h1&amp;gt;' });&lt;br&gt;&amp;nbsp;&amp;nbsp; &lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $(document).ready(function () {&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $(window).load(function () { $.unblockUI(); }); //load everything including images.&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //--or--&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //$.unblockUI(); //only make sure the document is full loaded, including scripts.&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; });&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;lt;/script&amp;gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;E' anche possibile bloccare la pagina quando viene eseguita una chiamata Ajax al server finch&#232; il server non risponde.&lt;br&gt;&lt;br&gt;$(document).ajaxStart($.blockUI).ajaxStop($.unblockUI);&lt;br&gt;</description>
<dc:creator>[b]Edoardo[/b] </dc:creator>
<slash:comments>0</slash:comments>
<comments>http://blogs.dotnethell.it/DevelopmentPost/ReadComment_19219.aspx</comments>
<category>Jscript</category>
</item>
<item>
<title>Accessing Objects in Other Databases or on Linked Servers</title>
<link>http://blogs.dotnethell.it/DynamicsNAV/Post_19218.aspx</link>
<pubDate>Fri, 17 May 2013 11:09:39 +0100</pubDate>
<source url="http://blogs.dotnethell.it/DynamicsNAV/rss.aspx">Roberto Stefanetti</source>
<description>&lt;P&gt;&lt;STRONG&gt;&lt;U&gt;Accessing Objects in Other Databases or on Linked Servers&lt;/U&gt;&amp;nbsp; &lt;IMG src=&quot;/icons/thumbs_up.gif&quot;&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;DIV class=lw_vs&gt;
&lt;DIV id=curversion&gt;You can access objects outside the current database or server from Microsoft Dynamics NAV by linking to an appropriately defined view in the current database. You can create a view definition outside of Microsoft Dynamics NAV that accesses data on SQL Server linked servers, which can access heterogeneous data sources. This could, for example, involve performing a join of an Oracle table, a Microsoft Office Access table, or a Microsoft Office Excel spreadsheet.&lt;/DIV&gt;&lt;/DIV&gt;
&lt;DIV id=mainSection&gt;
&lt;DIV id=mainBody&gt;
&lt;P&gt;To access objects in other databases or on linked servers you must comply with the following rules:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;
&lt;P&gt;You must set the &lt;STRONG&gt;LinkedInTransaction&lt;/STRONG&gt; table property to &lt;STRONG&gt;No&lt;/STRONG&gt; in order to use a view referring to objects outside of the current database. The ability to modify data in these objects is dependent on the data providers that the objects refer to.&lt;/P&gt;
&lt;LI&gt;
&lt;P&gt;You must be a member of the db_owner fixed database role in the current database to access objects in other databases or on linked servers.&lt;/P&gt;
&lt;LI&gt;
&lt;P&gt;All security permissions for objects in another database or on linked servers must be granted outside Microsoft Dynamics NAV to the appropriate SQL Server logins.&lt;/P&gt;
&lt;LI&gt;
&lt;P&gt;If a linked object refers to a view that accesses objects that are stored in another database on the same server, this view must be treated as though it were accessing a linked server.&lt;/P&gt;
&lt;LI&gt;&lt;STRONG&gt;MSDN Link&lt;/STRONG&gt; 
&lt;LI&gt;- &lt;A href=&quot;http://msdn.microsoft.com/en-us/library/dd355092.aspx&quot;&gt;http://msdn.microsoft.com/en-us/library/dd355092.aspx&lt;/A&gt; 
&lt;LI&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
<dc:creator>Roberto Stefanetti</dc:creator>
<slash:comments>0</slash:comments>
<comments>http://blogs.dotnethell.it/DynamicsNAV/ReadComment_19218.aspx</comments>
<category>Dynamics NAV 2009 e R2</category>
</item>
<item>
<title>PC Professionale maggio 2013</title>
<link>http://blogs.dotnethell.it/ciupaz/Post_19217.aspx</link>
<pubDate>Fri, 17 May 2013 10:10:58 +0100</pubDate>
<source url="http://blogs.dotnethell.it/ciupaz/rss.aspx">Luigi Zambetti</source>
<description>


&lt;p&gt;

&lt;a href=&quot;http://www.pcprofessionale.it/2013/04/26/il-sommario-di-maggio-2013/&quot;&gt;&lt;img src=&quot;http://blogs.dotnethell.it/filestore/10838_PcProMaggio2013_N266.jpg&quot;&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;E tanto per cambiare anche questo numero mi &#232; arrivato tardi, il 10 maggio, peggio ancora del mese scorso. &lt;br&gt;Va beh, mi devo allora abituare all’idea. &lt;br&gt;Mi salva soltanto, se pu&#242; essere una consolazione, solo il fatto che le 186 pagine di questo mese riportano pochi argomenti interessanti per i miei gusti. &lt;br&gt;Mi limito quindi a segnalare quelle piccole chicche che comunque si riescono a trovare in ogni numero di PC Professionale. &lt;br&gt;Come primo assaggio metterei l’approfondita recensione (non ho trovato di meglio) recensione del nuovo smartphone Blackberry, il rinomato Z10. Ben 4 dense pagine con tanto di piccolo tutorial su come si usa il suo nuovo sistema operativo, il Blackberry 10. &lt;/p&gt;&lt;p&gt;&lt;img src=&quot;http://blogs.dotnethell.it/filestore/10839_PcProMaggio2013_ArticoloBlackberry_750_x_421.jpg&quot;&gt;&lt;/p&gt;&lt;p&gt;Come si vede, come voto riceve un leggermente magro 7,5, imputabile essenzialmente al prezzo (700 euro non sono pochi) e al suo store online, non ancora ai livelli della concorrenza (ovvero Android e iOS). &lt;br&gt;L’apparecchio &#232; comunque di altissima qualit&#224;. I fan dei Blackberry (e ce ne sono ancora) ci faranno sicuramente un pensierino. &lt;br&gt;Torno una pagine indietro per segnalare l’introduzione a questa rubrica Hardware. &lt;/p&gt;&lt;p&gt;&lt;img src=&quot;http://blogs.dotnethell.it/filestore/10840_PcProMaggio2013_TouchFlop_750_x_421.jpg&quot;&gt;&lt;/p&gt;&lt;p&gt;Il touchscreen &#232; davvero un flop? &lt;br&gt;Eccome se lo &#232;! E posso dirlo dopo aver subito abbandonato l’idea di toccare lo schermo del mio nuovo Dell Inspiron 15R. Troppo faticoso, troppo scomodo, il mouse e la tastiera (se vogliamo basta solo quest’ultima) rimangono principi e lo resteranno ancora per un bel po’. Eugenio Moschini – l’autore di questa introduzione – la pensa esattamente come me. &lt;br&gt;Restando in tema smartphone che, ricordiamolo, &#232; uno dei pochissimi settori informatici che mostra una certa vivacit&#224; di mercato anche in questo periodo di crisi, consiglierei l’articolo di pag. 54 (10 pagine) che mostra pregi&amp;amp;difetti di ben 20 terminali accomunati dal fatto di costare meno di 200 euro, i cosiddetti entry-level. &lt;/p&gt;&lt;p&gt;&lt;img src=&quot;http://blogs.dotnethell.it/filestore/10841_PcProMaggio2013_ArticoloSmartphone_750_x_421.jpg&quot;&gt;&lt;/p&gt;&lt;p&gt;&#200; un articolo molto ben fatto e piacevole da leggere. Con poche parole e le principali caratteristiche si ha subito un colpo d’occhio di quanto offre attualmente il mercato. Data la numerosit&#224; dei prodotti presentati, non vengono riportate le votazioni e i Pro&amp;amp;Contro, ma la loro recensione &#232; solo descrittiva. &lt;br&gt;Nemmeno ero a conoscenza dell’interessantissima suite per ufficio Kingston Office 2012, presentata come primo articolo della rubrica Software a pag. 48. Mi pare un’alternativa a Microsoft Office da prendere davvero in considerazione, sia per le sue funzionalit&#224; (&#232; molto ricca) sia per il prezzo concorrenziale (gratuita la versione base, solo 60 euro quella Professional).&lt;br&gt;Nel Dvd “on-the-cloud” presente sul sito di PC Professionale &#232; scaricabile la versione Standard (una via di mezzo tra la Free e la Professional) attivabile gratis per un anno. &lt;br&gt;Chi la vuole provare, anche come alternativa a Libre Office, &#232; il benvenuto. &lt;/p&gt;&lt;p&gt;Restando in tema Office, Word in particolare (ma vale anche per gli altri componenti) rivedo a pag. 148 – rubrica Hacks – quanto scrissi in questo &lt;a href=&quot;http://blogs.dotnethell.it/ciupaz/Menu-lower-case-in-Office-2013__19031.aspx&quot;&gt;post&lt;/a&gt; &lt;br&gt;del 4 febbraio scorso, ovvero come rendere in minuscolo le voci di menu del nuovo Office 2013. &lt;br&gt;Praticamente vengono riportate le stesse cose che avevo scritto io, ma qua hanno un aspetto molto pi&#249; professionale ;-)&lt;/p&gt;&lt;p&gt;&lt;img src=&quot;http://blogs.dotnethell.it/filestore/10842_PcProMaggio2013_TipOffice2013_750_x_421.jpg&quot;&gt;&lt;/p&gt;&lt;p&gt;A pag. 70 c’&#232; invece il focus del mese che riassume le caratteristiche di 50 programmi freeware. &lt;br&gt;Ho notato che hanno fatto una bella ricerca; la maggior parte di essi, infatti, non li avevo mai sentiti nominare (ed io ne uso non pochi). &lt;br&gt;Un articolo da tenere come riferimento, anche perch&#233; sono ben suddivisi per categorie: internet, multimedia, produttivit&#224;, sicurezza e utility. &lt;br&gt;Alla fine di questo lungo articolo c’&#232; un box che riporta i cosiddetti “strumenti indispensabili”. &lt;br&gt;Come si farebbe a meno di Adobe Reader, VLC, Skype e cos&#236; via? &lt;/p&gt;&lt;p&gt;Termino con la rubrica Sviluppo. &lt;/p&gt;&lt;p&gt;&lt;img src=&quot;http://blogs.dotnethell.it/filestore/10843_PcProMaggio2013_SviluppoIOS_750_x_421.jpg&quot;&gt;&lt;/p&gt;&lt;p&gt;4 pagine interessantissime sullo sviluppo mobile con iOS, con tanto di schermate di XCode e consigli generali (ma zero codice). Speriamo che l’autore prosegua con altre puntate sul medesimo argomento, in modo da realizzare una sorta di guida completa su questo argomento. Staremo a vedere. &lt;/p&gt;&lt;p&gt;Per il &lt;strong&gt;Dvd&lt;/strong&gt;, ecco la sua home page. &lt;/p&gt;&lt;p&gt;&lt;img src=&quot;http://blogs.dotnethell.it/filestore/10844_PcProMaggio2013_N266_HomePageDVD_674_x_897.jpg&quot;&gt;&lt;/p&gt;&lt;p&gt;Adesso, con la storia del cloud, sono spariti i contenuti video (tutorial e webcast) che arricchivano i precedenti Dvd. Ritorneranno (anche scaricabili online)?&lt;br&gt;Lo spero vivamente, perch&#233; era una delle mie parti preferite. &lt;/p&gt;&lt;p&gt;&lt;strong&gt;Sommario&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;First Looks&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Hardware&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;Editoriale Hardware&lt;br&gt;Touchscreen, per ora un flop&lt;/p&gt;&lt;p&gt;- Inizia la rivoluzione BlackBerry&lt;br&gt;- Samsung Ativ Smart Pc, tablet universale&lt;br&gt;- La Fujifilm X-E1, una mirrorless di classe&lt;br&gt;- Archos Tv Connect, Web e app Android sul grande schermo&lt;br&gt;- L’action-cam si indossa come un paio di occhiali: Panasonic Hx-A100&lt;br&gt;- Per veri appassionati di fotografia: Canon Pixma Pro-100&lt;br&gt;- Xerox WorkCentre 6605, efficienza e qualit&#224; nella stampa a colori&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Software&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;Editoriale Software&lt;br&gt;Un futuro tinto di Blue&lt;br&gt;Leggi l’editoriale&lt;/p&gt;&lt;p&gt;- Kingsoft Office 2012, una suite moderna ed economica&lt;br&gt;- Produttivit&#224; alle stelle con PhraseExpress 9&lt;br&gt;- VideoStudio Ultimate X6: il 4K &#232; servito&lt;br&gt;- Musica senza difetti con Audio Cleanic 2013&lt;/p&gt;&lt;p&gt;&lt;strong&gt;In Profondit&#224;&lt;/strong&gt;&lt;br&gt;Prove&lt;/p&gt;&lt;p&gt;Freeware mai visto&lt;br&gt;Cinquanta ottimi programmi gratuiti: produttivit&#224;, multimedia e utility&lt;/p&gt;&lt;p&gt;Audio low cost&lt;br&gt;In prova nove sistemi stereo con e senza subwoofer a meno di 150 euro&lt;/p&gt;&lt;p&gt;Piccolo &#232; bello&lt;br&gt;Undici personal computer ultracompatti che possono sostituire il tradizionale desktop&lt;/p&gt;&lt;p&gt;Ottenere il massimo dal router&lt;br&gt;Installando un firmware alternativo si possono incrementare prestazioni e funzionalit&#224;&lt;/p&gt;&lt;p&gt;Lettori multimediali&lt;br&gt;Quattro media extender super evoluti in grado di riprodurre anche le copie 1:1 dei Blu-ray 3D&lt;br&gt;&lt;br&gt;&lt;strong&gt;Tecnologia&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;Smartphone sotto i 200 euro&lt;br&gt;Oggi si pu&#242; comprare un valido telefono Android spendendo relativamente poco: scopriamo cosa c’&#232; sul mercato&lt;/p&gt;&lt;p&gt;Rubriche&lt;br&gt;Hacks&lt;/p&gt;&lt;p&gt;Trucchi e segreti per sistemi operativi e applicazioni, strategie di sicurezza, tool utilissimi ma poco conosciuti&lt;/p&gt;&lt;p&gt;Apps&lt;br&gt;Tante applicazioni per dispositivi iOS e Android e i consigli per sfruttarle al meglio&lt;/p&gt;&lt;p&gt;Internet&lt;br&gt;Google manda in pensione i feed RSS?&lt;/p&gt;&lt;p&gt;Sviluppo&lt;br&gt;Programmazione mobile: primi passi con iOs&lt;/p&gt;&lt;p&gt;Linux&lt;br&gt;Facciamo il punto sulla grafica vettoriale&lt;/p&gt;&lt;p&gt;Giochi&lt;br&gt;- Bioshock: un viaggio nella citt&#224; volante di Columbia&lt;br&gt;- Crysis 3: la prossima generazione di giochi &#232; qui&lt;br&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;PC Professionale N. 266&lt;br&gt;Maggio 2013&lt;br&gt;Prezzo: 6,40 €&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;NB&lt;br&gt;Foto realizzate con Sony Xperia ion.&lt;br&gt;&lt;/p&gt;&lt;script src=&quot;http://cdn.wibiya.com/Toolbars/dir_0029/Toolbar_29551/Loader_29551.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;



</description>
<dc:creator>Luigi Zambetti</dc:creator>
<slash:comments>0</slash:comments>
<comments>http://blogs.dotnethell.it/ciupaz/ReadComment_19217.aspx</comments>
<category>PC Professionale</category>
</item>
<item>
<title>JAVA -   Esercizio di Programmazione controllo omonimi di un Array (POO) </title>
<link>http://blogs.dotnethell.it/imaginsystems/Post_19216.aspx</link>
<pubDate>Thu, 16 May 2013 23:39:12 +0100</pubDate>
<source url="http://blogs.dotnethell.it/imaginsystems/rss.aspx">Davide De Rubeis</source>
<description>&lt;div style=&quot;font-family: 'Trebuchet MS'; font-size: 10pt;&quot;&gt;&lt;h1 style=&quot;padding: 0px 0px 10px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(235, 235, 235); background-color: rgb(255, 255, 255);&quot;&gt;&lt;span style=&quot;font-size: 20px;&quot;&gt;JAVA - &amp;nbsp;&lt;/span&gt;&lt;font face=&quot;Trebuchet MS&quot;&gt;&lt;span style=&quot;font-size: 20px;&quot;&gt;&amp;nbsp;Esercizio di Programmazione controllo omonimi di un Array (POO)&amp;nbsp;&lt;/span&gt;&lt;/font&gt;&lt;/h1&gt;&lt;/div&gt;&lt;div style=&quot;font-family: 'Trebuchet MS'; font-size: 10pt; text-align: center;&quot;&gt;&lt;br&gt;&lt;/div&gt;&lt;div style=&quot;font-family: 'Trebuchet MS'; font-size: 10pt; text-align: center;&quot;&gt;&lt;img src=&quot;http://blogs.dotnethell.it/filestore/10783_images_9.jpg&quot;&gt;&lt;/div&gt;&lt;div style=&quot;font-family: 'Trebuchet MS'; font-size: 10pt; text-align: center;&quot;&gt;&lt;br&gt;&lt;/div&gt;&lt;div style=&quot;font-family: 'Trebuchet MS'; font-size: 10pt; text-align: center;&quot;&gt;&lt;br&gt;&lt;/div&gt;&lt;div style=&quot;font-family: 'Trebuchet MS'; font-size: 10pt;&quot;&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;Esercizio&lt;/font&gt;&lt;span style=&quot;font-size: 10pt;&quot;&gt;&amp;nbsp;per il corso di Programmazione Orientata agli Oggetti (POO) , Uni Roma Tre .&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;font-family: 'Trebuchet MS'; font-size: 10pt;&quot;&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;L'obbiettivo dell'esercizio &#232; di restituire una Map&amp;lt;String,Integer&amp;gt; dove contiene il nome e il numero di volte che si ripete nell'Array .&lt;/font&gt;&lt;/div&gt;&lt;div style=&quot;font-family: 'Trebuchet MS'; font-size: 10pt;&quot;&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;&lt;br&gt;&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;div style=&quot;font-family: 'Trebuchet MS'; font-size: 10pt;&quot;&gt;&lt;span style=&quot;color: rgb(128, 128, 128); line-height: 20px; text-align: justify; text-indent: -24px;&quot;&gt;CODICE JAVA : (File :&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: rgb(128, 128, 128); line-height: 20px; text-align: justify; text-indent: -24px;&quot;&gt;ProveGenerics.java )&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;font&gt;&lt;div&gt;&lt;pre class=&quot;sh_perl sh_sourceCode&quot; style=&quot;background-color: rgb(238, 238, 238); border: 1px solid rgb(136, 136, 136); padding: 1em;&quot;&gt;&lt;div&gt;&lt;div&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;&lt;span style=&quot;white-space: normal;&quot;&gt;import java.util.*;&lt;/span&gt;&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;&lt;span style=&quot;white-space: normal;&quot;&gt;public class Array {&lt;/span&gt;&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;&lt;span style=&quot;white-space: normal;&quot;&gt;&lt;br&gt;&lt;/span&gt;&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;/**&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; * @param args&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; */&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;public static void main(String[] args) {&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;		&lt;/span&gt;// TODO Auto-generated method stub&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;		&lt;/font&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;		&lt;/span&gt;String ArrayString[] = new String[9];&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;		&lt;/span&gt;Map&amp;lt;String,Integer&amp;gt; mappa = new TreeMap&amp;lt;String,Integer&amp;gt;();&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;		&lt;/font&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;		&lt;/span&gt;ArrayString[0] = &quot;Filippo&quot;;&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;		&lt;/span&gt;ArrayString[1] = null;&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;		&lt;/span&gt;ArrayString[2] = &quot;Marco&quot;;&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;		&lt;/span&gt;ArrayString[3] = &quot;Filippo&quot;;&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;		&lt;/span&gt;ArrayString[4] = &quot;Alberto&quot;;&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;		&lt;/span&gt;ArrayString[5] = &quot;Filippo&quot;;&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;		&lt;/font&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;		&lt;/font&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;		&lt;/span&gt;for(int i = 0; i&amp;lt;ArrayString.length;i++){&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;			&lt;/span&gt;if (ArrayString[i] != null){&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;			&lt;/span&gt; &amp;nbsp; &amp;nbsp;Integer num = ContaNomi(ArrayString[i],ArrayString);&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;			&lt;/span&gt; &amp;nbsp; &amp;nbsp;mappa.put(ArrayString[i], num);&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;			&lt;/span&gt; &amp;nbsp; &amp;nbsp;//System.out.println(ArrayString[i]);&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;			&lt;/span&gt;}&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;		&lt;/span&gt;}&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;		&lt;/font&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;		&lt;/font&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;		&lt;/span&gt;for(String value : mappa.keySet()){&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;			&lt;/span&gt;System.out.println(&quot;Nome = &quot; + value + &quot; conti = &quot; + mappa.get(value));&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;		&lt;/span&gt;}&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;		&lt;/font&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;&lt;span style=&quot;white-space: normal;&quot;&gt;&lt;br&gt;&lt;/span&gt;&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;}&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;	&lt;/font&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;public static int ContaNomi(String Nome, String ArrayControllo[]){&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;		&lt;/span&gt;int count = 0;&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;			&lt;/span&gt;for(int i = 0;i&amp;lt;ArrayControllo.length;i++){&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;				&lt;/span&gt;if (ArrayControllo[i] != null){&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;					&lt;/span&gt;if( Nome.equals(ArrayControllo[i]))&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;							&lt;/span&gt;count++;&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;					&lt;/span&gt;}&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;				&lt;/span&gt;}&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;		&lt;/span&gt;return count;&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;}&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;&lt;span style=&quot;white-space: normal;&quot;&gt;&lt;br&gt;&lt;/span&gt;&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;&lt;span style=&quot;white-space: normal;&quot;&gt;}&lt;/span&gt;&lt;/font&gt;&lt;/div&gt;&lt;/div&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/font&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style=&quot;font-family: 'Trebuchet MS'; font-size: 10pt;&quot;&gt;&lt;div&gt;&lt;font&gt;&lt;font&gt;&lt;div style=&quot;color: rgb(51, 51, 51); font-size: 10pt; font-weight: bold;&quot;&gt;&amp;nbsp;&lt;span style=&quot;color: rgb(128, 128, 128); font-family: 'trebuchet ms'; font-size: 10pt; line-height: 20px;&quot;&gt;By ImaginSystems &amp;amp; Queen Gin&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;color: rgb(128, 128, 128); font-family: 'trebuchet ms'; font-size: 10pt; line-height: 20px;&quot;&gt;&lt;br&gt;&lt;/span&gt;&lt;/div&gt;&lt;/font&gt;&lt;/font&gt;&lt;/div&gt;&lt;/div&gt;</description>
<dc:creator>Davide De Rubeis</dc:creator>
<slash:comments>0</slash:comments>
<comments>http://blogs.dotnethell.it/imaginsystems/ReadComment_19216.aspx</comments>
<category>JAVA</category>
</item>
<item>
<title>Giovedi' 16 Maggio 2013</title>
<link>http://blogs.dotnethell.it/CDF/Post_19215.aspx</link>
<pubDate>Thu, 16 May 2013 11:54:34 +0100</pubDate>
<source url="http://blogs.dotnethell.it/CDF/rss.aspx">Gianni Toffetti</source>
<description>Chi c'e' ?&lt;br&gt;</description>
<dc:creator>Gianni Toffetti</dc:creator>
<slash:comments>10</slash:comments>
<comments>http://blogs.dotnethell.it/CDF/ReadComment_19215.aspx</comments>
<category>chi c'e' giovedi ?</category>
</item>
<item>
<title>JQuery Asp Control ID</title>
<link>http://blogs.dotnethell.it/DevelopmentPost/Post_19213.aspx</link>
<pubDate>Wed, 15 May 2013 15:35:25 +0100</pubDate>
<source url="http://blogs.dotnethell.it/DevelopmentPost/rss.aspx">[b]Edoardo[/b] </source>
<description>&lt;b&gt;Quando voglio trovare un controllo Asp.net lato client con Jquery posso usare la sintassi:&lt;/b&gt;&lt;br&gt;&lt;br&gt;var patientId = $('[id$=hdnFPatientId]').val();&lt;br&gt;</description>
<dc:creator>[b]Edoardo[/b] </dc:creator>
<slash:comments>0</slash:comments>
<comments>http://blogs.dotnethell.it/DevelopmentPost/ReadComment_19213.aspx</comments>
<category>Jscript</category>
</item>
<item>
<title>WINDOWS - Clear Windows 7 Notification Area Icon Cache/Reset/Pulire la barra delle icone di Windows7</title>
<link>http://blogs.dotnethell.it/imaginsystems/Post_19212.aspx</link>
<pubDate>Wed, 15 May 2013 11:01:32 +0100</pubDate>
<source url="http://blogs.dotnethell.it/imaginsystems/rss.aspx">Davide De Rubeis</source>
<description>&lt;div style=&quot;font-size: 10pt;&quot;&gt;&lt;h1 style=&quot;padding: 0px 0px 10px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(235, 235, 235); background-color: rgb(255, 255, 255);&quot;&gt;&lt;/h1&gt;&lt;h3 class=&quot;entry-title&quot; style=&quot;margin: 0px 0px 2px; padding: 8px 0px 9px; color: rgb(68, 68, 68); font-size: 22px; font-weight: normal; font-family: Arial, Helvetica, sans-serif;&quot;&gt;WINDOWS - Clear Windows 7 Notification Area Icon Cache / Reset o Pulire la barra delle icone di Windows 7&lt;/h3&gt;&lt;/div&gt;&lt;div style=&quot;font-size: 10pt; text-align: center;&quot;&gt;&lt;br&gt;&lt;/div&gt;&lt;div style=&quot;font-size: 10pt; text-align: center;&quot;&gt;&lt;img src=&quot;http://blogs.dotnethell.it/filestore/10836_windows7c_sparita_icona.By.ImaginSystms.png&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div style=&quot;font-size: 10pt; text-align: center;&quot;&gt;&lt;br&gt;&lt;/div&gt;&lt;div style=&quot;font-size: 10pt; text-align: center;&quot;&gt;&lt;br&gt;&lt;/div&gt;&lt;div style=&quot;font-size: 10pt;&quot;&gt;&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: Arial, Helvetica, sans-serif; font-size: 1.6em;&quot;&gt;Risoluzione&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;font-size: 10pt;&quot;&gt;&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: Arial, Helvetica, sans-serif; font-size: 1.6em;&quot;&gt;&lt;br&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;font-size: 10pt;&quot;&gt;&lt;p style=&quot;margin: 0px 0px 6px; padding: 2px 0px 1px; color: rgb(51, 51, 51); line-height: 1.45em; clear: left; font-size: 12px; font-family: Arial, Helvetica, sans-serif; background-color: rgb(255, 255, 255);&quot;&gt;&lt;font style=&quot;margin: 0px; padding: 0px;&quot;&gt;&#200; possibile accedere a questa schermata facendo clic destro sulla barra delle applicazioni di Windows, cliccando su&amp;nbsp;&lt;/font&gt;&lt;strong style=&quot;margin: 0px; padding: 0px; color: rgb(68, 68, 68);&quot;&gt;Propriet&#224;&lt;/strong&gt;&lt;font style=&quot;margin: 0px; padding: 0px;&quot;&gt;&amp;nbsp;, quindi&amp;nbsp;&lt;/font&gt;&lt;strong style=&quot;margin: 0px; padding: 0px; color: rgb(68, 68, 68);&quot;&gt;su Personalizza&lt;/strong&gt;&lt;font style=&quot;margin: 0px; padding: 0px;&quot;&gt;&amp;nbsp;accanto a Impostazioni di notifica.&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px 0px 6px; padding: 2px 0px 1px; color: rgb(51, 51, 51); line-height: 1.45em; clear: left; font-size: 12px; font-family: Arial, Helvetica, sans-serif; background-color: rgb(255, 255, 255);&quot;&gt;&lt;font style=&quot;margin: 0px; padding: 0px;&quot;&gt;Dopo la chiusura di explorer.exe e rimuovendo due chiavi di registro, Windows ricreare automaticamente la cache.&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px 0px 6px; padding: 2px 0px 1px; color: rgb(51, 51, 51); line-height: 1.45em; clear: left; font-size: 12px; font-family: Arial, Helvetica, sans-serif; background-color: rgb(255, 255, 255);&quot;&gt;&lt;font style=&quot;margin: 0px; padding: 0px;&quot;&gt;&#200; possibile&lt;/font&gt;&lt;/p&gt;&lt;ul style=&quot;margin: 0px; padding: 2px 0px 5px 36px; color: rgb(51, 51, 51); font-family: Arial, Helvetica, sans-serif; font-size: 12px; background-color: rgb(255, 255, 255);&quot;&gt;&lt;li style=&quot;margin: 5px 11px 5px 0px; padding: 0px; background-image: none; list-style-type: disc;&quot;&gt;Mettete i seguenti comandi in un file batch ed eseguirlo dal desktop per cancellare automaticamente la cache.&lt;/li&gt;&lt;/ul&gt;&lt;blockquote style=&quot;margin: 5px 0px; padding: 10px 0px 10px 20px; background-color: rgb(246, 246, 246); border: 1px solid rgb(230, 230, 230); font-family: courier; color: rgb(51, 51, 51); font-size: 12px;&quot;&gt;&lt;p style=&quot;margin: 0px 0px 6px; padding: 2px 0px 1px; line-height: 1.45em; clear: left; font-size: 1em;&quot;&gt;&lt;font style=&quot;margin: 0px; padding: 0px;&quot;&gt;taskkill / im explorer.exe / f&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px 0px 6px; padding: 2px 0px 1px; line-height: 1.45em; clear: left; font-size: 1em;&quot;&gt;&lt;font style=&quot;margin: 0px; padding: 0px;&quot;&gt;reg delete &quot;HKCU \ Software \ Classes \ Local Settings \ Software \ Microsoft \ Windows \ CurrentVersion \ TRAYNOTIFY&quot; / v / f IconStreams&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px 0px 6px; padding: 2px 0px 1px; line-height: 1.45em; clear: left; font-size: 1em;&quot;&gt;&lt;font style=&quot;margin: 0px; padding: 0px;&quot;&gt;reg delete &quot;HKCU \ Software \ Classes \ Local Settings \ Software \ Microsoft \ Windows \ CurrentVersion \ TRAYNOTIFY&quot; / v PastIconsStream / f&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px 0px 6px; padding: 2px 0px 1px; line-height: 1.45em; clear: left; font-size: 1em;&quot;&gt;&lt;font style=&quot;margin: 0px; padding: 0px;&quot;&gt;avviare &quot;Shell Restarter&quot; / d &quot;% systemroot%&quot; / i / normale explorer.exe&lt;/font&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;div style=&quot;font-size: 10pt;&quot;&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;&lt;br&gt;&lt;/font&gt;&lt;/div&gt;&lt;div style=&quot;text-align: center; font-size: 10pt;&quot;&gt;&lt;img src=&quot;http://blogs.dotnethell.it/filestore/10837_Notification_Setting.By.ImaginSystems.png&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div style=&quot;text-align: center; font-size: 10pt;&quot;&gt;&lt;br&gt;&lt;/div&gt;&lt;div style=&quot;font-size: 10pt;&quot;&gt;&lt;span style=&quot;color: rgb(51, 51, 51); font-weight: bold;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;font-size: 10pt; font-weight: bold; color: rgb(128, 128, 128); font-family: 'trebuchet ms'; line-height: 20px;&quot;&gt;By ImaginSystems &amp;amp; Queen Gin&lt;/span&gt;&lt;/div&gt;</description>
<dc:creator>Davide De Rubeis</dc:creator>
<slash:comments>0</slash:comments>
<comments>http://blogs.dotnethell.it/imaginsystems/ReadComment_19212.aspx</comments>
<category>Windows</category>
</item>
<item>
<title> l'80% degli italiani &#232; sul web </title>
<link>http://blogs.dotnethell.it/DYNAMICSNAVTEMPOZERO/Post_19211.aspx</link>
<pubDate>Tue, 14 May 2013 15:36:46 +0100</pubDate>
<source url="http://blogs.dotnethell.it/DYNAMICSNAVTEMPOZERO/rss.aspx">Terri Cecchetto</source>
<description>&lt;div&gt;&lt;span style=&quot;font-size: 10pt;&quot;&gt;Ormai solo due italiani su dieci si mantengono lontani dal web. L'80% della popolazione italiana fra gli 11 e&amp;nbsp;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;i 74 anni dichiara infatti di accedere a Internet da qualsiasi luogo e device. E' quanto emerge da Audiweb&amp;nbsp;&lt;/div&gt;&lt;div&gt;Trends, report trimestrale sulla diffusione dell'online in Italia realizzata dall'istituto di ricerca Doxa per&amp;nbsp;&lt;/div&gt;&lt;div&gt;Audiweb. Secondo tale analisi, cresce l'accesso a Internet dai device mobili, con 17,9 milioni di persone&amp;nbsp;&lt;/div&gt;&lt;div&gt;che dichiarano di poter accedere al web da telefono cellulare o smartphone (38%) e 3,7 milioni da tablet&amp;nbsp;&lt;/div&gt;&lt;div&gt;(7,8%). In cima alle preferenze d'uso c'&#232; la navigazione internet (65,8%).&amp;nbsp;&lt;/div&gt;&lt;div&gt;(09/05/2013 Info-Press; Il Sole 24 Ore pag. 40 (07/05)) I.D&lt;/div&gt;</description>
<dc:creator>Terri Cecchetto</dc:creator>
<slash:comments>0</slash:comments>
<comments>http://blogs.dotnethell.it/DYNAMICSNAVTEMPOZERO/ReadComment_19211.aspx</comments>
<category>News</category>
</item>
<item>
<title>NAV 2013 RDLC Advanced Reporting Workshop</title>
<link>http://blogs.dotnethell.it/DynamicsNAV/Post_19209.aspx</link>
<pubDate>Mon, 13 May 2013 21:28:39 +0100</pubDate>
<source url="http://blogs.dotnethell.it/DynamicsNAV/rss.aspx">Roberto Stefanetti</source>
<description>&lt;P&gt;@Microsoft Innovation Campus, NAV 2013 RDLC Reporting Workshop&lt;/P&gt;
&lt;P&gt;3 days fulltime immersion on NAV 2013 Reporting&lt;/P&gt;
&lt;P&gt;nice course, nice site..&lt;/P&gt;
&lt;P&gt;&lt;IMG src=&quot;/filestore/10835_bob_microsoft.jpg&quot;&gt;&lt;/P&gt;</description>
<dc:creator>Roberto Stefanetti</dc:creator>
<slash:comments>0</slash:comments>
<comments>http://blogs.dotnethell.it/DynamicsNAV/ReadComment_19209.aspx</comments>
<category>News Events</category>
</item>
<item>
<title>Recensione libro Microsoft Application Architecture Guide (O'Reilly)</title>
<link>http://blogs.dotnethell.it/ciupaz/Post_19208.aspx</link>
<pubDate>Mon, 13 May 2013 10:59:13 +0100</pubDate>
<source url="http://blogs.dotnethell.it/ciupaz/rss.aspx">Luigi Zambetti</source>
<description>
&lt;p&gt;

&lt;a href=&quot;http://oreilly.com/catalog/9780735627109/&quot;&gt;&lt;img src=&quot;http://blogs.dotnethell.it/filestore/10826_MicrosoftApplicationArchitecture.jpg&quot;&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Pur risalendo al 2009, questa raccolta di best practices per l’implementazione ad alto livello della applicazioni in ambito Microsoft risulta ancora molto attuale e raccomandabile. &lt;br&gt;Questo per il fatto che non si scende mai nei dettagli del codice o del pratico utilizzo dei vari tool di sviluppo e deploy, ma ci si mantiene sempre su discorsi molto generali e discorsivi. &lt;br&gt;In sostanza, quali sono le caratteristiche e i vantaggi delle applicazioni web? Dei servizi? Delle architetture a 2, 3 o pi&#249; livelli? Quali i loro pro &#232; contro? Come &#232; meglio iniziare a svilupparle? Cosa tenere in mente da subito e cosa si pu&#242; rimandare? &lt;br&gt;E cos&#236; via, il tutto senza una riga di codice (ma ci si aspetta che il lettore ne abbia scritto per anni) e senza diktat estremi (questo No, questo S&#236;). &lt;br&gt;Apprezzabile il fatto che gli autori abbiano mantenuto i capitoli piuttosto brevi (20 pagine in media), in modo da completare un argomento prima che sopraggiunga la stanchezza. &lt;br&gt;A parte i primi capitoli introduttivi, in cui si spiega cosa &#232; l’architettura dei sistemi software, i restanti capitoli possono essere affrontati in base alle necessit&#224; del momento, approfondendo solo l’argomento che a cui si &#232; interessati. &lt;/p&gt;&lt;p&gt;Questo &#232; il lunghissimo elenco di persone che, a vario titolo, hanno contribuito a questa guida. &lt;/p&gt;&lt;p&gt;&lt;img src=&quot;http://blogs.dotnethell.it/filestore/10827_MicrosoftApplicationArchitecture_Autori_750_x_421.jpg&quot;&gt;&lt;/p&gt;&lt;p&gt;Si tratta quasi sempre di dipendenti della Microsoft stessa, tutte persone che hanno lavorato “dal di dentro” per realizzare questa raccolta di “best practices” architetturali. &lt;/p&gt;&lt;p&gt;&#200; indubbiamente un libro “denso”. Ci sono pagine e pagine di solo testo scritto, spesso sotto forma di paragrafi a scaletta, come questo. &lt;/p&gt;&lt;p&gt;&lt;img src=&quot;http://blogs.dotnethell.it/filestore/10828_MicrosoftApplicationArchitecture_InternoLibro1_750_x_421.jpg&quot;&gt;&lt;/p&gt;&lt;p&gt;Per fortuna l’inglese utilizzato &#232; molto semplice e comprensibile, senza termini gergali o poco comuni.&lt;br&gt;Non ho nemmeno mai riscontrato errori o refusi, segno di una valida revisione delle bozze. &lt;br&gt;Ci sono poche immagini, e quasi sempre si tratta di grafici o diagrammi, come si vede qua sotto.&lt;/p&gt;&lt;p&gt;&lt;img src=&quot;http://blogs.dotnethell.it/filestore/10829_MicrosoftApplicationArchitecture_InternoLibro2_750_x_421.jpg&quot;&gt;&lt;/p&gt;&lt;p&gt;Lo spessore del libro &#232; abbastanza consistente, come si vede da quest’altra immagine, ma comunque nulla di trascendentale. &lt;/p&gt;&lt;p&gt;&lt;img src=&quot;http://blogs.dotnethell.it/filestore/10830_MicrosoftApplicationArchitecture_SpessoreLibro_750_x_421.jpg&quot;&gt;&lt;/p&gt;&lt;p&gt;Alcune parti, secondo me, andrebbero limate un po’, dato che ho riscontrato parecchie ripetizioni tra un capitolo e l’altro. In tal modo si poteva ridurre leggermente il peso complessivo del libro, e quindi anche la sua praticit&#224; di lettura. &lt;/p&gt;&lt;p&gt;&#200; in sostanza un buon libro per riassumere e persistere le buone “practices” di sviluppo.&lt;br&gt;Non &#232; un libro per imparare a programmare, o per capire come scrivere meglio il codice, ma questo non &#232; il suo scopo. &lt;/p&gt;&lt;p&gt;Qua sotto il lunghissimo sommario. &lt;br&gt;&lt;br&gt;&lt;strong&gt;Table of Contents&lt;/strong&gt;&lt;br&gt;3 - Chapter 1 What Is Software Architecture? &lt;br&gt;9 - Chapter 2 Key Principles of Software Architecture &lt;br&gt;19 - Chapter 3 Architectural Patterns and Styles &lt;br&gt;39 - Chapter 4 A Technique for Architecture and Design &lt;br&gt;55 - Chapter 5 Layered Application Guidelines &lt;br&gt;67 - Chapter 6 Presentation Layer Guidelines &lt;br&gt;83 - Chapter 7 Business Layer Guidelines &lt;br&gt;95 - Chapter 8 Data Layer Guidelines &lt;br&gt;115 - Chapter 9 Service Layer Guidelines &lt;br&gt;135 - Chapter 10 Component Guidelines &lt;br&gt;145 - Chapter 11 Designing Presentation Components &lt;br&gt;159 - Chapter 12 Designing Business Components &lt;br&gt;167 - Chapter 13 Designing Business Entities &lt;br&gt;173 - Chapter 14 Designing Workflow Components &lt;br&gt;181 - Chapter 15 Designing Data Components &lt;br&gt;191 - Chapter 16 Quality Attributes &lt;br&gt;205 - Chapter 17 Crosscutting Concerns &lt;br&gt;227 - Chapter 18 Communication and Messaging &lt;br&gt;241 - Chapter 19 Physical Tiers and Deployment &lt;br&gt;265 - Chapter 20 Choosing an Application Type &lt;br&gt;277 - Chapter 21 Designing Web Applications &lt;br&gt;297 - Chapter 22 Designing Rich Client Applications &lt;br&gt;319 - Chapter 23 Designing Rich Internet Applications &lt;br&gt;339 - Chapter 24 Designing Mobile Applications &lt;br&gt;359 - Chapter 25 Designing Service Applications &lt;br&gt;379 - Chapter 26 Designing Hosted and Cloud Services &lt;br&gt;403 - Chapter 27 Designing Office Business Applications &lt;br&gt;423 - Chapter 28 Designing SharePoint LOB Applications &lt;br&gt;Appendices&lt;br&gt;437 - Appendix A: The Microsoft Application Platform &lt;br&gt;449 - Appendix B: Presentation Technology Matrix &lt;br&gt;461 - Appendix C: Data Access Technology Matrix &lt;br&gt;471 - Appendix D: Integration Technology Matrix &lt;br&gt;477 - Appendix E: Workflow Technology Matrix &lt;br&gt;483 - Appendix F: patterns &amp;amp; practices Enterprise Library &lt;br&gt;499 - Appendix G: patterns &amp;amp; practices Pattern Catalog &lt;br&gt;509 – Index &lt;/p&gt;&lt;p&gt;Mentre qua i dettagli del libro, con la possibilit&#224; di scaricarsi il primo capitolo in Pdf (27 pagine in tutto, ma comprensive del lungo sommario). &lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://oreilly.com/catalog/9780735627109/&quot;&gt;&lt;img src=&quot;http://blogs.dotnethell.it/filestore/10831_MicrosoftApplicationArchitecture_DettagliLibro.jpg&quot;&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;NB:&lt;br&gt;Foto realizzate con Sony Xperia ion. &lt;/p&gt;&lt;script src=&quot;http://cdn.wibiya.com/Toolbars/dir_0029/Toolbar_29551/Loader_29551.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;
</description>
<dc:creator>Luigi Zambetti</dc:creator>
<slash:comments>0</slash:comments>
<comments>http://blogs.dotnethell.it/ciupaz/ReadComment_19208.aspx</comments>
<category>Books</category>
</item>
<item>
<title>SQL Server Compressed Backup</title>
<link>http://blogs.dotnethell.it/DynamicsNAV/Post_19207.aspx</link>
<pubDate>Sun, 12 May 2013 22:19:50 +0100</pubDate>
<source url="http://blogs.dotnethell.it/DynamicsNAV/rss.aspx">Roberto Stefanetti</source>
<description>&lt;P&gt;Activation with 2 ways:&lt;BR&gt;&amp;gt; from console&lt;BR&gt;&amp;gt; from sql command&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;//Compression backup activation&lt;/STRONG&gt;&lt;BR&gt;EXEC sys.sp_configure 'backup compression default', '1'&lt;BR&gt;GO&lt;BR&gt;RECONFIGURE WITH OVERRIDE&lt;BR&gt;GO&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;/ * BACKUP SYSTEM DATABASE AND PRODUCTION DATABASE */&lt;/STRONG&gt;&lt;BR&gt;Backup Parameters&lt;BR&gt;&amp;gt; SKIP, NOREWIND, NOUNLOAD, COMPRESSION, STATS = 10&lt;BR&gt;Backup Check&lt;BR&gt;&amp;gt; with&amp;nbsp;stored procedure&lt;BR&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;/* SYSTEM DATABASE */&lt;/STRONG&gt;&lt;BR&gt;BACKUP DATABASE [master] TO&amp;nbsp; DISK = N'W:\TSMFileBackup\master.BAK' WITH NOFORMAT, INIT,&amp;nbsp; NAME = N'master-Full Database Backup', SKIP, NOREWIND, NOUNLOAD, COMPRESSION,&amp;nbsp; STATS = 10&lt;BR&gt;GO&lt;/P&gt;
&lt;P&gt;BACKUP DATABASE [model] TO&amp;nbsp; DISK = N'W:\TSMFileBackup\model.BAK' WITH NOFORMAT, INIT,&amp;nbsp; NAME = N'model-Full Database Backup', SKIP, NOREWIND, NOUNLOAD, COMPRESSION,&amp;nbsp; STATS = 10&lt;BR&gt;GO&lt;/P&gt;
&lt;P&gt;BACKUP DATABASE [msdb] TO&amp;nbsp; DISK = N'W:\TSMFileBackup\msdb.BAK' WITH NOFORMAT, INIT,&amp;nbsp; NAME = N'msdb-Full Database Backup', SKIP, NOREWIND, NOUNLOAD, COMPRESSION,&amp;nbsp; STATS = 10&lt;BR&gt;GO&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;/* PRODUCTION DATABASE */&lt;/STRONG&gt;&lt;BR&gt;BACKUP DATABASE [CUSTOMER_PROD] TO&amp;nbsp; DISK = N'W:\TSMFileBackup\CUSTOMER_PROD.BAK' WITH NOFORMAT, INIT,&amp;nbsp; NAME = N'CUSTOMER_PROD-Full Database Backup', SKIP, NOREWIND, NOUNLOAD, COMPRESSION,&amp;nbsp; STATS = 10&lt;BR&gt;GO&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;/* Check Backup Sets*/&lt;/STRONG&gt;&lt;BR&gt;&lt;STRONG&gt;/* SYSTEM */&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;/* Master */&lt;BR&gt;Declare @backupSetId as int&lt;BR&gt;select @backupSetId = position from msdb..backupset where database_name=N'master'&lt;BR&gt;and backup_set_id=(select max(backup_set_id) from msdb..backupset where database_name=N'master' )&lt;BR&gt;if @backupSetId is null begin raiserror(N'Verify failed. Backup information for database ''master'' not found.', 16, 1) end&lt;BR&gt;RESTORE VERIFYONLY FROM DISK = N'W:\TSMFileBackup\master.BAK' WITH&amp;nbsp; FILE = @backupSetId,&amp;nbsp; NOUNLOAD,&amp;nbsp; NOREWIND&lt;BR&gt;GO&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;/* PRODUCTION DB */&lt;/STRONG&gt;&lt;BR&gt;/* CUSTOMER_PROD */&lt;BR&gt;Declare @backupSetId as int&lt;BR&gt;select @backupSetId = position from msdb..backupset where database_name=N'CUSTOMER_PROD'&lt;BR&gt;and backup_set_id=(select max(backup_set_id) from msdb..backupset where database_name=N'CUSTOMER_PROD' )&lt;BR&gt;if @backupSetId is null begin raiserror(N'Verify failed. Backup information for database ''CUSTOMER_PROD'' not found.', 16, 1) end&lt;BR&gt;RESTORE VERIFYONLY FROM DISK = N'W:\TSMFileBackup\CUSTOMER_PROD.BAK' WITH&amp;nbsp; FILE = @backupSetId,&amp;nbsp; NOUNLOAD,&amp;nbsp; NOREWIND&lt;BR&gt;GO&lt;/P&gt;</description>
<dc:creator>Roberto Stefanetti</dc:creator>
<slash:comments>0</slash:comments>
<comments>http://blogs.dotnethell.it/DynamicsNAV/ReadComment_19207.aspx</comments>
<category>Dynamics NAV 2013</category>
</item>
<item>
<title>Step-by-step Tutorial</title>
<link>http://blogs.dotnethell.it/BeppeDM/Post_19206.aspx</link>
<pubDate>Sun, 12 May 2013 22:15:11 +0100</pubDate>
<source url="http://blogs.dotnethell.it/BeppeDM/rss.aspx">Giuseppe Di Maria</source>
<description>&lt;p&gt;

Acrylic Still life painting of a cherry for beginners (video)&lt;/p&gt;&lt;p&gt;Fonte: &lt;a href=&quot;http://willkempartschool.com&quot;&gt;http://willkempartschool.com&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://willkempartschool.com/beginners-acrylic-still-life-course-part-1/&quot;&gt;http://willkempartschool.com/beginners-acrylic-still-life-course-part-1/&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://willkempartschool.com/beginners-acrylic-still-life-course-part-2/&quot;&gt;http://willkempartschool.com/beginners-acrylic-still-life-course-part-2/&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://willkempartschool.com/beginners-acrylic-still-life-course-part-3-part-4/&quot;&gt;http://willkempartschool.com/beginners-acrylic-still-life-course-part-3-part-4/&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description>
<dc:creator>Giuseppe Di Maria</dc:creator>
<slash:comments>0</slash:comments>
<comments>http://blogs.dotnethell.it/BeppeDM/ReadComment_19206.aspx</comments>
<category>DIPINGERE (consigli, video e tecniche)</category>
</item>
<item>
<title>After NAV 2013 SQL Database restore users can't login</title>
<link>http://blogs.dotnethell.it/DynamicsNAV/Post_19205.aspx</link>
<pubDate>Sun, 12 May 2013 22:10:37 +0100</pubDate>
<source url="http://blogs.dotnethell.it/DynamicsNAV/rss.aspx">Roberto Stefanetti</source>
<description>&lt;P&gt;After NAV 2013 SQL Database restore&amp;nbsp;users can't login&lt;BR&gt;&lt;/P&gt;
&lt;P&gt;Solution: delete users and users data&lt;/P&gt;
&lt;P&gt;delete from [dbo].[User]&lt;BR&gt;delete from [dbo].[Access Control]&lt;BR&gt;delete from [dbo].[User Property]&lt;BR&gt;delete from [dbo].[Page Data Personalization]&lt;BR&gt;delete from [dbo].[User Default Style Sheet]&lt;BR&gt;delete from [dbo].[User Metadata]&lt;BR&gt;delete from [dbo].[User Personalization]&lt;/P&gt;</description>
<dc:creator>Roberto Stefanetti</dc:creator>
<slash:comments>0</slash:comments>
<comments>http://blogs.dotnethell.it/DynamicsNAV/ReadComment_19205.aspx</comments>
<category>Dynamics NAV 2013</category>
</item>
<item>
<title>Programming microsoft dynamics nav 2013 book's review  </title>
<link>http://blogs.dotnethell.it/DynamicsNAV/Post_19204.aspx</link>
<pubDate>Sat, 11 May 2013 18:16:26 +0100</pubDate>
<source url="http://blogs.dotnethell.it/DynamicsNAV/rss.aspx">Roberto Stefanetti</source>
<description>
&lt;p&gt;


&lt;a href=&quot;http://www.goodreads.com/book/show/17328767-programming-microsoft-dynamics-nav-2013&quot;&gt;http://www.goodreads.com/book/show/17328767-programming-microsoft-dynamics-nav-2013&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://www.goodreads.com/review/show/612591964&quot;&gt;http://www.goodreads.com/review/show/612591964&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Programming Microsoft Dynamics Nav 2013 by&amp;nbsp;David Studebaker&lt;br&gt;&lt;br&gt;&lt;strong&gt;Nice book, for beginners &amp;amp; experts NAV developers&lt;/strong&gt; &lt;br&gt;&lt;br&gt;Positive notes &lt;br&gt;The book is suitable for those who want to start programming with NAV 2013, does not require a previous technical knowledge, even those who are new to the NAV environment and NAV C/AL can learn a lot from this book; is a book for everyone.&lt;br&gt;&lt;br&gt;Interesting is the chapter on the development with Dynamics NAV 2013, the book explains in detail all the objects of NAV 2013 and how to use them: tables, pages, queries, reports, codeunits,&amp;nbsp; xlmport, web services technology etc..&amp;nbsp; with examples of creation and management for each object. &lt;br&gt;&lt;br&gt;The chapter about C/AL shows the old (Nav4..Nav2009) and the new functions introduced with NAV2013, is a good reference for the NAV developer, the use of real cases makes it interesting. Also the section on NAV web services exposed with XML ports technology is well-argued.&lt;br&gt;&lt;br&gt;My favorite chapter is the fifth (that relating to queries and reports), the query designer and also the RDLC technology is well explained with examples of how to create queries and reports. The NAV 2013 debugger is well covered with examples of the use on local servers, on remote NAS servers and on Web Services (the developer is able to perform functional tests in detail with the debugger following the directions of the text).&lt;br&gt;&lt;br&gt;Negative notes &lt;br&gt;The NAS (NAV Application Server) is treated in a single half-page; every developer should know how to use the NAS and how you use posting queues with the NAS.&lt;br&gt;&lt;br&gt;Perhaps the book is a bit 'too long' (600 pages), the theory part of ERP systems,&amp;nbsp; the development methodology (testing, deploy, project implementation guidelines etc. ...about 100 pages) maybe they could be material to another book of projects implementation.&lt;br&gt;&lt;br&gt;In conclusion I would say that the overview of topics covered in the book is broad and comprehensive, more than enough for even a novice programmer who wants to explore NAV's world.&lt;br&gt;&lt;br&gt;&lt;br&gt;Rating: 4/5 stars, nice book anyway&lt;br&gt;&lt;br&gt;Roberto Stefanetti&lt;br&gt;NAV System Engineer&lt;/p&gt;&lt;p&gt;
&lt;/p&gt;
</description>
<dc:creator>Roberto Stefanetti</dc:creator>
<slash:comments>0</slash:comments>
<comments>http://blogs.dotnethell.it/DynamicsNAV/ReadComment_19204.aspx</comments>
<category>Dynamics NAV 2013</category>
</item>
<item>
<title>Eseguire l'aggiornamento a Windows 8 con il solo codice Product Key</title>
<link>http://blogs.dotnethell.it/michelen/Post_19203.aspx</link>
<pubDate>Sat, 11 May 2013 15:54:36 +0100</pubDate>
<source url="http://blogs.dotnethell.it/michelen/rss.aspx">Michele  Neri</source>
<description>
&lt;p&gt;

Se si &#232; acquistato &lt;span class=&quot;phrase&quot;&gt;&lt;span class=&quot;notLocalizable&quot;&gt;Windows&amp;nbsp;8&lt;/span&gt;&lt;/span&gt; e si dispone di un codice Product Key di &lt;span class=&quot;phrase&quot;&gt;&lt;span class=&quot;notLocalizable&quot;&gt;Windows&amp;nbsp;8&lt;/span&gt;&lt;/span&gt;, &#232; possibile scaricare e installare il prodotto da questa pagina.....&lt;/p&gt;&lt;p&gt;Un utile articolo che spiega come&amp;nbsp;scaricare Windows 8 utilizzando il solo Product Key&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://windows.microsoft.com/it-it/windows-8/upgrade-product-key-only&quot;&gt;http://windows.microsoft.com/it-it/windows-8/upgrade-product-key-only&lt;/a&gt;&lt;/p&gt;
&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--
google_ad_client = &quot;ca-pub-3932953763935087&quot;;
/* Articoli-micner */
google_ad_slot = &quot;0294355832&quot;;
google_ad_width = 468;
google_ad_height = 15;
//--&gt;
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;
src=&quot;http://pagead2.googlesyndication.com/pagead/show_ads.js&quot;&gt;
&lt;/script&gt;</description>
<dc:creator>Michele  Neri</dc:creator>
<slash:comments>0</slash:comments>
<comments>http://blogs.dotnethell.it/michelen/ReadComment_19203.aspx</comments>
<category>Windows 8</category>
</item>
<item>
<title>JAVA -   Esercizio di Programmazione Orientata agli Oggetti - Comprensione Generics (POO) </title>
<link>http://blogs.dotnethell.it/imaginsystems/Post_19201.aspx</link>
<pubDate>Sat, 11 May 2013 14:43:37 +0100</pubDate>
<source url="http://blogs.dotnethell.it/imaginsystems/rss.aspx">Davide De Rubeis</source>
<description>&lt;div&gt;&lt;div style=&quot;font-family: 'Trebuchet MS'; font-size: 10pt;&quot;&gt;&lt;h1 style=&quot;padding: 0px 0px 10px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(235, 235, 235); background-color: rgb(255, 255, 255);&quot;&gt;&lt;span style=&quot;font-size: 20px;&quot;&gt;JAVA - &amp;nbsp;&lt;/span&gt;&lt;font face=&quot;Trebuchet MS&quot;&gt;&lt;span style=&quot;font-size: 20px;&quot;&gt;&amp;nbsp;Esercizio di Programmazione Orientata agli Oggetti - Comprensione Generics (POO)&amp;nbsp;&lt;/span&gt;&lt;/font&gt;&lt;/h1&gt;&lt;/div&gt;&lt;div style=&quot;font-family: 'Trebuchet MS'; font-size: 10pt; text-align: center;&quot;&gt;&lt;br&gt;&lt;/div&gt;&lt;div style=&quot;font-family: 'Trebuchet MS'; font-size: 10pt; text-align: center;&quot;&gt;&lt;img src=&quot;http://blogs.dotnethell.it/filestore/10783_images_9.jpg&quot;&gt;&lt;/div&gt;&lt;div style=&quot;font-family: 'Trebuchet MS'; font-size: 10pt; text-align: center;&quot;&gt;&lt;br&gt;&lt;/div&gt;&lt;div style=&quot;font-family: 'Trebuchet MS'; font-size: 10pt; text-align: center;&quot;&gt;&lt;br&gt;&lt;/div&gt;&lt;div style=&quot;font-family: 'Trebuchet MS'; font-size: 10pt;&quot;&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;Esercizio&lt;/font&gt;&lt;span style=&quot;font-size: 10pt;&quot;&gt;&amp;nbsp;per il corso di Programmazione Orientata agli Oggetti (POO) , Uni Roma Tre .&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;font-family: 'Trebuchet MS'; font-size: 10pt;&quot;&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;L'obbiettivo dell'esercizio &#232; di comprensione Generics .&lt;/font&gt;&lt;/div&gt;&lt;div style=&quot;font-family: 'Trebuchet MS'; font-size: 10pt;&quot;&gt;&lt;br&gt;&lt;/div&gt;&lt;div style=&quot;font-family: 'Trebuchet MS'; font-size: 10pt;&quot;&gt;&lt;span style=&quot;color: rgb(128, 128, 128); line-height: 20px; text-align: justify; text-indent: -24px;&quot;&gt;CODICE JAVA : (File :&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: rgb(128, 128, 128); line-height: 20px; text-align: justify; text-indent: -24px;&quot;&gt;ProveGenerics.java )&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;font-family: 'Trebuchet MS'; font-size: 13px;&quot;&gt;&lt;font&gt;&lt;div style=&quot;font-size: 10pt;&quot;&gt;&lt;pre class=&quot;sh_perl sh_sourceCode&quot; style=&quot;background-color: rgb(238, 238, 238); border: 1px solid rgb(136, 136, 136); padding: 1em;&quot;&gt;&lt;pre class=&quot;sh_perl sh_sourceCode&quot; style=&quot;border: 1px solid rgb(136, 136, 136); padding: 1em;&quot;&gt;&lt;div style=&quot;font-family: 'Times New Roman'; font-size: medium; white-space: normal;&quot;&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;/* Obiettivo: comprensione generics&amp;nbsp;&lt;/font&gt;&lt;span style=&quot;font-family: 'Trebuchet MS'; font-size: small;&quot;&gt;*/&lt;/span&gt;&lt;/div&gt;&lt;/pre&gt;&lt;/pre&gt;&lt;pre class=&quot;sh_perl sh_sourceCode&quot; style=&quot;background-color: rgb(238, 238, 238); border: 1px solid rgb(136, 136, 136); padding: 1em;&quot;&gt;&lt;div style=&quot;font-family: 'Times New Roman'; font-size: medium; white-space: normal;&quot;&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;/* Obiettivo: comprensione generics&lt;/font&gt;&lt;/div&gt;&lt;div style=&quot;font-family: 'Times New Roman'; font-size: medium; white-space: normal;&quot;&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;&amp;nbsp; &amp;nbsp;- questo programma compila?&lt;/font&gt;&lt;/div&gt;&lt;div style=&quot;font-family: 'Times New Roman'; font-size: medium; white-space: normal;&quot;&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;&amp;nbsp; &amp;nbsp;- provare a compilare&lt;/font&gt;&lt;/div&gt;&lt;div style=&quot;font-family: 'Times New Roman'; font-size: medium; white-space: normal;&quot;&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;&amp;nbsp; &amp;nbsp;- se il programma non compila, correggere gli errori&lt;/font&gt;&lt;/div&gt;&lt;div style=&quot;font-family: 'Times New Roman'; font-size: medium; white-space: normal;&quot;&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;&amp;nbsp; &amp;nbsp;- cosa deve stampare il programma?&lt;/font&gt;&lt;/div&gt;&lt;div style=&quot;font-family: 'Times New Roman'; font-size: medium; white-space: normal;&quot;&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;&amp;nbsp; &amp;nbsp;- eseguire il programma e verificare la propria risposta&lt;/font&gt;&lt;/div&gt;&lt;div style=&quot;font-family: 'Times New Roman'; font-size: medium; white-space: normal;&quot;&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;&amp;nbsp; &amp;nbsp;- se il risultato e' diverso da quello atteso,&lt;/font&gt;&lt;/div&gt;&lt;div style=&quot;font-family: 'Times New Roman'; font-size: medium; white-space: normal;&quot;&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;modificare il codice&lt;/font&gt;&lt;/div&gt;&lt;div style=&quot;font-family: 'Times New Roman'; font-size: medium; white-space: normal;&quot;&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;*/&lt;/font&gt;&lt;/div&gt;&lt;div style=&quot;font-family: 'Times New Roman'; font-size: medium; white-space: normal;&quot;&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;&lt;br&gt;&lt;/font&gt;&lt;/div&gt;&lt;div style=&quot;font-family: 'Times New Roman'; font-size: medium; white-space: normal;&quot;&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;import java.util.*;&lt;/font&gt;&lt;/div&gt;&lt;div style=&quot;font-family: 'Times New Roman'; font-size: medium; white-space: normal;&quot;&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;&lt;br&gt;&lt;/font&gt;&lt;/div&gt;&lt;div style=&quot;font-family: 'Times New Roman'; font-size: medium; white-space: normal;&quot;&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;public class ProveGenerics {&lt;/font&gt;&lt;/div&gt;&lt;div style=&quot;font-family: 'Times New Roman'; font-size: medium; white-space: normal;&quot;&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;&amp;nbsp; &amp;nbsp; private String titolo;&lt;/font&gt;&lt;/div&gt;&lt;div style=&quot;font-family: 'Times New Roman'; font-size: medium; white-space: normal;&quot;&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;&lt;br&gt;&lt;/font&gt;&lt;/div&gt;&lt;div style=&quot;font-family: 'Times New Roman'; font-size: medium; white-space: normal;&quot;&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;&amp;nbsp; &amp;nbsp;public ProveGenerics(String titolo) {&lt;/font&gt;&lt;/div&gt;&lt;div style=&quot;font-family: 'Times New Roman'; font-size: medium; white-space: normal;&quot;&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;	&lt;/span&gt;&amp;nbsp;&amp;nbsp;this.titolo = titolo;&lt;/font&gt;&lt;/div&gt;&lt;div style=&quot;font-family: 'Times New Roman'; font-size: medium; white-space: normal;&quot;&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;&amp;nbsp; &amp;nbsp; }&lt;/font&gt;&lt;/div&gt;&lt;div style=&quot;font-family: 'Times New Roman'; font-size: medium; white-space: normal;&quot;&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;&lt;br&gt;&lt;/font&gt;&lt;/div&gt;&lt;div style=&quot;font-family: 'Times New Roman'; font-size: medium; white-space: normal;&quot;&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;	&lt;/span&gt;public String getTitolo() {&lt;/font&gt;&lt;/div&gt;&lt;div style=&quot;font-family: 'Times New Roman'; font-size: medium; white-space: normal;&quot;&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;		&lt;/span&gt;return this.titolo;&lt;/font&gt;&lt;/div&gt;&lt;div style=&quot;font-family: 'Times New Roman'; font-size: medium; white-space: normal;&quot;&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;	&lt;/span&gt;}&lt;/font&gt;&lt;/div&gt;&lt;div style=&quot;font-family: 'Times New Roman'; font-size: medium; white-space: normal;&quot;&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;&lt;br&gt;&lt;/font&gt;&lt;/div&gt;&lt;div style=&quot;font-family: 'Times New Roman'; font-size: medium; white-space: normal;&quot;&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;&amp;nbsp; &amp;nbsp; public static void main(String[] argv) {&lt;/font&gt;&lt;/div&gt;&lt;div style=&quot;font-family: 'Times New Roman'; font-size: medium; white-space: normal;&quot;&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;	&lt;/span&gt;&amp;nbsp;&amp;nbsp;List&amp;lt;ProveGenerics&amp;gt; biblioteca = new LinkedList&amp;lt;ProveGenerics&amp;gt;();&lt;/font&gt;&lt;/div&gt;&lt;div style=&quot;font-family: 'Times New Roman'; font-size: medium; white-space: normal;&quot;&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;&amp;nbsp;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;	&lt;/span&gt;&amp;nbsp;&amp;nbsp;ProveGenerics l1 &amp;nbsp;= new ProveGenerics(&quot;Anna Karenina&quot;);&lt;/font&gt;&lt;/div&gt;&lt;div style=&quot;font-family: 'Times New Roman'; font-size: medium; white-space: normal;&quot;&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;&amp;nbsp;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;	&lt;/span&gt;&amp;nbsp;&amp;nbsp;ProveGenerics l2 = new ProveGenerics(&quot;I demoni&quot;);&lt;/font&gt;&lt;/div&gt;&lt;div style=&quot;font-family: 'Times New Roman'; font-size: medium; white-space: normal;&quot;&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; ProveGenerics l3 = new ProveGenerics(&quot;Madame Bovary&quot;);&lt;/font&gt;&lt;/div&gt;&lt;div style=&quot;font-family: 'Times New Roman'; font-size: medium; white-space: normal;&quot;&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/font&gt;&lt;/div&gt;&lt;div style=&quot;font-family: 'Times New Roman'; font-size: medium; white-space: normal;&quot;&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;	&lt;/span&gt;&amp;nbsp;&amp;nbsp;biblioteca.add(l1);&lt;/font&gt;&lt;/div&gt;&lt;div style=&quot;font-family: 'Times New Roman'; font-size: medium; white-space: normal;&quot;&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;&amp;nbsp;&amp;nbsp;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;	&lt;/span&gt;&amp;nbsp;&amp;nbsp;biblioteca.add(l2);&lt;/font&gt;&lt;/div&gt;&lt;div style=&quot;font-family: 'Times New Roman'; font-size: medium; white-space: normal;&quot;&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;&amp;nbsp;&amp;nbsp;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;	&lt;/span&gt;&amp;nbsp;&amp;nbsp;biblioteca.add(l3);&lt;/font&gt;&lt;/div&gt;&lt;div style=&quot;font-family: 'Times New Roman'; font-size: medium; white-space: normal;&quot;&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;&lt;br&gt;&lt;/font&gt;&lt;/div&gt;&lt;div style=&quot;font-family: 'Times New Roman'; font-size: medium; white-space: normal;&quot;&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;	&lt;/span&gt;&amp;nbsp;&amp;nbsp;Iterator&amp;lt;ProveGenerics&amp;gt; it = biblioteca.iterator();&lt;/font&gt;&lt;/div&gt;&lt;div style=&quot;font-family: 'Times New Roman'; font-size: medium; white-space: normal;&quot;&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;	&lt;/span&gt;&amp;nbsp;&amp;nbsp;while (it.hasNext())&lt;/font&gt;&lt;/div&gt;&lt;div style=&quot;font-family: 'Times New Roman'; font-size: medium; white-space: normal;&quot;&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;		&lt;/span&gt;System.out.println(it.next().getTitolo());&lt;/font&gt;&lt;/div&gt;&lt;div style=&quot;font-family: 'Times New Roman'; font-size: medium; white-space: normal;&quot;&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;&amp;nbsp; &amp;nbsp; }&lt;/font&gt;&lt;/div&gt;&lt;div style=&quot;font-family: 'Times New Roman'; font-size: medium; white-space: normal;&quot;&gt;&lt;font face=&quot;Trebuchet MS&quot; size=&quot;2&quot;&gt;}&lt;/font&gt;&lt;/div&gt;&lt;/pre&gt;&lt;/div&gt;&lt;div&gt;&lt;font&gt;&lt;div style=&quot;color: rgb(51, 51, 51); font-size: 10pt; font-weight: bold;&quot;&gt;&amp;nbsp;&lt;span style=&quot;color: rgb(128, 128, 128); font-family: 'trebuchet ms'; font-size: 10pt; line-height: 20px;&quot;&gt;By ImaginSystems &amp;amp; Queen Gin&lt;/span&gt;&lt;/div&gt;&lt;/font&gt;&lt;/div&gt;&lt;/font&gt;&lt;/div&gt;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;</description>
<dc:creator>Davide De Rubeis</dc:creator>
<slash:comments>0</slash:comments>
<comments>http://blogs.dotnethell.it/imaginsystems/ReadComment_19201.aspx</comments>
<category>JAVA</category>
</item>
</channel>
</rss>
