⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 frmdepart.frm

📁 gestion commerciale sous vb
💻 FRM
字号:
VERSION 5.00
Object = "{F9043C88-F6F2-101A-A3C9-08002B2F49FB}#1.2#0"; "COMDLG32.OCX"
Begin VB.Form frmDepart 
   Caption         =   "Chemin d'acces"
   ClientHeight    =   3705
   ClientLeft      =   60
   ClientTop       =   345
   ClientWidth     =   7155
   Icon            =   "frmDepart.frx":0000
   LinkTopic       =   "Form1"
   ScaleHeight     =   3705
   ScaleWidth      =   7155
   StartUpPosition =   3  'Windows Default
   Begin VB.CommandButton cmdGo 
      Caption         =   "Go"
      Height          =   375
      Left            =   3240
      TabIndex        =   2
      Top             =   3240
      Width           =   615
   End
   Begin VB.TextBox txtPath 
      Height          =   315
      Left            =   840
      TabIndex        =   1
      Top             =   2760
      Width           =   5295
   End
   Begin VB.CommandButton cmdRecherche 
      Caption         =   "..."
      BeginProperty Font 
         Name            =   "MS Sans Serif"
         Size            =   13.5
         Charset         =   0
         Weight          =   400
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      Height          =   375
      Left            =   6240
      TabIndex        =   0
      Top             =   2760
      Width           =   375
   End
   Begin MSComDlg.CommonDialog cdRecherchebdr 
      Left            =   120
      Top             =   2760
      _ExtentX        =   847
      _ExtentY        =   847
      _Version        =   393216
   End
   Begin VB.Label Label1 
      Alignment       =   2  'Center
      BackStyle       =   0  'Transparent
      Caption         =   "Recherche de la base de donn閑s gestion.mdb :"
      BeginProperty Font 
         Name            =   "MS Sans Serif"
         Size            =   13.5
         Charset         =   0
         Weight          =   400
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      Height          =   855
      Left            =   1080
      TabIndex        =   3
      Top             =   120
      Width           =   5175
   End
   Begin VB.Image Image1 
      Height          =   3735
      Left            =   0
      Picture         =   "frmDepart.frx":0CCA
      Stretch         =   -1  'True
      Top             =   0
      Width           =   7215
   End
End
Attribute VB_Name = "frmDepart"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Dim WH As Object
Public fso As New FileSystemObject
Dim strName As String
Dim strm As TextStream

Private Sub Form_Load()
    On Error GoTo suib
'********Methode enregistrement du chemin de la base dans la base de registre*************
        Set WH = CreateObject("Wscript.Shell")
        path = WH.regRead("HKEY_CURRENT_USER\Software\GestionCommerciale\path")
'*******Methode enregistrement du chemin de la base dans un fichier path.ini**************
        'strName = fso.BuildPath(App.path, "path.ini")
        'Set strm = fso.OpenTextFile(strName)
        'path = strm.ReadLine
        'strm.Close
'*****************************************************************************************
        cmdGo_Click
suib: Exit Sub
End Sub


Private Sub cmdRecherche_Click()
    'D閒init la propri閠

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -