home *** CD-ROM | disk | FTP | other *** search
/ Planet Source Code Jumbo …e CD Visual Basic 1 to 7 / 6_2008-2009.ISO / data / zips / Odesa_Exe_21657410212009.psc / ChangeNameForm.frm < prev    next >
Text File  |  2009-10-21  |  2KB  |  53 lines

  1. VERSION 5.00
  2. Begin VB.Form ChangeNameForm 
  3.    BorderStyle     =   4  'Fixed ToolWindow
  4.    Caption         =   "Enter new name:"
  5.    ClientHeight    =   735
  6.    ClientLeft      =   45
  7.    ClientTop       =   315
  8.    ClientWidth     =   3735
  9.    LinkTopic       =   "Form1"
  10.    MaxButton       =   0   'False
  11.    MinButton       =   0   'False
  12.    ScaleHeight     =   735
  13.    ScaleWidth      =   3735
  14.    ShowInTaskbar   =   0   'False
  15.    StartUpPosition =   2  'CenterScreen
  16.    Begin VB.CommandButton ChangeFilename 
  17.       Caption         =   "OK"
  18.       Height          =   255
  19.       Left            =   2640
  20.       TabIndex        =   1
  21.       Top             =   240
  22.       Width           =   855
  23.    End
  24.    Begin VB.TextBox NewFileName 
  25.       Height          =   285
  26.       Left            =   240
  27.       TabIndex        =   0
  28.       Top             =   240
  29.       Width           =   2175
  30.    End
  31. End
  32. Attribute VB_Name = "ChangeNameForm"
  33. Attribute VB_GlobalNameSpace = False
  34. Attribute VB_Creatable = False
  35. Attribute VB_PredeclaredId = True
  36. Attribute VB_Exposed = False
  37. '************************************************************
  38. ' Odesa Exe joiner
  39. ' version 1.0
  40. ' Author: Alper ESKIKILIC
  41. '
  42. '
  43. ' web  : www.odesayazilim.com
  44. ' email: odesayazilim@gmail.com
  45. ' Blog : odesateknikservis.blogspot.com
  46. '************************************************************
  47.  
  48.  
  49. Private Sub ChangeFilename_Click()
  50. BinderMainForm.BinderList.SelectedItem.SubItems(1) = NewFileName.Text
  51. Unload Me
  52. End Sub
  53.