Search results for query: *

  • Users: Untamed
  • Content: Threads
  • Order by date
  1. U

    Question Need to speed up loading MP3 File Info into ListView

    Hello all. I am working on an advanced [at least I'd like to call it that] audio player. Currently, it supports .wmv and .mp3 It has the ability to recursively grab all .wmv and .mp3 files in any chosen folder, and add them to a playlist. When opening the playlist, my program adds all the...
  2. U

    Question Simple System.Text.RegularExpressions Request

    Hello all, after searching for around a half hour or so, I found that the regularexpression API could do what I need. Basically, I needed to only allow letters, numbers, and symbols in my textbox. The problem was, I could stick alt codes in there, even with a keycode case check. So, I found...
  3. U

    Question Saving and Playing Back mouse clicks?

    Hello. How would I go about saving a persons mouse click. Here is how I would like my program to work: They open my program. They go into their program they want to record mouse clicks on, and they press F9. They click however many times, and it records each mouse click. They press F10 to stop...
  4. U

    Encryption & Decryption

    Hello all, I found a couple functions to encrypt and decrypt any string with a chosen en/decryption key. I have added onto it and thought I would release it for you peoples to use, if you need something like this. Option Explicit On Imports System.IO Imports System.Text Imports...
  5. U

    Question Preloading images in another folder into application before loading

    Hello, I am wondering if it is possible, and how would I, preload images into my application. Let me explain more. I have several images in MyProgramFolder/images folder. When I load up my application, it immediately calls those. It also calls some when it loads up a different form. To load...
  6. U

    Get CrC values of all process

    Hello all, I had this problem and after quite a bit of hard work, I made a CRC check of processes. It combines a small amount of my own code with 2 or 3 other pieces of code I found via google. Make a new class called CRC32.vb: Option Explicit On Option Strict On...
  7. U

    Resolved Need Urgent Help - Process Name Check needs to be case-insensitive

    Hello, I put this at the top of my project: Option Compare Text Here is the sub that contains the process name check: Sub AC3() Dim ProcessList As System.Diagnostics.Process() ProcessList = System.Diagnostics.Process.GetProcesses() Dim Proc As...
  8. U

    Need help with error from blob [mysql] in datagridview

    I get results from a mysql query, I scroll a bit to the right, and a blob shows up. It tries to display as an image, which it does as one with a red x, like it is invalid. It then spams this error: How should I go about fixing this, and what is the main problem? Thanks! UPDATE: I don't really...
  9. U

    Question Change one hex value to another

    I am trying to make a program that checks a certain process and changes one hex value to another. I want it to work a tad like some of those memory editors out there [art money, cheat engine, etc]... where it works only when the program is open, and it goes back to normal if you close and open...
  10. U

    Question Edited my a patcher/launcher application and now it wont show...[Read On]

    Well basically, I edited my patcher/launcher application that is used with a program, and now, when I use it, I get no errors, but it appears in task bar... when I click it... nothing happens. The odd thing is that I am using Windows 7, which shows a preview when you mouseover the task icon, and...
  11. U

    Function that gives delay in milliseconds from you to an IP address+Port

    I had a function before that could ping an IP address or host name and get me the delay in milliseconds. But that was only for port 80 to my understanding of pings. I needed the function to work on a different, more used port. Since you can't ping a port, I designed a little function that worked...
  12. U

    Question Working on Anti Cheat, need help making DLL

    Introduction: I have made a simple anticheat.exe application, which runs in processes once my patcher/launcer program I also made starts up "MainClient.exe". A few problems: 1. I need tomake a DLL to make sure that the "AntiCheat.exe" process is open when the "MainClient.exe" process is. If it...
Back
Top