Search results for query: *

  1. C

    Antivirus Scan When Opened?

    Thank You! :scatter: I will look into some tutorials about this.
  2. C

    Antivirus Scan When Opened?

    Hi so I am making an antivirus in vb.net and I wanted to get the context menu thing to scan with my AV, but now I have that part of the code but I don't know how to make my antivirus scan the file that was right clicked on. I would basically need to start a scanning module to the file that was...
  3. C

    Download Text File And Keep Strings?

    Thanks Ian for the code! But I realized that what said John was true my program still read the text file as if the lines were normal, Thanks! :o
  4. C

    Download Text File And Keep Strings?

    Hi im trying to download a text file which has multiple lines but this happens: Text file hi line1 hi line2 But when i download it looks like this hi line1hi line2 i tried using & vbcrlf but it didnt work here is my code: On Error Resume Next System.IO.File.Delete("viruslist.txt")...
  5. C

    starting Mpress process

    I was wrong all along it was supoosed to be like this: mpress.exe -s file.exe so now i fixed my code here it is and it works thanks for replying Shell("mpress.exe -s encrypted.exe") it has to be on the same directory.
  6. C

    starting Mpress process

    Hi tim trying this code: Process.Start(Application.StartupPath & "\mpress.exe", Application.StartupPath & "\encrypted.exe") in order to use mpress u have to execute a program with it physically u just drag it to mpress.exe but i want to do it in vb.net its not working please help me.
  7. C

    List All *.exe In %TEMP%

    I have this code so far: dim textbox1 as new textbox textbox1.text = system.io.path.gettemppath & "\*.exe" This works in scripts but its not working in vb.net, i googled but didnt find an answer can someone please help me?
  8. C

    Edit Resources In EXE

    So I have A Stub in my resources its called stub.exe I want to add code.txt to the stub.exe without corrupting it, how may I do this?
  9. C

    RC4 Encryption

    Thanks i now understand this better, but I still dont understand how I can create my own version of it, can you please give me an example.
  10. C

    RC4 Encryption

    Hi I started getting interested in encryption in VB.Net sohere is an RC4 function: [Lua] rc4 - Pastebin.com also how can I create my own RC4 function are there some rules I have to follow I know there is software to create it for you but I want to make my own, any help appreciated.
  11. C

    add text in between lines?

    can you please show me how this is done thanks, i tried but it only adds text in between characters: Dim length As Integer = code.Text.Length Dim character As Integer = 0 For character = length To 0 Step -1 code.Text = code.Text.Insert(character, "added...
  12. C

    add text in between lines?

    how can i add text to a textbox in this way between each string in a normal textbox? hi added text dhhdhd added text
  13. C

    Kill All Processes with same name

    Thanks it works and i also found another way its by executing taskkill and ex: taskkill /f /im vir* the * is for all procs with that name and similar ones :)
  14. C

    Kill All Processes with same name

    Ok so i have this md5 scanner antivirus ive been working on and i wanted to add a process killer but some viruses have persistent processe which reappear and its annoying! Is there any way in VB.Net to lets say kill all procs with serv* or haha etc. Thanks,
  15. C

    Question Unhandled Exception Error on Loading

    Well i guess he could just add that i didnt know, I have only been in vb.net for 6 months and i only knew vbscript before.
  16. C

    Question Unhandled Exception Error on Loading

    well i think it solves it in this case cause the error was that it didnt find its settings file, this would be solved on app exit he asid so i guess it works in this occasion but thanks i wont use it for other stuff.
  17. C

    Textbox in Msgbox?

    Hi I want to ask the user for some input at form load and I have been searching for a way to display a textbox in a mesaggebox, I know this is possible in vbscript but is it in VB.Net? I may just create a custom dialog though...
  18. C

    excluding X number of lines while building a string in a Loop

    use instring if instring textbox1.text "X" then X.Skip()
  19. C

    Question Unhandled Exception Error on Loading

    Sure im glad it worked, it basically tells the debuger to ignore errors and allows your application to continue running, another alternative to this is disabling JIT debugging which i also think is very annoying.
  20. C

    Question Unhandled Exception Error on Loading

    what about adding this: On Error Resume Next tell me what happens and ill look more into it :)
Back
Top