Alex's Weblog

Weblog di Ermanno Goletto (Codename Alex - A Learning EXperience)
posts - 438, comments - 4214, trackbacks - 294

My Links

News

Il blog è stato
trasferito al
 seguente link:


DevAdmin Blog

Add my blog to Live

Foto

Curriculum Vitae


Il contenuto di questo blog e di ciascun post viene fornito “così come é”, senza garanzie, e non conferisce alcun diritto. Questo blog riporta il mio personale pensiero che non riflette necessariamente il pensiero del mio datore di lavoro.

Logo Creative Commons Deed


Logo MCTS

Logo MCSA

Logo MCP

Logo Microsoft Certified Business Management Solutions Professional

Microsoft Certified Business Management Solutions Specialist


Logo UGIdotNET UGIdotNET Contributor


Logo UGISS UGISS Contributor


Logo SysAdmin.it SysAdmin.it Staff


Article Categories

Archives

Post Categories

Blogs

Database

Development

Friends

IT

Knowledge Base

Links

MBS

MCP

MVP Sites

User Groups

Virtualization

Gestire le descrizioni sugli enumerativi

Molto spesso per comodità si utilizzano nei programmi gli enumerativi e altrettanto spesso si desidererebbe associare agli elementi una descrizione da utilizzare poi sull'interfaccia utente.

Un metodo può essere quello di utilizzare l'attibuto System.ComponentModel.Description come segue:

Public Enum Prove As Integer
         _
         Uno
         _
         Due
         _
         Tre
End Enum

Per recuperare poi queste descrizioni si può utilizzare la reflection come segue:

Dim fields() As System.Reflection.FieldInfo
fields = GetType(Prove).GetFields(Reflection.BindingFlags.Public Or _
                                                      Reflection.BindingFlags.Static)

For Each field As System.Reflection.FieldInfo In fields
       Dim descriptions() As Object
       descriptions = field.GetCustomAttributes( _
                             GetType(System.ComponentModel.DescriptionAttribute), _
                              False)

       If descriptions.Length > 0 Then
              MsgBox(DirectCast(descriptions(0), _
                            System.ComponentModel.DescriptionAttribute).Description)
       End If

Next

Print | posted on lunedì 19 gennaio 2004 21:27 | Filed Under [ Code & Snippet ]

Feedback

Gravatar

# Dissertation Proposal Help

Keeping up a harmony between social life and scholastic can be intense, yet now you can get it going with Dissertation Proposal Help, who can enable you to create the best quality task without missing out on hanging out with your companions.
24/02/2018 12:57 | Dissertation Proposal Help
Gravatar

# How To Start Running

Super site! I am Loving it!! Will return once more, Im taking your food likewise, Thanks. How To Start Running
05/09/2018 14:51 | How To Start Running
Comments have been closed on this topic.

Powered by:
Powered By Subtext Powered By ASP.NET