neu
This commit is contained in:
@@ -191,7 +191,11 @@ Public Class usrcntlPDFScanList
|
||||
|
||||
Private Sub MyListBox1_DoubleClick(sender As Object, e As EventArgs) Handles MyListBox1.DoubleClick
|
||||
Try
|
||||
DS.OPEN(DirectCast(MyListBox1.SelectedItem, VERAG_PROG_ALLGEMEIN.MyListItem).Value)
|
||||
|
||||
DS.OPEN(DirectCast(MyListBox1.SelectedItem, VERAG_PROG_ALLGEMEIN.MyListItem).Value,, True)
|
||||
|
||||
' VERAG_PROG_ALLGEMEIN.DATENVERVER_OPTIONS.copyToTmp_KeepFilename(ii.coll_pfad, ii.coll_bezeichnung)
|
||||
|
||||
Catch ex As Exception
|
||||
MsgBox("Fehler beim Öffnen!")
|
||||
End Try
|
||||
@@ -245,6 +249,7 @@ Public Class usrcntlPDFScanList
|
||||
|
||||
Private Sub KopierenZwischenablageToolStripMenuItem_Click(sender As Object, e As EventArgs) Handles KopierenZwischenablageToolStripMenuItem.Click
|
||||
Try
|
||||
VERAG_PROG_ALLGEMEIN.DATENVERVER_OPTIONS.clearTMPPath("ClipBoard_TMP")
|
||||
Dim f(MyListBox1.SelectedItems.Count - 1) As String
|
||||
Dim cnt = 0
|
||||
If MyListBox1.SelectedItems.Count >= 1 Then
|
||||
@@ -254,7 +259,7 @@ Public Class usrcntlPDFScanList
|
||||
If ii.coll_id = item.Value Then
|
||||
'Dim f() As String = {ii.coll_pfad}
|
||||
If ii.coll_pfad <> "" Then
|
||||
f(cnt) = ii.coll_pfad
|
||||
f(cnt) = VERAG_PROG_ALLGEMEIN.DATENVERVER_OPTIONS.copyToTmp_KeepFilename(ii.coll_pfad, ii.coll_bezeichnung)
|
||||
cnt += 1
|
||||
'Exit For
|
||||
End If
|
||||
@@ -272,8 +277,10 @@ Public Class usrcntlPDFScanList
|
||||
End Try
|
||||
End Sub
|
||||
|
||||
|
||||
Private Sub AlsEmailSendenToolStripMenuItem_Click(sender As Object, e As EventArgs) Handles AlsEmailSendenToolStripMenuItem.Click
|
||||
Try
|
||||
VERAG_PROG_ALLGEMEIN.DATENVERVER_OPTIONS.clearTMPPath("ClipBoard_TMP")
|
||||
If MyListBox1.SelectedItems.Count >= 1 Then
|
||||
Try
|
||||
Dim outl As New Outlook.Application
|
||||
@@ -285,7 +292,7 @@ Public Class usrcntlPDFScanList
|
||||
For Each ii In DS.DATA_LIST.LIST
|
||||
If ii.coll_id = item.Value Then
|
||||
If ii.coll_pfad <> "" Then
|
||||
Mail.Attachments.Add(ii.coll_pfad, Microsoft.Office.Interop.Outlook.OlAttachmentType.olByValue)
|
||||
Mail.Attachments.Add(VERAG_PROG_ALLGEMEIN.DATENVERVER_OPTIONS.copyToTmp_KeepFilename(ii.coll_pfad, ii.coll_bezeichnung), Microsoft.Office.Interop.Outlook.OlAttachmentType.olByValue)
|
||||
End If
|
||||
End If
|
||||
Next
|
||||
@@ -301,6 +308,8 @@ Public Class usrcntlPDFScanList
|
||||
End Try
|
||||
End Sub
|
||||
|
||||
|
||||
|
||||
Private Sub Form1_DragEnter(ByVal sender As System.Object, ByVal e As System.Windows.Forms.DragEventArgs) Handles Me.DragEnter ', txt.DragEnter, Me.DragEnter, picPDF.DragEnter
|
||||
e.Effect = DragDropEffects.All
|
||||
End Sub
|
||||
|
||||
Reference in New Issue
Block a user