Form1.frm
资源名称:11.rar [点击查看]
上传用户:xmantailai
上传日期:2018-01-13
资源大小:31k
文件大小:2k
源码类别:
WEB邮件程序
开发平台:
Visual Basic
- VERSION 5.00
- Begin VB.Form Form1
- Caption = "Form1"
- ClientHeight = 3090
- ClientLeft = 60
- ClientTop = 450
- ClientWidth = 4380
- LinkTopic = "Form1"
- ScaleHeight = 3090
- ScaleWidth = 4380
- StartUpPosition = 3 '窗口缺省
- Begin VB.CommandButton Command2
- Caption = "Command2"
- Height = 420
- Left = 1710
- TabIndex = 3
- Top = 1170
- Width = 1230
- End
- Begin VB.TextBox Text2
- Height = 1095
- Left = 45
- MultiLine = -1 'True
- ScrollBars = 2 'Vertical
- TabIndex = 2
- Text = "Form1.frx":0000
- Top = 1620
- Width = 4245
- End
- Begin VB.CommandButton Command1
- Caption = "Command1"
- Height = 375
- Left = 45
- TabIndex = 1
- Top = 1170
- Width = 1140
- End
- Begin VB.TextBox Text1
- Height = 915
- Left = 45
- MultiLine = -1 'True
- ScrollBars = 2 'Vertical
- TabIndex = 0
- Text = "Form1.frx":010C
- Top = 135
- Width = 4290
- End
- End
- Attribute VB_Name = "Form1"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Option Explicit
- Private Sub Command1_Click()
- FrmMain.Winsock1.SendData Text1.Text
- End Sub
- Private Sub Command2_Click()
- FrmMain.Winsock1.SendData Text2.Text & vbCrLf & "." & vbCrLf
- End Sub