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...
Type: Posts; User: miker00lz
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...
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...
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...
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...
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...
oh my.
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 *...
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...
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.
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$ =...
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...
perfect, exactly what i needed! huge thanks! :afrog:
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....
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...
TTT
wow pushed down to page 2 already. does anybody know how to do this?
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...