Home| Progetto| Web| Faq| Acronimi | ||||
Argomenti Documenti pubblicabili:1120
Scripts:1282 Documenti non pubblicabili:162 Categorie tematiche:68 .Net |_C# |_Visual basic.net |_Asp.net Active Server Pages C++ Cascade Style Sheet JavaScript Mysql Php Xml Java |_Java 2 Micro Edition |_Java server pages |_Java Servlet Oracle |_PLSQL PostgreSQL Unix
Oracle...
Script:
Dato il nome di una vista ricava informazioni su tipo e attributi della colonna di riferimenti
Unix...
Tip:
Eseguire più comandi in una sola linea
PLSQL...
Script:
Inizialiazzazione e stampa variabili
Shell scripting...
Script:
Array
A User Agent, like a web browser, uses HTTP to request a HTML document
Php Funzione mail()
In programming the danger of exploring the small details of coding is that you get obsessed with every line of code you write, thereby greatly reducing productivity.
In general, is not worth obsessing over code. On the other hand you should code with deliberation and intent. Steven Feurstein Oracle Magazine July /August 2004 A User Agent, like a web browser, uses HTTP to request a HTML document
|
Visual basic.net
Home >Visual basic.net > Disegna alcuni tra i più utilizzati controlli di una form
Public Class Form1 Inherits System.Windows.Forms.Form #Region " Codice generato da Progettazione Windows Form " Public Sub New() MyBase.New() 'Chiamata richiesta da Progettazione Windows Form. InitializeComponent() 'Aggiungere le eventuali istruzioni di inizializzazione dopo la chiamata a InitializeComponent() End Sub 'Form esegue l'override del metodo Dispose per pulire l'elenco dei componenti. Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean) If disposing Then If Not (components Is Nothing) Then components.Dispose() End If End If MyBase.Dispose(disposing) End Sub 'Richiesto da Progettazione Windows Form Private components As System.ComponentModel.IContainer 'NOTA: la procedura che segue è richiesta da Progettazione Windows Form. 'Può essere modificata in Progettazione Windows Form. 'Non modificarla nell'editor del codice. Friend WithEvents TextBox1 As System.Windows.Forms.TextBox Friend WithEvents Button1 As System.Windows.Forms.Button Friend WithEvents Label1 As System.Windows.Forms.Label Friend WithEvents CheckBox1 As System.Windows.Forms.CheckBox Friend WithEvents Label2 As System.Windows.Forms.Label Friend WithEvents RadioButton1 As System.Windows.Forms.RadioButton Friend WithEvents Label3 As System.Windows.Forms.Label <System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent() Me.TextBox1 = New System.Windows.Forms.TextBox() Me.Button1 = New System.Windows.Forms.Button() Me.Label1 = New System.Windows.Forms.Label() Me.CheckBox1 = New System.Windows.Forms.CheckBox() Me.Label2 = New System.Windows.Forms.Label() Me.RadioButton1 = New System.Windows.Forms.RadioButton() Me.Label3 = New System.Windows.Forms.Label() Me.SuspendLayout() ' 'TextBox1 ' Me.TextBox1.ForeColor = System.Drawing.Color.MediumSeaGreen Me.TextBox1.Location = New System.Drawing.Point(8, 96) Me.TextBox1.Multiline = True Me.TextBox1.Name = "TextBox1" Me.TextBox1.Size = New System.Drawing.Size(210, 32) Me.TextBox1.TabIndex = 0 Me.TextBox1.Text = "System.Windows.Forms.TextBox" ' 'Button1 ' Me.Button1.FlatStyle = System.Windows.Forms.FlatStyle.System Me.Button1.Location = New System.Drawing.Point(8, 144) Me.Button1.Name = "Button1" Me.Button1.Size = New System.Drawing.Size(160, 32) Me.Button1.TabIndex = 1 Me.Button1.Text = "System.Windows.Forms.Button" ' 'Label1 ' Me.Label1.Location = New System.Drawing.Point(8, 56) Me.Label1.Name = "Label1" Me.Label1.Size = New System.Drawing.Size(192, 32) Me.Label1.TabIndex = 2 Me.Label1.Text = "System.Windows.Forms.Label" ' 'CheckBox1 ' Me.CheckBox1.Location = New System.Drawing.Point(8, 192) Me.CheckBox1.Name = "CheckBox1" Me.CheckBox1.Size = New System.Drawing.Size(200, 24) Me.CheckBox1.TabIndex = 3 Me.CheckBox1.Text = "System.Windows.Forms.CheckBox" ' 'Label2 ' Me.Label2.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) Me.Label2.Location = New System.Drawing.Point(8, 8) Me.Label2.Name = "Label2" Me.Label2.Size = New System.Drawing.Size(256, 16) Me.Label2.TabIndex = 4 Me.Label2.Text = "Alcuni tra i più utilizzati controlli di una form" ' 'RadioButton1 ' Me.RadioButton1.Location = New System.Drawing.Point(8, 224) Me.RadioButton1.Name = "RadioButton1" Me.RadioButton1.Size = New System.Drawing.Size(216, 24) Me.RadioButton1.TabIndex = 5 Me.RadioButton1.Text = "System.Windows.Forms.RadioButton" ' 'Label3 ' Me.Label3.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) Me.Label3.Location = New System.Drawing.Point(8, 272) Me.Label3.Name = "Label3" Me.Label3.Size = New System.Drawing.Size(256, 40) Me.Label3.TabIndex = 6 Me.Label3.Text = "Provate ad costruire e compilare una form simile con il Designer di Visual Basic " & _ "" ' 'Form1 ' Me.AutoScaleBaseSize = New System.Drawing.Size(5, 13) Me.BackColor = System.Drawing.SystemColors.ControlLightLight Me.ClientSize = New System.Drawing.Size(296, 326) Me.Controls.AddRange(New System.Windows.Forms.Control() {Me.Label3, Me.RadioButton1, Me.Label2, Me.CheckBox1, Me.Label1, Me.Button1, Me.TextBox1}) Me.ForeColor = System.Drawing.Color.Blue Me.Name = "Form1" Me.Text = "Controlli in una form" Me.ResumeLayout(False) End Sub #End Region Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load End Sub Private Sub TextBox1_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox1.TextChanged End Sub Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click End Sub Private Sub Label1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Label1.Click End Sub Private Sub CheckBox1_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CheckBox1.CheckedChanged End Sub Private Sub Label3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Label3.Click End Sub End Class Downloads: WindowsApplication2.exe ( 13 KB) ![]() Scarica ed esegui il file compilato (WindowsApplication2.exe) sviluppato in maniera visuale con Microsoft Visual Studio. Utilizzando Microsoft Visual Studio Prova creare un file simile. Warning: include(ads/text468x15.html): failed to open stream: No such file or directory in D:\inetpub\webs\fishscriptcom\documents\view_document.php on line 131 Warning: include(): Failed opening 'ads/text468x15.html' for inclusion (include_path='.;C:\php\pear') in D:\inetpub\webs\fishscriptcom\documents\view_document.php on line 131 Tutorial ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Script ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Esercizi ![]() ![]() ![]() Comandi ![]() ![]() ![]() |
CercaAnger is creative, depression is useless.
Dyson, Freeman J. Anger is creative, depression is useless.
Dyson, Freeman J.
Oracle...
Definizioni:
Transazione
Shell scripting...
Script:
if e else
fishScript.Com is accessible by Mobile access technology
as mobile phones, Palm and Pocket PC .
Nicoleta e Marco Magnani tutorial, examples, courses, esempi, corsi, esercizi, appunti vari Dottoressa Nicoleta Dragu Formatrice Docente Insegnante Mediatrice Culturale Dott. Marco Magnani Universita La Sapienza Roma Master Computer Science Hunter College New York , Data Base Administrator DBA oracle System architect |