Search:

Type: Posts; User: miker00lz

Search: Search took 0.01 seconds.

  1. Replies
    6
    Views
    5,455

    Re: Pure VB6 8086 PC emulator!

    It's probably a good one to learn about it from by checking out the source code! It boils down to knowing how to implement the CPU, other components, and "connect" them all together. When I first...
  2. Replies
    6
    Views
    5,455

    Re: Pure VB6 8086 PC emulator!

    The problems in the IDIV/IMUL seem to come from me not being able to use an unsigned 32-bit variable to work things out with, I'll have to figure a way around that. The same CPU code works fine in...
  3. Replies
    6
    Views
    5,455

    Re: Pure VB6 8086 PC emulator!

    Thank you! I've written a much more complete emulator in C over the last couple of years (called Fake86), but I used to be a VB6 fanatic. I still like VB6 in some ways, and I thought this would be...
  4. Replies
    6
    Views
    5,455

    Pure VB6 8086 PC emulator!

    Hello, I've been working on this 8086 PC emulator written completely in pure VB6, called vb8086. Thought it would kind of fun and something not seen before (afaik) in VB6. There's a good reason for...
  5. Replies
    6
    Views
    4,943

    Re: VB6 - IRC server complete source code

    it's possible, you're basically asking for a spamfilter implementation like unrealircd has. it's not too complicated to code, but an easier and quicker way to get the results you want is to just...
  6. Replies
    8
    Views
    372

    Re: whats wrong in this?

    oh my.
  7. Re: PictureBoxes in a checkered colouration?

    maybe something like this?


    totalboxes = whatever number of boxes you used

    curcolor = 0 ' probably not actually needed, but why not
    For n = 0 to totalboxes - 1
    paintcolor = curcolor *...
  8. Replies
    17
    Views
    496

    Re: Visual studio professional 6.0 pro

    VS 6.0 can only be acquired by:

    1) as said before, eBay. the legit way.
    2) downloading from the intertubes. the dishonest way.

    i went with #2 because the price is kinda ridiculous usually for...
  9. Replies
    6
    Views
    4,943

    Re: VB6 - IRC server complete source code

    added link to generate MD5 hashes for ircd.conf passwords.

    http://md5-hash-online.waraxe.us/

    you have to capitalize it's output on the letters though.
  10. Replies
    17
    Views
    538

    Re: string contains 1 numeric character

    nah select case goes way farther back.. to VB1 for DOS, and of course before that QuickBASIC and QBASIC.

    your way will do the trick. another (bad) alternative of course would be:


    MyString$ =...
  11. Replies
    6
    Views
    4,943

    Re: VB6 - IRC server complete source code

    i apologize, Hack. i should have read the rules first. in that case, i'll post the code up for the MD5 hasher utility in a few minutes too. only the MD5HASH.EXE binary was in the ZIP before. it's...
  12. Re: need named pipes help! working on web server, and trying to add CGI.

    perfect, exactly what i needed! huge thanks! :afrog:
  13. Replies
    6
    Views
    4,943

    VB6 - IRC server complete source code

    this is some software that i put together earlier this year. complete IRC server, other than being able to link with another server. it's missing that. there are a built-in nickserv and chanserv....
  14. Re: need named pipes help! working on web server, and trying to add CGI.

    yes, i know environment vars and read/writing on the pipe is involved. i guess what i need to know then, is how do i start the CGI exec as a "dependent" process and access the pipe? access will have...
  15. Re: need named pipes help! working on web server, and trying to add CGI.

    TTT

    wow pushed down to page 2 already. does anybody know how to do this?
  16. [RESOLVED] need named pipes help! working on web server, and trying to add CGI.

    so, i've got this VB6 HTTP daemon i coded some months back. virtual hosting support and all. it works very well, but i recently decided to pick up where i left off and add support for CGI script...
Results 1 to 16 of 16