Search results for query: *

  • Users: Biohazard
  • Content: Threads
  • Order by date
  1. B

    Bored? check out my Slot Machine Game

    Lucky Palace!Let me know any constructive feedback And please let me know any (if at all) errors you may/ may not encounter. I just developed this tonight so I figure there may be some errors
  2. B

    Based on this codelist, can you find the Algorithm

    Here is a codelist for my first serial number maker, all keys used the same exact Algorithm to create the code, I want to see how hard it is to break. If you find the Algorithm please let me know how you did it, and how long it took. And any suggestions you would make for making it stronger...
  3. B

    Importing a DLL File

    So I have created a DLL file Class entitled SerialChecker and I need to import it into my application for use once it is compiled from the application.startuppath /data folder so I can use one of the functions I have added to it.
  4. B

    Saving and creating various data

    So I have designed a program I call C.O.P.S. (Company Operation Platform Servie) And one of it's key functions I really need help with as I have never done this type of thing before. What I have laid out: As you can see there is a listbox that contains the Customer Number As well as a couple...
  5. B

    How can I decompile my old project?

    NTI's MasterDrive | Get NTI's MasterDrive at SourceForge.net I ment to finish it in 2007 but I lost the source code... The file I need decompiled is: Public Alpha 2007 If you can decompile it into a project I would really appreciate it. I grant full permission to hack it or whatever you need...
  6. B

    Check out my website, let me know what you think

    So I opened up a new website for team TAL-SOFT, let me know what you think of it. I keeped it simple in HTML not only because that's all I know but because I want to keep it professional. I know it's not related to VB.NET forums but all my programs listed on it are VB.NET.
  7. B

    What do you think of VS 2010 Beta 2

    I was one of the luck ones, I sampled VS.NET 2005 and MS gave me a free copy some years ago. Now obviously that isn't the case, but I was wondering if any of yall downloaded and tested the VS.NET 2010 Public Beta 2 and what you thought of it. I just don't want to download it if it isn't that...
  8. B

    Layering Images or Textbox on top of a picture

    Okay so here is the problem I designed a countdown animation that cycles through 64 pictures. This works for the most part now the problem is I want to put a number on top of that picture without having to reformat the pictures because it counts up to 10. If I have to reformat the picture it...
  9. B

    What's wrong with my code??

    So it works, shows the images in the sequence like I want it to (Essentially a video clip working via PNG files and loops, however, the first 16 pictures are skiped on the first run, instead it shows a tiny img error picture) Here is the image sequence function Public Function...
  10. B

    beta test my latest?

    Anyone want to beta test my latest program, I am on beta 2 All are welcome, all I request is good honest constructive feedback, and that if you think you can help with development, you do so. I call it Xavier's SpeakSoft, named after my autistic child, basically it's a program designed to help...
  11. B

    e.Keydown help

    Private Sub InitialTest_KeyDown(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles Me.KeyDown 'Show Admin Settings when Ctl + Alt + A is pressed If e.Control And e.KeyValue = A Then About.Show() End If End Sub Is there...
  12. B

    Anybody Know how to make a custom loading screen?

    So I am nearning completion of my 7th major project And I need the application to load files into ram when the application starts Almost like a splash screen but with a loading bar. I have to load over 90 JPG's And I would like to have them in RAM so the application isn't so slow at first IE...
  13. B

    Viewing a Text Document online and importing as String

    Okay so I have a simple issue that no respectable google search can solve. I have a file located on http://www.tal-soft.co.cc/SpeakSoft/Version1Info.ids (The IDS file is a text document, just don't want web crawlers to access this unnecessary information. It's seriously just a single line of...
  14. B

    How Might I control a Windows Media Player Control's Volume

    I have two mp3's playing, one of which is a background song so I need the volume really low And the other one I need the volume slightly higher The Control's names are: AxWindowsMediaPlayer2 and AxWindowsMediaPlayer1 Any Ideas
  15. B

    How might I play an MP3 File?

    My trouble comes from a lot of websites actually One tells me to load the Microsoft Media Control Going to Tools>Options>Controls tab but there is no such thing Another tells me to load the MP3 with an external application by doing calling the Process.Start Class but I don't want to use more...
Back
Top