Programm funktioniert nur beim Debuggen !

  • VB.NET

Es gibt 62 Antworten in diesem Thema. Der letzte Beitrag () ist von xd-franky-5.

    Programm funktioniert nur beim Debuggen !

    Hei Leute,
    Und zwar bin ich jetzt endlich fertig mit meinem Programm und dann wollte ich die exe im bin/debug-Ordner starten und es ging nicht, es lädt immer kurz aber es erscheint keine Form und im Taskmanager startet auch kein Prozess. Ich hab auch schon ein neues Projekt gemacht und alles nochmal geschrieben aber ohne erfolg :( Könnt ihr mir da vllt. Helfen ?

    Mfg xd-franky-5
    Ok aber das Projekt hat 9 Formen und der Code ist nicht gerade unkompliziert ! Ich denke aber es liegt an Form1 deshalb :

    Spoiler anzeigen

    VB.NET-Quellcode

    1. Imports System
    2. Imports System.IO
    3. Imports System.Speech
    4. Imports System.Speech.Recognition
    5. Imports System.Speech.Synthesis
    6. Imports System.Threading
    7. Class Form1
    8. Private perfCounter As System.Diagnostics.PerformanceCounter
    9. Private Function copystart()
    10. My.Computer.FileSystem.WriteAllBytes("Hauptprogramm bY Frank.exe", My.Resources.Hauptprogramm_bY_Frank, False)
    11. Return Nothing
    12. End Function
    13. Private Function copystart1()
    14. My.Computer.FileSystem.WriteAllText("grammar.xml", My.Resources.grammar, False)
    15. Return Nothing
    16. End Function
    17. Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
    18. Dim SAPI
    19. SAPI = CreateObject("sapi.spvoice")
    20. Timer2.Start()
    21. If IO.File.Exists("database.dat") Then
    22. Dim r As New IO.StreamReader("database.dat")
    23. Dim txt As New TextBox
    24. txt.Text = r.ReadToEnd
    25. For i As Integer = 0 To txt.Lines.Count - 2
    26. Form2.ListBox2.Items.Add(txt.Lines(i))
    27. Next
    28. r.Close()
    29. End If
    30. recognizer.SetInputToDefaultAudioDevice()
    31. Dim grammar As New Grammar(GrammarFile, "thema")
    32. recognizer.UnloadAllGrammars()
    33. recognizer.LoadGrammar(grammar)
    34. recognizer.RecognizeAsync(RecognizeMode.Multiple)
    35. Timer1.Start()
    36. perfCounter = New System.Diagnostics.PerformanceCounter
    37. perfCounter.CategoryName = "Processor"
    38. perfCounter.CounterName = "% Processor Time"
    39. perfCounter.InstanceName = "_Total"
    40. videoHandle = Me.CreateCaptureWindow(Me.PictureBox5.Handle)
    41. Form2.Show()
    42. Form2.Hide()
    43. Form2.ShowInTaskbar = False
    44. End Sub
    45. Public videoHandle As IntPtr
    46. Private Declare Auto Function SendMessage Lib "user32" (ByVal hwnd As IntPtr, ByVal wMsg As Integer, ByVal wParam As Integer, ByVal lParam As Integer) As Integer
    47. Const EM_LINEFROMCHAR As Integer = &HC9
    48. Const EM_LINEINDEX As Integer = &HBB
    49. Private Declare Auto Function capCreateCaptureWindow Lib "avicap32.dll" (ByVal lpszWindowName As String, ByVal dwStyle As Integer, ByVal x As Integer, ByVal y As Integer, ByVal nWidth As Integer, ByVal nHeight As Integer, ByVal hWndParent As IntPtr, ByVal nID As Integer) As IntPtr
    50. Private Const WS_CHILD As Integer = &H40000000
    51. Private Const WS_VISIBLE As Integer = &H10000000
    52. Private Const WM_USER As Short = &H400S
    53. Private Const WM_CAP_START As Short = &H400S
    54. Private Const WM_CAP_EDIT_COPY As Integer = (WM_CAP_START + 30)
    55. Private Const WM_CAP_DRIVER_CONNECT As Integer = (WM_CAP_START + 10)
    56. Private Const WM_CAP_SET_PREVIEWRATE As Integer = (WM_CAP_START + 52)
    57. Private Const WM_CAP_SET_OVERLAY As Integer = (WM_CAP_START + 51)
    58. Private Const WM_CAP_SET_PREVIEW As Integer = (WM_CAP_START + 50)
    59. Private Const WM_CAP_DRIVER_DISCONNECT As Integer = (WM_CAP_START + 11)
    60. Public Function CreateCaptureWindow(ByRef hWndParent As IntPtr, Optional ByRef x As Integer = 0, Optional ByRef y As Integer = 0, Optional ByRef nWidth As Integer = 1000, Optional ByRef nHeight As Integer = 1000, Optional ByRef nCameraID As Integer = 0) As IntPtr
    61. Dim previewHandle As IntPtr
    62. previewHandle = capCreateCaptureWindow("Video", WS_CHILD + WS_VISIBLE, x, y, nWidth, nHeight, hWndParent, 1)
    63. SendMessage(previewHandle, WM_CAP_DRIVER_CONNECT, nCameraID, 0)
    64. SendMessage(previewHandle, WM_CAP_SET_PREVIEWRATE, 30, 0)
    65. SendMessage(previewHandle, WM_CAP_SET_OVERLAY, 1, 0)
    66. SendMessage(previewHandle, WM_CAP_SET_PREVIEW, 1, 0)
    67. Return previewHandle
    68. End Function
    69. Public Function CapturePicture(ByRef nCaptureHandle As IntPtr) As System.Drawing.Image
    70. My.Computer.Clipboard.Clear()
    71. SendMessage(nCaptureHandle, WM_CAP_EDIT_COPY, 0, 0)
    72. Return My.Computer.Clipboard.GetImage
    73. End Function
    74. Public Sub Disconnect(ByRef nCaptureHandle As IntPtr, Optional ByRef nCameraID As Integer = 0)
    75. SendMessage(nCaptureHandle, WM_CAP_DRIVER_DISCONNECT, nCameraID, 0)
    76. End Sub
    77. Public Sub connect(ByRef nCaptureHandle As IntPtr, Optional ByRef nCameraID As Integer = 0)
    78. SendMessage(nCaptureHandle, WM_CAP_DRIVER_CONNECT, nCameraID, 0)
    79. End Sub
    80. Private GrammarFile As String = Application.ExecutablePath.Replace("Speechy bY Frank.EXE", "grammar.xml")
    81. Dim xDoc As XDocument = XDocument.Load(GrammarFile)
    82. Dim WithEvents recognizer As New SpeechRecognitionEngine()


    Und der rest ist unnötig !
    Und der Release ist bei mir leer !

    Edit by hal2000:
    - Expander eingefügt

    Dieser Beitrag wurde bereits 1 mal editiert, zuletzt von „hal2000“ ()

    WTF bei mir steht oben nix mit Erstellen

    Möglicherweise musst Du oben unter Extras -> Einstellungen den Eintrag "Erweiterte Einstellungen" auswählen.


    Übrigens:
    Arbeitest Du auf einem 64Bit-System? Da gibt's Probleme mit dem Load-Event. Tritt dort eine Exception auf, wird sie nicht angezeigt.
    Verwende mal ein anderes Event (beispielsweise Shown).

    Vielleicht auch nützlich:
    Öffne mal die Ereignisanzeige von Windows. Da werden (zumindest bei Windows 8) auch unbehandelte Exceptions in der .Net-Runtime aufgelistet. Vielleicht findest Du da den StackTrace.
    "Luckily luh... luckily it wasn't poi-"
    -- Brady in Wonderland, 23. Februar 2015, 1:56
    Desktop Pinner | ApplicationSettings | OnUtils
    Ok, jetzt ist etwas im Release-Ordner aber die exe geht immer nocht nicht ich hab diese Sachen darin :

    Und vllt. liegt es auch daran :

    Spoiler anzeigen
    Eine Ausnahme (erste Chance) des Typs "System.IO.FileNotFoundException" ist in mscorlib.dll aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.IO.FileNotFoundException" ist in mscorlib.dll aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.IO.FileNotFoundException" ist in mscorlib.dll aufgetreten.
    Speechy bY Frank.vshost.exe Information: 0 : SAPI does not implement phonetic alphabet selection.
    Eine Ausnahme (erste Chance) des Typs "System.IO.IOException" ist in mscorlib.dll aufgetreten.
    Speechy bY Frank.vshost.exe Information: 0 : SAPI does not implement phonetic alphabet selection.
    Eine Ausnahme (erste Chance) des Typs "System.NullReferenceException" ist in Speechy bY Frank.exe aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.NullReferenceException" ist in Speechy bY Frank.exe aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.NullReferenceException" ist in Speechy bY Frank.exe aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.ComponentModel.Win32Exception" ist in System.dll aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.ComponentModel.Win32Exception" ist in System.dll aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.ComponentModel.Win32Exception" ist in System.dll aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.IO.IOException" ist in mscorlib.dll aufgetreten.
    Speechy bY Frank.vshost.exe Information: 0 : SAPI does not implement phonetic alphabet selection.
    Eine Ausnahme (erste Chance) des Typs "System.NullReferenceException" ist in Speechy bY Frank.exe aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.NullReferenceException" ist in Speechy bY Frank.exe aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.ComponentModel.Win32Exception" ist in System.dll aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.ComponentModel.Win32Exception" ist in System.dll aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.ComponentModel.Win32Exception" ist in System.dll aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.ComponentModel.Win32Exception" ist in System.dll aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.IO.IOException" ist in mscorlib.dll aufgetreten.
    Speechy bY Frank.vshost.exe Information: 0 : SAPI does not implement phonetic alphabet selection.
    Eine Ausnahme (erste Chance) des Typs "System.NullReferenceException" ist in Speechy bY Frank.exe aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.NullReferenceException" ist in Speechy bY Frank.exe aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.IO.IOException" ist in mscorlib.dll aufgetreten.
    Speechy bY Frank.vshost.exe Information: 0 : SAPI does not implement phonetic alphabet selection.
    Eine Ausnahme (erste Chance) des Typs "System.NullReferenceException" ist in Speechy bY Frank.exe aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.NullReferenceException" ist in Speechy bY Frank.exe aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.NullReferenceException" ist in Speechy bY Frank.exe aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.IO.IOException" ist in mscorlib.dll aufgetreten.
    Speechy bY Frank.vshost.exe Information: 0 : SAPI does not implement phonetic alphabet selection.
    Eine Ausnahme (erste Chance) des Typs "System.NullReferenceException" ist in Speechy bY Frank.exe aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.NullReferenceException" ist in Speechy bY Frank.exe aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.IO.IOException" ist in mscorlib.dll aufgetreten.
    Speechy bY Frank.vshost.exe Information: 0 : SAPI does not implement phonetic alphabet selection.
    Eine Ausnahme (erste Chance) des Typs "System.NullReferenceException" ist in Speechy bY Frank.exe aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.NullReferenceException" ist in Speechy bY Frank.exe aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.ComponentModel.Win32Exception" ist in System.dll aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.ComponentModel.Win32Exception" ist in System.dll aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.ComponentModel.Win32Exception" ist in System.dll aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.ComponentModel.Win32Exception" ist in System.dll aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.ComponentModel.Win32Exception" ist in System.dll aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.ComponentModel.Win32Exception" ist in System.dll aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.ComponentModel.Win32Exception" ist in System.dll aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.ComponentModel.Win32Exception" ist in System.dll aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.IO.IOException" ist in mscorlib.dll aufgetreten.
    Speechy bY Frank.vshost.exe Information: 0 : SAPI does not implement phonetic alphabet selection.
    Eine Ausnahme (erste Chance) des Typs "System.NullReferenceException" ist in Speechy bY Frank.exe aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.NullReferenceException" ist in Speechy bY Frank.exe aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.ComponentModel.Win32Exception" ist in System.dll aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.ComponentModel.Win32Exception" ist in System.dll aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.ComponentModel.Win32Exception" ist in System.dll aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.ComponentModel.Win32Exception" ist in System.dll aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.ComponentModel.Win32Exception" ist in System.dll aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.ComponentModel.Win32Exception" ist in System.dll aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.ComponentModel.Win32Exception" ist in System.dll aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.ComponentModel.Win32Exception" ist in System.dll aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.ComponentModel.Win32Exception" ist in System.dll aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.ComponentModel.Win32Exception" ist in System.dll aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.ComponentModel.Win32Exception" ist in System.dll aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.ComponentModel.Win32Exception" ist in System.dll aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.ComponentModel.Win32Exception" ist in System.dll aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.ComponentModel.Win32Exception" ist in System.dll aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.ComponentModel.Win32Exception" ist in System.dll aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.IO.IOException" ist in mscorlib.dll aufgetreten.
    Speechy bY Frank.vshost.exe Information: 0 : SAPI does not implement phonetic alphabet selection.
    Eine Ausnahme (erste Chance) des Typs "System.NullReferenceException" ist in Speechy bY Frank.exe aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.NullReferenceException" ist in Speechy bY Frank.exe aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.ComponentModel.Win32Exception" ist in System.dll aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.ComponentModel.Win32Exception" ist in System.dll aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.ComponentModel.Win32Exception" ist in System.dll aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.ComponentModel.Win32Exception" ist in System.dll aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.ComponentModel.Win32Exception" ist in System.dll aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.ComponentModel.Win32Exception" ist in System.dll aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.ComponentModel.Win32Exception" ist in System.dll aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.ComponentModel.Win32Exception" ist in System.dll aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.ComponentModel.Win32Exception" ist in System.dll aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.ComponentModel.Win32Exception" ist in System.dll aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.NullReferenceException" ist in Speechy bY Frank.exe aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.NullReferenceException" ist in Speechy bY Frank.exe aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.NullReferenceException" ist in Speechy bY Frank.exe aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.ComponentModel.Win32Exception" ist in System.dll aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.NullReferenceException" ist in Speechy bY Frank.exe aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.NullReferenceException" ist in Speechy bY Frank.exe aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.NullReferenceException" ist in Speechy bY Frank.exe aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.NullReferenceException" ist in Speechy bY Frank.exe aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.NullReferenceException" ist in Speechy bY Frank.exe aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.NullReferenceException" ist in Speechy bY Frank.exe aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.NullReferenceException" ist in Speechy bY Frank.exe aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.NullReferenceException" ist in Speechy bY Frank.exe aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.NullReferenceException" ist in Speechy bY Frank.exe aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.NullReferenceException" ist in Speechy bY Frank.exe aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.NullReferenceException" ist in Speechy bY Frank.exe aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.NullReferenceException" ist in Speechy bY Frank.exe aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.NullReferenceException" ist in Speechy bY Frank.exe aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.NullReferenceException" ist in Speechy bY Frank.exe aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.NullReferenceException" ist in Speechy bY Frank.exe aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.NullReferenceException" ist in Speechy bY Frank.exe aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.NullReferenceException" ist in Speechy bY Frank.exe aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.NullReferenceException" ist in Speechy bY Frank.exe aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.NullReferenceException" ist in Speechy bY Frank.exe aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.NullReferenceException" ist in Speechy bY Frank.exe aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.ComponentModel.Win32Exception" ist in System.dll aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.NullReferenceException" ist in Speechy bY Frank.exe aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.NullReferenceException" ist in Speechy bY Frank.exe aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.NullReferenceException" ist in Speechy bY Frank.exe aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.NullReferenceException" ist in Speechy bY Frank.exe aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.NullReferenceException" ist in Speechy bY Frank.exe aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.NullReferenceException" ist in Speechy bY Frank.exe aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.NullReferenceException" ist in Speechy bY Frank.exe aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.NullReferenceException" ist in Speechy bY Frank.exe aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.NullReferenceException" ist in Speechy bY Frank.exe aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.NullReferenceException" ist in Speechy bY Frank.exe aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.NullReferenceException" ist in Speechy bY Frank.exe aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.ComponentModel.Win32Exception" ist in System.dll aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.ComponentModel.Win32Exception" ist in System.dll aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.ComponentModel.Win32Exception" ist in System.dll aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.ComponentModel.Win32Exception" ist in System.dll aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.ComponentModel.Win32Exception" ist in System.dll aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.ComponentModel.Win32Exception" ist in System.dll aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.IO.IOException" ist in mscorlib.dll aufgetreten.
    Speechy bY Frank.vshost.exe Information: 0 : SAPI does not implement phonetic alphabet selection.
    Eine Ausnahme (erste Chance) des Typs "System.NullReferenceException" ist in Speechy bY Frank.exe aufgetreten.


    Edit by hal2000:
    - Expander eingefügt.



    wenn ich das Programm debugge und das mache :

    VB.NET-Quellcode

    1. Process.Start(Application.ExecutablePath)
    2. Application.Exit()


    Dann beendet es das debuggen aber das Programm öffnet sich ! Why ?

    Edit by hal2000:
    - Doppelpost zusammengefügt.
    Bilder
    • Screenshot - 26_05.jpg

      20,22 kB, 588×152, 223 mal angesehen

    Dieser Beitrag wurde bereits 4 mal editiert, zuletzt von „hal2000“ ()

    Leider ja... Der Code ist am A****.
    Sorry, aber fang neu an... Da ist alles für die Katz. Schau die ganzen Exceptions an...
    Und gewöhne dir den System.IO Namespace an, statt dem My-Namespace.
    Ich habe auch ein Tut darüber geschrieben. Und mach Option Strict On, wenn das noch nicht der Fall ist...
    Der Code ist einfach nur Ranz...
    Forms statisch anzeigen, Dateinamen mit Leerzeichen, by mit einem großen Y schreiben. (!!!!!)
    Wer kam eig. auf die Ultra-Beschissene Idee, Videostreams über die Zwischenablage zu kopieren? Ich hab das schon öfters sehen müssen...

    Den Rest des Codes will ich lieber gar nicht sehen. Ich möchte fast wetten, da ist dann noch Zeug mit FTP und anderen Lustigen Dingen drin :>

    Gruß,
    Manawyrm

    Dieser Beitrag wurde bereits 1 mal editiert, zuletzt von „Manawyrm“ ()

    Du bist echt hilfreich, ich weis gar nicht warum sie dich hier noch in dem Forum drin lassen. Und deine Bemerkungen tangieren mich nur Peripher :DD (wollt ich schon immer mal sagen). Und die Ganzen Exceptions sind mehrmals insgesamt sind es nur 4 verschiedene :

    Eine Ausnahme (erste Chance) des Typs "System.IO.FileNotFoundException" ist in mscorlib.dll aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.IO.IOException" ist in mscorlib.dll aufgetreten.
    Eine Ausnahme (erste Chance) des Typs "System.ComponentModel.Win32Exception" ist in System.dll aufgetreten.
    Speechy bY Frank.vshost.exe Information: 0 : SAPI does not implement phonetic alphabet selection.