dicembre 2004 Blog Posts

ESPLORAZIONE USO DEI DELEGATE

PROVA USO DELEGATE 'Prova uso delegatedelegate sub Pippo(byval pluto as string)dim deleg as  Pippo = new pippo(addressof Messaggio)sub Messaggio (byval msg as string)    Messagebox.Show (msg)end sub'richiamo deleg("Bravo")

Estrazione dello schema di una tabella usando i datareader

Ho trovato un modo alternativo al metodo GetOledbSchema di OledbConnection.Penso che lo utilizzerò per la classe che sto costruendo per l'accesso ai database : Public Function GetDataFromReader(ByVal cn As OleDbConnection, ByVal tabella As String, ByVal ls As ListBox) Dim cmd As New OleDbCommand Dim schemaTable As DataTable Dim myReader As OleDbDataReader Dim myField As DataRow Dim myProperty As DataColumn cn.Open() cmd.Connection = cn cmd.CommandText = "SELECT * FROM " & tabella myReader = cmd.ExecuteReader() 'Retrieve column schema into a DataTable. schemaTable = myReader.GetSchemaTable() 'For each field in the table... For Each myField In schemaTable.Rows 'For each property of the field... For Each myProperty In schemaTable.Columns 'Display the field name and value. If myProperty.ColumnName = "ProviderType" Then Dim tipo As...

Inizio apprendimento Vb Net

Sarà dura a sentire molti miei colleghi più fortunati che hanno iniziato prima di me, però sono deciso ! Dopo aver visto alcune potenti funzionalità che mi hanno affascinato : i Delegate , la gestione del subclassing così macchinosa in Vb6, e la fantastica realtà che finalmente TUTTO è un oggetto!Proseguo nell'esplorazione ..

«dicembre»
domlunmarmergiovensab
2829301234
567891011
12131415161718
19202122232425
2627282930311
2345678