home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form frmImgHTML
- BorderStyle = 1 'Fixed Single
- Caption = "Image Tag HTML "
- ClientHeight = 720
- ClientLeft = 1110
- ClientTop = 1590
- ClientWidth = 5595
- Icon = "frmImgHTML.frx":0000
- LinkTopic = "Form1"
- MaxButton = 0 'False
- ScaleHeight = 720
- ScaleWidth = 5595
- StartUpPosition = 1 'CenterOwner
- Begin VB.CommandButton cmdClipboard
- Caption = "Copy to Clipboard"
- Height = 345
- Left = 15
- TabIndex = 2
- Top = 360
- Width = 1455
- End
- Begin VB.CommandButton cmdClose
- Caption = "&Close"
- Height = 345
- Left = 4635
- TabIndex = 1
- Top = 360
- Width = 930
- End
- Begin VB.TextBox txtImgCode
- Height = 300
- Left = 15
- TabIndex = 0
- Top = 30
- Width = 5565
- End
- Attribute VB_Name = "frmImgHTML"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- '*******************************************************
- ' FastView32 was written mostly by Ryan Martinsen
- ' Image Map Maker - written by Theo Kandiliotis - ionikh@hol.gr
- ' I don't know who wrote the code for Inverting Colors
- ' If you use any of this code I would appreciate it if
- ' you would send me any improvements made to the code or
- ' interface design.
- ' E-mail: ryan@homeonthewww.com
- ' Web: http://www.homeonthewww.com/ryan/
- '*******************************************************
- Private Sub cmdClipboard_Click()
- Clipboard.Clear
- Clipboard.SetText txtImgCode.Text
- End Sub
- Private Sub cmdClose_Click()
- Unload Me
- End Sub
-