CdromRemoveTo.frm
上传用户:dohkov
上传日期:2007-06-18
资源大小:35k
文件大小:3k
源码类别:

家庭/个人应用

开发平台:

Visual Basic

  1. VERSION 5.00
  2. Begin VB.Form CdromRemoveTo 
  3.    BorderStyle     =   1  'Fixed Single
  4.    Caption         =   "移至"
  5.    ClientHeight    =   1200
  6.    ClientLeft      =   45
  7.    ClientTop       =   330
  8.    ClientWidth     =   4065
  9.    ControlBox      =   0   'False
  10.    Icon            =   "CdromRemoveTo.frx":0000
  11.    LinkTopic       =   "Form3"
  12.    MaxButton       =   0   'False
  13.    MinButton       =   0   'False
  14.    ScaleHeight     =   1200
  15.    ScaleWidth      =   4065
  16.    StartUpPosition =   3  'Windows Default
  17.    Begin VB.CommandButton Command2 
  18.       Cancel          =   -1  'True
  19.       Caption         =   "取消"
  20.       Height          =   375
  21.       Left            =   2760
  22.       TabIndex        =   2
  23.       Top             =   600
  24.       Width           =   1095
  25.    End
  26.    Begin VB.CommandButton Command1 
  27.       Caption         =   "确定"
  28.       Default         =   -1  'True
  29.       Height          =   375
  30.       Left            =   2760
  31.       TabIndex        =   1
  32.       Top             =   120
  33.       Width           =   1095
  34.    End
  35.    Begin VB.ComboBox Combo1 
  36.       Height          =   300
  37.       Left            =   240
  38.       Style           =   2  'Dropdown List
  39.       TabIndex        =   0
  40.       Top             =   600
  41.       Width           =   2295
  42.    End
  43.    Begin VB.Label Label1 
  44.       AutoSize        =   -1  'True
  45.       Caption         =   "请选择要移到的类别:"
  46.       Height          =   180
  47.       Left            =   240
  48.       TabIndex        =   3
  49.       Top             =   240
  50.       Width           =   2280
  51.       WordWrap        =   -1  'True
  52.    End
  53. End
  54. Attribute VB_Name = "CdromRemoveTo"
  55. Attribute VB_GlobalNameSpace = False
  56. Attribute VB_Creatable = False
  57. Attribute VB_PredeclaredId = True
  58. Attribute VB_Exposed = False
  59. Private Sub Command1_Click()
  60. For i = 2 To MainForm.TreeView1.Nodes.Count
  61.     If MainForm.TreeView1.SelectedItem.Key = MainForm.TreeView1.Nodes.Item(i).Key Then
  62.        temptext = MainForm.TreeView1.Nodes(i).Text
  63.        tempkey = MainForm.TreeView1.Nodes(i).Key
  64.        Pos = InStr(1, tempkey, "@@@@@***##")
  65.        tempkey = "子光盘光盘库" + Combo1.List(Combo1.ListIndex) + Mid(tempkey, Pos)
  66.        MainForm.TreeView1.Nodes.Remove i
  67.        Set nox = MainForm.TreeView1.Nodes.Add("光盘库" + Combo1.List(Combo1.ListIndex), tvwChild, tempkey, temptext, 1)
  68.        MainForm.TreeView1.SelectedItem = nox
  69.        Unload Me
  70.     End If
  71. Next
  72. End Sub
  73. Private Sub Command2_Click()
  74. Unload Me
  75. End Sub
  76. Private Sub Form_Load()
  77. Label1.Caption = "  请选择光盘 " + Chr(34) + MainForm.TreeView1.SelectedItem.Text + Chr(34) + " 要移至的位置"
  78. CencerForm Me
  79. For i = 2 To MainForm.TreeView1.Nodes.Count
  80.     If Left(MainForm.TreeView1.Nodes.Item(i).Key, 3) = "光盘库" Then
  81.           Combo1.AddItem MainForm.TreeView1.Nodes.Item(i).Text
  82.     End If
  83. Next
  84. Combo1.ListIndex = 0
  85. End Sub