posts - 76, comments - 1892, trackbacks - 1

giovedì 9 maggio 2013

VBTT a Vicenza per lo "Spring Event"

Riprendono i nostri eventi di community e Sabato 8 giugno 2013, presso l'Alfa Fiera Hotel di Vicenza, terremo il primo evento gratuito dell'anno dedicato a Windows Azure, SignalR e LightSwitch. E come di consueto non mancherà il pranzo successivo con tutti coloro che vorranno partecipare inviando una mail all'indirizzo eventi [at] visual-basic.it (specificando il tag #eventovi13). Maggiori informazioni sugli argomenti trattati li potete trovare a questa pagina. http://www.visual-basic.it/DettaglioNews/tabid/160/ArticleId/1664/VBTT-Spring-Event.aspx#.UYwRlbX-GGU Vi aspettiamo numerosi :)

posted @ giovedì 9 maggio 2013 21:17 | Feedback (2) |

lunedì 11 marzo 2013

Send Email with WindowsPhone

This example shows how to send email using a device with WindowsPhone.

To try this example and must have a telephone system operating WindowsPhone8, alternatively you can try it with VisualStudio and the emulator WWGA512 mb, but without the ability to send email.

With WindowsPhone 7 and 8 and not only can send Email directly from the device, but also creating our application of any type, but with the need to send email to this Microsoft gives us the class EmailComposeTask. This class provides several properties to be implemented in its entirety in order to competare everything you need to successfully send the email. Let's see one by one and see their work, the Bcc property, this property gets or sets the recipients in the Bcc line of the e-mail, the Body property gets or sets the body of the e-mail, the property gets or Cc sets the recipients in the Cc line of the e-mail, the CodePage property gets or sets the character set that will be used to display the contents of the message, the Subject property gets or sets the subject of the e-mail and finally the properties to get or set the recipients in the To line of the e-mail. There are some methods that make up the class EmailComposeTask, we will focus on the Show () method, this method allows you to start the providers installed on the device such as Hotmail, but if there are more on our device providers will all be listed and the user can choose the one he wants to send the email. Place the following piece of code and minimum required in order to send an email.  

//netFramework dll
using System.Windows;
using Microsoft.Phone.Tasks;

//Namespace EmailSample
namespace EmailSample
{
    public partial class MainPage
    {
        // Constructor
        public MainPage()
        {
            //Method InitializeComponent
            InitializeComponent();
        }

        //Click event BtnsendClick
        private void BtnsendClick(object sender, RoutedEventArgs e)
        {
            // Create a new instance of the class EmailComposeTask with which you can send email
            var emailcomposer = new EmailComposeTask
            {
                // I enter the recipients to send the email using the To property of the class EmailComposeTask
                To = string.Concat("mailto:",txtEmail.Text),

                // Set the title of the property by Subject
                Subject = "Email Sample",

                // Enhanced the value of the Body property EmailComposeTask class, this is the content that will display the recipient
                Body = txtEmail.Text,
            };

            // Start the email application on your device to send the Email
            emailcomposer.Show();
        }
    }
}

For more information please contact us at  carmelolm78@live.it

