Private Sub Command1_Click()
Script.Reset
Script.AddCode "Sub Command1_Click()" & vbNewLine & Text1.Text & vbNewLine & "End Sub"
Script.Run "Command1_Click"
Kodlar1.HabarDialogy "Kompyuter", "Salam"
End Sub
Private Sub Command2_Click()
Script.Reset
Script.AddCode "Function Kod" & vbNewLine & Text1.Text & vbNewLine & "End function"
Script.Run "Kod"
Kodlar1.HabarDialogy "Kompyuter", "Salam"
End Sub
Private Sub Cyk_Click()
End
End Sub
Private Sub Form_Load()
Script.AddObject "IseGoyber", IseGoyber
Script.AddObject "Command1", Command1
Script.AddObject "Kodlar1", Kodlar1
Script.AddObject "Form1", Form1
End Sub
Private Sub Form_Resize()
Text1.Height = Form1.Height
Text1.Width = Form1.Width
End Sub
Private Sub IseGoyber_Click()
Command2_Click
End Sub
Private Sub ProgrammaBarada1_Click()
ProgrammaBarada.Show
End Sub
Private Sub Script_Error()
MsgBox "Kodda Yalnyslyklar bar!", vbInformation, "Compiler"
End Sub
Private Sub Text1_MouseUp(Button As Integer, Shift As Integer, X As Single, Y As Single)
If Button = vbRightButton Then PopupMenu Redaktirle
End Sub