frmShowUrlInfo.frm
上传用户:davilee3
上传日期:2015-04-22
资源大小:986k
文件大小:2k
源码类别:

浏览器

开发平台:

Visual Basic

  1. VERSION 5.00
  2. Begin VB.Form frmShowUrlInfo 
  3.    BorderStyle     =   4  'Fixed ToolWindow
  4.    Caption         =   "Form1"
  5.    ClientHeight    =   1305
  6.    ClientLeft      =   45
  7.    ClientTop       =   285
  8.    ClientWidth     =   4680
  9.    LinkTopic       =   "Form1"
  10.    LockControls    =   -1  'True
  11.    MaxButton       =   0   'False
  12.    MinButton       =   0   'False
  13.    ScaleHeight     =   1305
  14.    ScaleWidth      =   4680
  15.    ShowInTaskbar   =   0   'False
  16.    StartUpPosition =   1  '所有者中心
  17.    Begin VB.CommandButton cmdClose 
  18.       Cancel          =   -1  'True
  19.       Caption         =   "关闭(&C)"
  20.       Height          =   375
  21.       Left            =   3600
  22.       TabIndex        =   2
  23.       Top             =   840
  24.       Width           =   975
  25.    End
  26.    Begin VB.TextBox txtUrl 
  27.       BackColor       =   &H8000000F&
  28.       Height          =   270
  29.       HideSelection   =   0   'False
  30.       Left            =   120
  31.       Locked          =   -1  'True
  32.       TabIndex        =   1
  33.       Top             =   480
  34.       Width           =   4455
  35.    End
  36.    Begin VB.TextBox txtUrlCaption 
  37.       BackColor       =   &H8000000F&
  38.       Height          =   270
  39.       HideSelection   =   0   'False
  40.       Left            =   120
  41.       Locked          =   -1  'True
  42.       TabIndex        =   0
  43.       Top             =   120
  44.       Width           =   4455
  45.    End
  46. End
  47. Attribute VB_Name = "frmShowUrlInfo"
  48. Attribute VB_GlobalNameSpace = False
  49. Attribute VB_Creatable = False
  50. Attribute VB_PredeclaredId = True
  51. Attribute VB_Exposed = False
  52. Option Explicit
  53. Public Sub IniForm(nCaption As String, Url As String, Owner As MDIForm)
  54. Me.Caption = nCaption
  55. txtUrlCaption.Text = nCaption
  56. txtUrl.Text = Url
  57. Me.Show , Owner
  58. End Sub
  59. Private Sub cmdClose_Click()
  60. Unload Me
  61. End Sub
  62. Private Sub txtUrl_GotFocus()
  63. With txtUrl
  64.     .SelStart = 0
  65.     .SelLength = Len(.Text)
  66. End With
  67. End Sub
  68. Private Sub txtUrlCaption_GotFocus()
  69. With txtUrlCaption
  70.     .SelStart = 0
  71.     .SelLength = Len(.Text)
  72. End With
  73. End Sub