posted @ lunedì 11 marzo 2013 21:37 | Feedback (20) | Filed Under [ Articles C# in English ]

Send Email with WindowsPhone

This example shows how to send email using a device with WindowsPhone.

To try this example and must have a telephone system operating WindowsPhone8, alternatively you can try it with VisualStudio and the emulator WWGA512 mb, but without the ability to send email.

With WindowsPhone 7 and 8 and not only can send Email directly from the device, but also creating our application of any type, but with the need to send email to this Microsoft gives us the class EmailComposeTask. This class provides several properties to be implemented in its entirety in order to competare everything you need to successfully send the email. Let's see one by one and see their work, the Bcc property, this property gets or sets the recipients in the Bcc line of the e-mail, the Body property gets or sets the body of the e-mail, the property gets or Cc sets the recipients in the Cc line of the e-mail, the CodePage property gets or sets the character set that will be used to display the contents of the message, the Subject property gets or sets the subject of the e-mail and finally the properties to get or set the recipients in the To line of the e-mail. There are some methods that make up the class EmailComposeTask, we will focus on the Show () method, this method allows you to start the providers installed on the device such as Hotmail, but if there are more on our device providers will all be listed and the user can choose the one he wants to send the email. Place the following piece of code and minimum required in order to send an email.  

Imports Microsoft.Phone.Controls
Imports Microsoft.Phone.Tasks

Partial Public Class MainPage
    Inherits PhoneApplicationPage

    ' Costructor
    Public Sub New()
        InitializeComponent()
        SupportedOrientations = SupportedPageOrientation.Portrait Or SupportedPageOrientation.Landscape
    End Sub


    'Click event BtnsendClick
    Private Sub BtnsendClick(sender As Object, e As RoutedEventArgs)
        ' Create a new instance of the class EmailComposeTask with which you can send email
        ' I enter the recipients to send the email using the To property of the class EmailComposeTask

        ' Set the title of the property by Subject

        ' Enhanced the value of the Body property EmailComposeTask class, this is the content that will display the recipient
        Dim emailcomposer = New EmailComposeTask() With { _
            .To = String.Concat("mailto:", txtEmail.Text), _
            .Subject = "Email Sample", _
            .Body = txtEmail.Text _
        }

        ' Start the email application on your device to send the Email
        emailcomposer.Show()
    End Sub

End Class

 

For more information please contact us at  carmelolm78@live.it

 

 

 

posted @ lunedì 11 marzo 2013 21:35 | Feedback (6) | Filed Under [ Articles VB.NET in English ]

Inviare Email con WindowsPhone

Questo esempio spiega come poter inviare email mediante un device con WindowsPhone.

Per poter provare questo esempio e necessario disporre di un Telefono con sistema operativo WindowsPhone8 , in alternativa e possibile provarlo con VisualStudio e l'emulatore WWGA512 mb , ma senza la possibilità di inviare email.

Con WindowsPhone 7 e 8 e possibile inviare Email non solo direttamente dal dispositivo , ma anche creando la nostra applicazione di qualunque tipo ma con la necessità di inviare email  , per questo Microsoft ci offre la classe EmaliComposeTask . Questa classe offre diverse proprietà da implementare in ogni sua parte in modo da competare tutto il necessario per poter inviare correttamente l'email. Vediamole una per volta e vediamo le loro funzioni , la proprietà Bcc , questa proprietà ottiene o imposta i destinatari nella riga Ccn del messaggio di e-mail , la proprietà Body ottiene o imposta il corpo del messaggio e-mail ,la proprietà Cc ottiene o imposta i destinatari nella riga Cc del messaggio e-mail , la proprietà CodePage ottiene o imposta il set di caratteri che verrà utilizzato per visualizzare il contenuto del messaggio , la proprietà Subject ottiene o imposta l'oggetto del messaggio e-mail ed infine la proprietà To ottiene o imposta i destinatari nella riga A del messaggio di e-mail.  Ci sono alcuni metodi che compongono la classe EmailComposeTask , noi ci concentreremo sul metodo Show() , questo metodo permette di avviare il provider installato sul device per esempio Hotmail  , se invece sul nostro device vi sono più provider verranno tutti elencati e l'utente può scegliere quello con cui vuole inviare l'email. Di seguito posto la parte di codice minima e necessaria per poter inviare un email .

//netFramework dll
using System.Windows;
using Microsoft.Phone.Tasks;

//Namespace EmailSample
namespace EmailSample
{
    public partial class MainPage
    {
        // Constructor
        public MainPage()
        {
            //Method InitializeComponent
            InitializeComponent();
        }

        //Click event BtnsendClick
        private void BtnsendClick(object sender, RoutedEventArgs e)
        {
            // Create a new instance of the class EmailComposeTask with which you can send email
            var emailcomposer = new EmailComposeTask
            {
                // I enter the recipients to send the email using the To property of the class EmailComposeTask
                To = string.Concat("mailto:",txtEmail.Text),

                // Set the title of the property by Subject
                Subject = "Email Sample",

                // Enhanced the value of the Body property EmailComposeTask class, this is the content that will display the recipient
                Body = txtEmail.Text,
            };

            // Start the email application on your device to send the Email
            emailcomposer.Show();
        }
    }
}

Per maggiori informazioni potete contattarci ai seguenti indirizzi  carmelolm78@live.it

posted @ lunedì 11 marzo 2013 21:32 | Feedback (8) | Filed Under [ Articoli su C# ]

Inviare Email con WindowsPhone

Questo esempio spiega come poter inviare email mediante un device con WindowsPhone.

Per poter provare questo esempio e necessario disporre di un Telefono con sistema operativo WindowsPhone8 , in alternativa e possibile provarlo con VisualStudio e l'emulatore WWGA512 mb , ma senza la possibilità di inviare email.

Con WindowsPhone 7 e 8 e possibile inviare Email non solo direttamente dal dispositivo , ma anche creando la nostra applicazione di qualunque tipo ma con la necessità di inviare email  , per questo Microsoft ci offre la classe EmaliComposeTask . Questa classe offre diverse proprietà da implementare in ogni sua parte in modo da competare tutto il necessario per poter inviare correttamente l'email. Vediamole una per volta e vediamo le loro funzioni , la proprietà Bcc , questa proprietà ottiene o imposta i destinatari nella riga Ccn del messaggio di e-mail , la proprietà Body ottiene o imposta il corpo del messaggio e-mail ,la proprietà Cc ottiene o imposta i destinatari nella riga Cc del messaggio e-mail , la proprietà CodePage ottiene o imposta il set di caratteri che verrà utilizzato per visualizzare il contenuto del messaggio , la proprietà Subject ottiene o imposta l'oggetto del messaggio e-mail ed infine la proprietà To ottiene o imposta i destinatari nella riga A del messaggio di e-mail.  Ci sono alcuni metodi che compongono la classe EmailComposeTask , noi ci concentreremo sul metodo Show() , questo metodo permette di avviare il provider installato sul device per esempio Hotmail  , se invece sul nostro device vi sono più provider verranno tutti elencati e l'utente può scegliere quello con cui vuole inviare l'email. Di seguito posto la parte di codice minima e necessaria per poter inviare un email .

Imports Microsoft.Phone.Controls
Imports Microsoft.Phone.Tasks

Partial Public Class MainPage
    Inherits PhoneApplicationPage

    ' Costructor
    Public Sub New()
        InitializeComponent()
        SupportedOrientations = SupportedPageOrientation.Portrait Or SupportedPageOrientation.Landscape
    End Sub


    'Click event BtnsendClick
    Private Sub BtnsendClick(sender As Object, e As RoutedEventArgs)
        ' Create a new instance of the class EmailComposeTask with which you can send email
        ' I enter the recipients to send the email using the To property of the class EmailComposeTask

        ' Set the title of the property by Subject

        ' Enhanced the value of the Body property EmailComposeTask class, this is the content that will display the recipient
        Dim emailcomposer = New EmailComposeTask() With { _
            .To = String.Concat("mailto:", txtEmail.Text), _
            .Subject = "Email Sample", _
            .Body = txtEmail.Text _
        }

        ' Start the email application on your device to send the Email
        emailcomposer.Show()
    End Sub

End Class

Per maggiori informazioni potete contattarci ai seguenti indirizzi  carmelolm78@live.it

posted @ lunedì 11 marzo 2013 21:31 | Feedback (8) | Filed Under [ Articoli su VB.NET ]

sabato 16 febbraio 2013

La prima applicazione Windows Phone .

E con enorme piacere che annuncio la nostra prima applicazione per Windows Phone  , si tratta di una semplice applicazione che visualizza immagini dalle Webcam di tutta Italia , dopo qualche problema iniziale essendo la prima siamo riusciti a risolverli ed ora e disponibile sullo Store di Windows Phone  ,  per il momento visualizza una Webcam per Regione  , ma in futuro provvederemo all'aggiornamento e all'aggiunta di altre Webcam togliendo quelle non più attive  , insomma può essere utile se ci volesse spostare per viaggio , ferie o altro e visualizzare il tempo  ,sereno , nuvoloso , pioggia e molto altro . Il collega Piero Sbressa che ma ha aiutato molto allo sviluppo per quanto riguarda la parte di designer con il codice XAML , ha provveduto scrivendo sul suo blog un articolo che ne descrive le funzionalità principali e un anteprima di immagini , qualora foste interessati questo e il link http://pieer11.wordpress.com/2013/02/16/la-nostra-prima-app/

Saremo lieti di ricevere consigli  , suggerimenti e critiche perché tutto aiuta a migliorare e migliorarsi sempre di più , e molto presto sarà disponibile anche per Windows8 alla quale ci stiamo già lavorando con intraprendenza e passione per questa bellissima realtà che risponde al nome di "Programmazione" soprattutto per quanto concerne Microsoft e il netFramework.

Piero Sbressa e Carmelo La Monica.

posted @ sabato 16 febbraio 2013 13:45 | Feedback (4) |

giovedì 13 dicembre 2012

CommunityDays.it - Dove le community si incontrano

Community Days2013 , si preannuncia un due giorni all'insegna della programmazione e molto altro in campo informatico, per maggiori informazioni vedi link seguente http://www.communitydays.it/

 

 

 

 

posted @ giovedì 13 dicembre 2012 23:07 | Feedback (13) |

sabato 1 dicembre 2012

VisualStudio 2012 aggiornamento1

Visual Studio 2012.1 verrà aggiornato periodicamente da Microsoft allo scopo di fornire funzionalità e strumenti nuovi e migliorati. Questi miglioramenti verranno allineati alle ultime tendenze di sviluppo del software, per garantire sempre l'accesso alle migliori soluzioni per la compilazione di app moderne. Gli aggiornamenti conterranno inoltre correzioni di bug e altri miglioramenti. Per ulteriori informazioni, vedere il blog di Visual Studio.

Tra le principali funzionalità disponibili con l'aggiormanto1:                        

  • Sviluppo SharePoint: funzionalità ALM aggiuntive in SharePoint come, ad esempio, il supporto per il testing tramite test di carico e test codificato dell'interfaccia utente, che potenziano le caratteristiche di qualità, scalabilità e flessibilità.
  • Supporto del team Agile: pianificazione Agile semplificata con Web Access e il nuovo supporto Kanban, affiancato al supporto Scrum esistente.
  • Attivazione di qualità continua: miglioramenti al testing, dall'organizzazione di unit test a una maggiore flessibilità del flusso di lavoro per la realizzazione di test manuali.
  • Sviluppo Windows: potenziamento dello sviluppo di applicazioni per Windows 8, come il supporto del debugging di applicazioni Windows Store miste, gestite e native, e miglioramento del debugging ARM per le app di Windows 8.

posted @ sabato 1 dicembre 2012 15:11 | Feedback (10) |

martedì 16 ottobre 2012

Microsoft Community Contributor 2012

Oggi e stato un buon risveglio  ed ancora un giornata da ricordare particolarmente , per la seconda volta da quando frequento i siti di Msdn mi è stato riconosciuto il premio MCC Award  , grazie ancora Microsoft per avermi regalato questa ennesima soddisfazione , e sarà motivo in più per continuare a contribuire con risposte ai Forum , scrivere articoli ed altro.

 

Carmelo La Monica.

posted @ martedì 16 ottobre 2012 20:05 | Feedback (21) |

domenica 1 maggio 2011

Microsoft Community Contributor MCC

Il giorno 28/04/2011  e stato uno dei giorni più emozionati che ho mai avuto.

Infatti consultando la casella di posta elettronica sono venuto a conoscenza di aver avuto

il riconoscimento di MicrosoftCommunityContributor Award 2011 , il quale mi ha lasciato a dir poco

incredulo per 24 - 30 ore.

 

Ringrazio infinitamente per quanto assegnatomi e sarà  motivo in più per continuare e contribuire

maggiormente alla community.

 

Carmelo La Monica 

posted @ domenica 1 maggio 2011 19:56 | Feedback (10) |

Powered by:
Powered By Subtext Powered By ASP.NET