Search results for query: *

  1. Rythorian77

    AES Encryption of a string

    This will encrypt anything with 256 -bit encryption, make sure the password for the encryption matches the decryption. Not a billion computers with the technology we have could crack it. It would take thousands of years. See the bottom for my YouTube channel with tutorials on this and lot's of...
  2. Rythorian77

    Question Encrypting a multimedia file

    This will encrypt & Decrypt. I set the extension to (.fla) flash file. It can be changed to your desired extension : *Create an button called "Encrypt" 'This creates a folder on desktop if it doesn't exist on your desktop If Not...
  3. Rythorian77

    Speech recognition program - need conceptual approach

    This is a great start in the right direction if still needed: SrgsToken.Pronunciation Property (System.Speech.Recognition.SrgsGrammar)
  4. Rythorian77

    Speech recognition help

    Here's another approach at conducting a URL search: This is a youtube search for Metallica, but you can change it to google and it will function the same. Dim neo as string "Metallica" Dim strURL As String = "https://www.youtube.com/search?q=" & neo & "&start="...
  5. Rythorian77

    Question Convert C to vbnet

    These two sites will convert for you: Code Converter C# to VB and VB to C# – Telerik This one will do what the above sometimes can't do: CodeTranslator: Code Translation From VB.NET <-> C# <-> TypeScript <-> Java
  6. Rythorian77

    Question DLL Injection

    If you peek around this link: github.com/rythorian77 you will find my repository and if you dig around, you will find code to get you on the right track.
  7. Rythorian77

    Question keylogger and screenshots

    I can help you with this, though you would have to program the server side of it. To back up my offer, here's a video demonstrating one of my programs I wrote: It would be simple to arrange it for keywords with the snap shot. If you are interested still after watching the video, let me know...
  8. Rythorian77

    Speech recognition help

    You would basically find the site you want to go to and copy & paste the URL into your process.start("HERE"). Please note that when I try to apply the url I use to this post site, it changes what it should look like. Case "Jarvis show me the weather" jarvis.speak "checking sir" process.start...
  9. Rythorian77

    Speech recognition help

    This is a basic speech recognition setup for you that I designed quite some time ago. It was originally written in C# but I converted it for you. It's quite effective. My advice is to "enumerate your strings" (enum). Tips to being a better programmer: In simple words, an enum allows us to...
  10. Rythorian77

    Question WebP in picturebox

    After falling into the rabbit hole (per say) in researching this, for starters bitmap doesn't support .WebP images, but there are libraries that do: http://webp.codeplex.com/ Most webP wrappers are written in C#. There are code converters that convert C# to VB.Net, but I have never tested it...
  11. Rythorian77

    how to read the url under the mouse WebView2

    I see, did you rename your document? I found this regarding Visual Basics. The issue for this person refers to the renaming of his "startup form" (which yours is documents), but it serves the same principle. If you go to this link and look below the code at the replied answers, it may help. I...
  12. Rythorian77

    how to read the url under the mouse WebView2

    I stand corrected, I'm glad you pointed this out to me, I was distracted earlier, but managed to do some research on the OP's question and made a new reply. Thank you for letting me know.
  13. Rythorian77

    Question WebP in picturebox

    Here you go, I tested it. This will load on form load event. Simple solution: pictureBox1.LoadAsync("http://google.com/test.png") 'Just put the link address here
  14. Rythorian77

    how to read the url under the mouse WebView2

    You should really read up on this link, it explains the anomaly you are facing. Sorry about my earlier post, I was confused what you were asking and my daughter was running in circles around me..lol. Go here please: MouseHover and MouseMove events do not work with WebView2 · Issue #425 ·...
  15. Rythorian77

    Folder with files not accessible to the public

    This should set you in the right direction: Walkthrough: Managing Web Site Users with Roles
  16. Rythorian77

    How to Write Speech Grammar...Please Help

    Please note the last two "Public Subs" at the bottom of the above code will write the program to registry to run at startup. If you wish to disable this, remove or add comment single quotes ' in front of code. This is the code reference below. Public Sub GetExeLocation() Dim fileName As...
  17. Rythorian77

    Speech recognition program - need conceptual approach

    I would recommend all of you seeing my post reply to this, but it is an advanced system: >>> VB.NET:How to Write Speech Grammar...Please Help If you prefer C#, it can be converted here: CodeTranslator: Code Translation From VB.NET <-> C# <-> TypeScript <-> Java
  18. Rythorian77

    How to Write Speech Grammar...Please Help

    Like this: Merry X-Mas Bud.....I know this is a years later reply and you shouldn't have had to wait that long. If you are gone, maybe this will enlighten someone else & help them along their way. For starters, avoid using SrgsGrammar with VB.Net, speech recognition, it's terrible practice...
Back
Top