home *** CD-ROM | disk | FTP | other *** search
/ Planet Source Code Jumbo …e CD Visual Basic 1 to 7 / 3_2004-2005.ISO / Data / Zips / SketchPhot1773657242004.psc / Form2.frm < prev    next >
Text File  |  2004-07-20  |  3KB  |  65 lines

  1. VERSION 5.00
  2. Begin VB.Form Form2 
  3.    Caption         =   "Help"
  4.    ClientHeight    =   6975
  5.    ClientLeft      =   60
  6.    ClientTop       =   450
  7.    ClientWidth     =   8175
  8.    LinkTopic       =   "Form2"
  9.    ScaleHeight     =   6975
  10.    ScaleWidth      =   8175
  11.    StartUpPosition =   3  'Windows Default
  12.    Begin VB.TextBox txtHelp 
  13.       BeginProperty Font 
  14.          Name            =   "MS Sans Serif"
  15.          Size            =   9.75
  16.          Charset         =   178
  17.          Weight          =   400
  18.          Underline       =   0   'False
  19.          Italic          =   0   'False
  20.          Strikethrough   =   0   'False
  21.       EndProperty
  22.       Height          =   6495
  23.       Left            =   240
  24.       MultiLine       =   -1  'True
  25.       TabIndex        =   0
  26.       Text            =   "Form2.frx":0000
  27.       Top             =   240
  28.       Width           =   7695
  29.    End
  30. End
  31. Attribute VB_Name = "Form2"
  32. Attribute VB_GlobalNameSpace = False
  33. Attribute VB_Creatable = False
  34. Attribute VB_PredeclaredId = True
  35. Attribute VB_Exposed = False
  36. Private Sub Form_Load()
  37.   txtHelp = "This application draws sketch from your photos automatically or manually!" + vbCrLf + _
  38.            "The original photo will be shown in left picture box, The result in Right" + vbCrLf + _
  39.            vbCrLf + _
  40.            "-If you move the mouse in 'Left picture box' when the 'Left button' is pressed" + vbCrLf + _
  41.            " its trace will be drawn in 'Right picture box'" + vbCrLf + _
  42.            " Also the original color will be used for drawing." + vbCrLf + _
  43.            vbCrLf + _
  44.            "-If you move the mouse in 'Left Picture Box',  the corresponding" + vbCrLf + _
  45.            " color will be shown in upper right box of this picture box." + vbCrLf + _
  46.            " Now, if you Right Click, this color will be shown in upper left " + vbCrLf + _
  47.            " box of Right Picture Box." + vbCrLf + _
  48.            vbCrLf + _
  49.            "-If you move the mouse in 'Right picture box' when the 'Left button' is pressed " + vbCrLf + _
  50.            " its trace will be drawn, in this case the color which is shown in" + vbCrLf + _
  51.            " upper left box of this picture box will be used." + vbCrLf + _
  52.           vbCrLf + _
  53.            "-The horizontal scroll bar is used for Auto Sketching" + vbCrLf + _
  54.            " I suggest to use Dif=10 for first try, if you use 'Auto Sketch 1'" + vbCrLf + _
  55.            " and Dif=100 if you use 'Auto Sketch 2'" + vbCrLf + _
  56.           vbCrLf + _
  57.            "-'Open and Fit' loads a picture in origin picture box (Left picture box)" + vbCrLf + _
  58.            " And fits it! 'Open' just loads without fitting!" + vbCrLf + _
  59.            " 'Save' , 'Clear' & 'Help' don't need any comment! You better know what they do ..." + vbCrLf + _
  60.            vbCrLf + _
  61.            "<<<  Programmer : Mahdi Shakouri rad, Mahdi_Rad@yahoo.com , July 2004 >>>"
  62.           
  63.  
  64. End Sub
  65.