frmtmp.frm

来自「baidu_IM源程序,解压后就可以看到。自己还没有试过,不过貌似很不错的」· FRM 代码 · 共 77 行

FRM
77
字号
VERSION 5.00
Begin VB.Form frmTmp 
   Caption         =   "Form1"
   ClientHeight    =   7125
   ClientLeft      =   3375
   ClientTop       =   1875
   ClientWidth     =   6345
   LinkTopic       =   "Form1"
   ScaleHeight     =   7125
   ScaleWidth      =   6345
   Begin VB.TextBox Text8 
      Height          =   375
      Left            =   360
      TabIndex        =   3
      Text            =   "http://---.---.---/"
      Top             =   5640
      Width           =   4335
   End
   Begin VB.CommandButton Command6 
      Caption         =   "Post"
      Height          =   855
      Left            =   4800
      TabIndex        =   2
      Top             =   5640
      Width           =   1335
   End
   Begin VB.TextBox Text6 
      Height          =   375
      Left            =   360
      TabIndex        =   1
      Text            =   "command=&user="
      Top             =   6120
      Width           =   4335
   End
   Begin VB.TextBox Text4 
      Height          =   5295
      Left            =   120
      MultiLine       =   -1  'True
      ScrollBars      =   2  'Vertical
      TabIndex        =   0
      Top             =   120
      Width           =   6015
   End
   Begin VB.Label Label11 
      Caption         =   "POST"
      Height          =   375
      Left            =   0
      TabIndex        =   5
      Top             =   6120
      Width           =   375
   End
   Begin VB.Label Label10 
      Caption         =   "URL"
      Height          =   375
      Left            =   0
      TabIndex        =   4
      Top             =   5640
      Width           =   375
   End
End
Attribute VB_Name = "frmTmp"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit



Private Sub Command6_Click()
Dim strCookie As String 'cookie
strCookie = "Cookie: " & tmpCookie

Call frmMain.MyPost(Text8.Text, Text6.Text, strCookie, "tmpost")
End Sub

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?