اذهب الي المحتوي
أوفيسنا
بحث مخصص من جوجل فى أوفيسنا
Custom Search

زر امر في اليوزر فورم لانشاء مجلد جديد


الردود الموصى بها

مثلا

Option Explicit

Private Sub CommandButton1_Click()
    Call MakeFolder("C:\", "MyNewFolder")
End Sub


Private Function MakeFolder(ByVal Root As String, ByVal NewFolderName As String) As String
    Dim oShell As Object
    
    Set oShell = CreateObject("Shell.Application").BrowseForFolder(0, "Please choose a folder and click Ok.", 0, Replace(Replace(Replace(Root, ":", ""), "\", "") & ":\", " ", ""))
    If Not oShell Is Nothing Then
        MkDir oShell.Self.Path & "\" & Replace(NewFolderName, "\", "")
    End If
End Function

 

رابط هذا التعليق
شارك

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

زائر
اضف رد علي هذا الموضوع....

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • تصفح هذا الموضوع مؤخراً   0 اعضاء متواجدين الان

    • لايوجد اعضاء مسجلون يتصفحون هذه الصفحه
×
×
  • اضف...

Important Information