VERSION 5.00 Object = "{5E9E78A0-531B-11CF-91F6-C2863C385E30}#1.0#0"; "MSFLXGRD.OCX" Begin VB.Form Form9 BorderStyle = 4 'Fixed ToolWindow Caption = "REE data table" ClientHeight = 3435 ClientLeft = 45 ClientTop = 285 ClientWidth = 8865 LinkTopic = "Form9" MaxButton = 0 'False MDIChild = -1 'True MinButton = 0 'False ScaleHeight = 3435 ScaleWidth = 8865 ShowInTaskbar = 0 'False Begin VB.CommandButton Command1 Caption = "Close (SpaceBar)" Height = 375 Left = 6720 TabIndex = 1 Top = 2760 Width = 1815 End Begin MSFlexGridLib.MSFlexGrid MSFG1 Height = 2535 Left = 240 TabIndex = 0 Top = 120 Width = 8295 _ExtentX = 14631 _ExtentY = 4471 _Version = 393216 Rows = 4 Cols = 4 BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851} Name = "Arial" Size = 9 Charset = 0 Weight = 400 Underline = 0 'False Italic = 0 'False Strikethrough = 0 'False EndProperty End End Attribute VB_Name = "Form9" Attribute VB_GlobalNameSpace = False Attribute VB_Creatable = False Attribute VB_PredeclaredId = True Attribute VB_Exposed = False Private Sub Command1_Click() Me.Hide End Sub Private Sub Form_Load() 'tabella terre rare 'Form9.Hide Form9.MSFG1.ColS = 4 Form9.MSFG1.Rows = 2 Form9.MSFG1.Row = 0 Form9.MSFG1.col = 1 Form9.MSFG1.Text = "Eu/Eu*" Form9.MSFG1.col = 2 Form9.MSFG1.Text = "Yb/Yb*" Form9.MSFG1.col = 3 Form9.MSFG1.Text = "Sum(REE)" Form9.MSFG1.ColWidth(0) = 3000 End Sub Private Sub MSFG1_KeyDown(KeyCode As Integer, Shift As Integer) If KeyCode = 32 Then Command1_Click End If End Sub Private Sub MSFG1_MouseUp(Button As Integer, Shift As Integer, x As Single, y As Single) If Button = 2 Then TipoCopia = "REE" MDIForm1.PopupMenu MDIForm1.mnuPopup1 End If End Sub