Thema Datum  Von Nutzer Rating
Antwort
Rot Automatisch abarbeiten
07.03.2020 13:55:35 Fugmann
Solved
07.03.2020 14:20:55 Gast35747
NotSolved
07.03.2020 14:39:39 Gast53767
NotSolved
07.03.2020 15:28:01 Fugmann
NotSolved
07.03.2020 18:50:29 Gast21779
NotSolved
07.03.2020 18:54:17 Gast96047
NotSolved
07.03.2020 20:06:09 Menzel Lothar
NotSolved
08.03.2020 00:04:31 Gast98114
NotSolved
08.03.2020 16:40:56 Gast92454
NotSolved
11.03.2020 18:22:02 Fugmann
NotSolved

Ansicht des Beitrags:
Von:
Fugmann
Datum:
07.03.2020 13:55:35
Views:
1044
Rating: Antwort:
 Nein
Thema:
Automatisch abarbeiten
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
Hallo
Wahrscheinlich sehe ich den Wald vor lauter Baeumen nicht.
Ich moechte eine Sub, welche mir in einem vorausgewählten Ordner alle Dateien nacheinander abarbeitet.
 
Private Sub AUTOWEITER()
 
Set Fs = CreateObject("Scripting.FileSystemObject")
Set Folder = Fs.GetFolder("c:\temp\Bilder")
 
For Each File In Folder.Files
 
  If File.Name Like "*.jpg" Then
   
  Bilddatei = Folder & File.Name
   
  Debug.Print Bilddatei
 
  End If
<span style="display: inline !important; float: none; background-color: rgb(255, 255, 255); color: rgb(34, 34, 34); font-family: Arial,Verdana,sans-serif; font-size: 12px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-spacing: 0px;">  </span>
<span style="display: inline !important; float: none; background-color: rgb(255, 255, 255); color: rgb(34, 34, 34); font-family: Arial,Verdana,sans-serif; font-size: 12px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-spacing: 0px;">'#########################################</span>
<span style="display: inline !important; float: none; background-color: rgb(255, 255, 255); color: rgb(34, 34, 34); font-family: Arial,Verdana,sans-serif; font-size: 12px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-spacing: 0px;">'>>> Nun habe ich die Informationen wo und mit welchen Namen die Datei existiert.</span>
<span style="display: inline !important; float: none; background-color: rgb(255, 255, 255); color: rgb(34, 34, 34); font-family: Arial,Verdana,sans-serif; font-size: 12px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-spacing: 0px;">'>>> Genau diese Datei moechte ich "aktivieren" um weiteren Informationen (Eingentschaften)</span>
<span style="display: inline !important; float: none; background-color: rgb(255, 255, 255); color: rgb(34, 34, 34); font-family: Arial,Verdana,sans-serif; font-size: 12px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-spacing: 0px;">'>>> in einer/mehrerer UserForm-TextBox zu schreiben und evtl. Kommentare zu hinterlegen.
'>>> Die UserForm ist bereits programmiert und mit einer Einzelauswahl per Explorer auch funktionstüchtig.</span>
<span style="display: inline !important; float: none; background-color: rgb(255, 255, 255); color: rgb(34, 34, 34); font-family: Arial,Verdana,sans-serif; font-size: 12px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-spacing: 0px;">'#########################################
</span> 
  Next
 
End Sub

Kann mir jemand einen kleinen Tipp hierzu geben?

Danke

Gruß

Fugmann


Ihre Antwort
  • Bitte beschreiben Sie Ihr Problem möglichst ausführlich. (Wichtige Info z.B.: Office Version, Betriebssystem, Wo genau kommen Sie nicht weiter)
  • Bitte helfen Sie ebenfalls wenn Ihnen geholfen werden konnte und markieren Sie Ihre Anfrage als erledigt (Klick auf Häckchen)
  • Bei Crossposting, entsprechende Links auf andere Forenbeiträge beifügen / nachtragen
  • Codeschnipsel am besten über den Code-Button im Text-Editor einfügen
  • Die Angabe der Emailadresse ist freiwillig und wird nur verwendet, um Sie bei Antworten auf Ihren Beitrag zu benachrichtigen
Thema: Name: Email:



  • Bitte beschreiben Sie Ihr Problem möglichst ausführlich. (Wichtige Info z.B.: Office Version, Betriebssystem, Wo genau kommen Sie nicht weiter)
  • Bitte helfen Sie ebenfalls wenn Ihnen geholfen werden konnte und markieren Sie Ihre Anfrage als erledigt (Klick auf Häckchen)
  • Bei Crossposting, entsprechende Links auf andere Forenbeiträge beifügen / nachtragen
  • Codeschnipsel am besten über den Code-Button im Text-Editor einfügen
  • Die Angabe der Emailadresse ist freiwillig und wird nur verwendet, um Sie bei Antworten auf Ihren Beitrag zu benachrichtigen

Thema Datum  Von Nutzer Rating
Antwort
Rot Automatisch abarbeiten
07.03.2020 13:55:35 Fugmann
Solved
07.03.2020 14:20:55 Gast35747
NotSolved
07.03.2020 14:39:39 Gast53767
NotSolved
07.03.2020 15:28:01 Fugmann
NotSolved
07.03.2020 18:50:29 Gast21779
NotSolved
07.03.2020 18:54:17 Gast96047
NotSolved
07.03.2020 20:06:09 Menzel Lothar
NotSolved
08.03.2020 00:04:31 Gast98114
NotSolved
08.03.2020 16:40:56 Gast92454
NotSolved
11.03.2020 18:22:02 Fugmann
NotSolved