Search results for query: *

  • Users: zackmark29
  • Content: Threads
  • Order by date
  1. Z

    Resolved AES Decyption

    Could someone help me. I found this code from somewhere but I don't know how I can use this in my input files I want to have the output file I really don't know much how to use function. Class Decrypter Public Shared Function AES128Decrypt(ByVal filePath As String, ByVal keyByte As...
  2. Z

    Answered Progressbar only 51%

    Could someone help me fix this codes? It's only getting 51% result when the process is done Dim counter As Double = 1 Dim outputFolder As String = txtFileOutput.Text + "\" + txtFileName.Text + ".ts" Dim encryptionKey As Byte() = File.ReadAllBytes(txtKeyFile.Text) Dim...
  3. Z

    Resolved Merging multiple files into one using filestream

    Hey guys could someone help me fix this codes? I'm getting a little problem. The output isn't merging the input files Private Sub CopyMyFiles() Dim inputFolder As String = txtSource.Text Dim outputFolder As String = txtOutputFolder.Text + "\" + txtOuputFilename.Text + ".ts"...
  4. Z

    Answered RegEx from html source

    Can anyone help me what is the right RegEx for this? I want to get the highlighted user-agent inside the textarea tag <textarea name="custom-ua-string" id="custom-ua-string" autofocus class="input">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko)...
  5. Z

    Answered RegEx Improve

    Can anyone tell me the other regex for this strings. 005 - TitleOfTheSeries - Feb 19, 2016 I tried my regex and it worked but maybe there's much simple than this (\d+\s-\s\w.\w.\w.\w\w+\s-\s?\s\w+\s\d+,\s\d+)
  6. Z

    Resolved Textbox Multiple Lines to Listview

    Hi I'm trying to adding multiple lines from textbox But I can't fix this little error Dim ID = txtID.Lines Dim Title = txtTitle.Lines Dim Date2 = txtDate.Lines Dim url = txtOutput.Lines Dim items As New List(Of ListViewItem) For I = 0 To...
  7. Z

    Sync progressbar with cmd output

    Hi everyone I just wanna put new feature in my personal tool Can you give me idea how I can sync progressbar to cmd output while still downloading This is the code I'm using for cmd output Private Sub CMDOutput(StartFileName As String, StartFileArg As String) Dim process As...
  8. Z

    CMD output to form

    Can anybody give codes to run cmd output inside the form?
  9. Z

    Patching bytes

    Hi everyone. I would like to ask how to patch multiple bytes? I have source code here It's working actually but my problem is, when I try to patch multiple bytes nothing is happening. Like in the given code, When I try to split and patch this first pattern of bytes, Nothing is happening...
Back
Top