feat: Add placeholder Convert-Files function to SharePointFunctions.ps1
This commit is contained in:
parent
f1e3a09cc0
commit
fe308bc16f
@ -143,6 +143,7 @@ function Get-FolderBrowser {
|
||||
$form.FormBorderStyle = 'FixedDialog'
|
||||
$form.StartPosition = 'CenterScreen'
|
||||
$form.Add_Shown({$Form.Activate()})
|
||||
|
||||
# Populate listbox
|
||||
foreach ($folder in $folderObjects) {
|
||||
$listBox.Items.Add($folder.Name) | Out-Null
|
||||
@ -389,3 +390,7 @@ function Get-XlsFilesCurrentFolder {
|
||||
|
||||
return $allFiles
|
||||
}
|
||||
|
||||
function Convert-Files {
|
||||
$script:txtStatus.Text += "Convert-Files function called (placeholder).`n"
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user