Advertisement

Results for "Author: ultimatum"

2002ASP #1078
WebZip - Update for Online Zip Browser (I)

This program is an update for the code that Rang3r posted (Online Zip Extractor). This version has an improved GUI, a ping feature, checking for resumable servers, and checking to make sure the ZIP file exists. GetIcon function by Tom de Lange and skinned buttons by J. Pearson.

2002ASP #1079
Take Control of the Compiler

Access CPU registers, write true in-line C, C++, and assembly, hook API calls made by other programs, export your functions to a non-ActiveX DLL (in other words: make APIs), call functions by address, etc, etc, etc. The potential is mind boggling!

2002ASP #1080
Morphyx MP3 Encoder

What do you get when you combine two programming languages? Morphyx. I've been working on this program for about two years (mainly research) and I finally just decided to take one section out of the big program and give you an encoder. (The FULL version, which isn't freeware OR open source, encodes/decodes MP3s, rips CD tracks to WAV or MP3, burns CD tracks from WAV or MP3 and also creates MP3 discs, plays EVERY type of media file including videos, connects to Napster, records sound via microphone, records video via web cam, etc. etc. etc.) Morphyx Encoder gives you a choice of two encoding engies: LameEnc and Blade. Note that this is NOT command-line encoding. This is done through an encoding API (BLADEENC.DLL or LAME_ENC.DLL) with a wrapper DLL (MORPHYX.DLL). I included the full source to MORPHYX.DLL, but neither BLADEENC.DLL or LAME_ENC.DLL, because, well, I didn't those. =) Morphyx EXE: Visual Basic Morphyx DLL: C BLADEENC.DLL: more than likely C or C++ LAME_ENC.DLL: more than likely C or C++

2002ASP #1081
Kill the Windowz Close Button (X)

This subroutine will disable the Windows 9x/NT ' close button, also known as the little X ' button. It's really useful when you have a ' form that you don't want to set its ControlBox ' property to False. Write this code in a ' standard module (BAS).

2002ASP #1082
HyperApp - Write binary code with HTML!

Create GUIs based entirely on HTML or write machine-specific code for web pages!

2002ASP #1083
WinKilla - Runtime Disassembler

**UPDATED FOR NT SUPPORT** Spy++ is good, if you like LOOKING at what's loaded in Windows. WinKilla takes that extra step. WinKilla is actually Windows disassembler, minus the procedure watches (which are being added, by the way). However, WinKilla actually lets you TAKE CONTROL of all classes derived from the C++ CWnd class! This means that not only can you play around with all visible windows, but you can also tinker around with HIDDEN WINDOWS, ALL CONTROLS and PROCESSES! Imagine changing the text on a command button that isn't even made in VB from a program that you didn't even make =) Take a look. This is probably one of my best works yet.

2002ASP #1084
Get the binary inverse of a string

This code is the equivalence of the bitwise complement C opertator (~), except this only works on strings. I got tired of not having this capability, so I wrote it =)

2002ASP #7254
Morphyx MP3 Encoder

An MP3 encoder using a GUI. Very simple, easy-to-use program that gives you the option of using two encoding engines. The GUI was written in Visual Basic, but the encoder was written in C. Enjoy!

2002ASP #7255
MP3 Decoder/Playback Source

This code demonstrates how MPEG-Layer 3 (MP3) files are read by programs like WinAmp and Windows Media Player. Note this code uses no Windows API calls, DLLs, or OCXs. This is the RAW CODE for reading and playing MP3s. It contains no examples, but is based on FreeAmp, so if you want an example, FreeAmp is as close as you're going to come. I do plan on creating an example sometime later on, but for now, here's the code that everyone's wanted. =) I can't take credit for this code, though. The ORIGINAL MP3 decoding algorithms were written by Xing Technologies. Oh yeah, while I'm at it, vote for me! =)

2002ASP #7256
MP3 Encoder (Converts WAV to MP3)

Here's some MORE source code that I know everyone's wanted! Take your favorite CD audio tracks or WAV files and shrink them to MP3 format using this code. This WILL COMPILE in Visual C++ 6! YAY! Wanna learn how to decode them and play them back? Check out code number 372. Vote for me =)

2002ASP #7257
The 5 byte EXE file

This article is based on Vbmew's "make 7 byte .exes" (http://www.1cplusplusstreet.com/vb/scripts/ShowCode.asp?txtCodeId=2221&lngWId=3) His article perked my interest in the Assembly language, so I went out and did some research. This article is a very brief primer on assembler and machine code.

2002C #9682
WebZip - Update for Online Zip Browser (I)

This program is an update for the code that Rang3r posted (Online Zip Extractor). This version has an improved GUI, a ping feature, checking for resumable servers, and checking to make sure the ZIP file exists. GetIcon function by Tom de Lange and skinned buttons by J. Pearson.

2002C #9683
Take Control of the Compiler

Access CPU registers, write true in-line C, C++, and assembly, hook API calls made by other programs, export your functions to a non-ActiveX DLL (in other words: make APIs), call functions by address, etc, etc, etc. The potential is mind boggling!

2002C #9684
Morphyx MP3 Encoder

What do you get when you combine two programming languages? Morphyx. I've been working on this program for about two years (mainly research) and I finally just decided to take one section out of the big program and give you an encoder. (The FULL version, which isn't freeware OR open source, encodes/decodes MP3s, rips CD tracks to WAV or MP3, burns CD tracks from WAV or MP3 and also creates MP3 discs, plays EVERY type of media file including videos, connects to Napster, records sound via microphone, records video via web cam, etc. etc. etc.) Morphyx Encoder gives you a choice of two encoding engies: LameEnc and Blade. Note that this is NOT command-line encoding. This is done through an encoding API (BLADEENC.DLL or LAME_ENC.DLL) with a wrapper DLL (MORPHYX.DLL). I included the full source to MORPHYX.DLL, but neither BLADEENC.DLL or LAME_ENC.DLL, because, well, I didn't those. =) Morphyx EXE: Visual Basic Morphyx DLL: C BLADEENC.DLL: more than likely C or C++ LAME_ENC.DLL: more than likely C or C++

2002C #9685
Kill the Windowz Close Button (X)

This subroutine will disable the Windows 9x/NT ' close button, also known as the little X ' button. It's really useful when you have a ' form that you don't want to set its ControlBox ' property to False. Write this code in a ' standard module (BAS).

2002C #9686
HyperApp - Write binary code with HTML!

Create GUIs based entirely on HTML or write machine-specific code for web pages!

2002C #9687
WinKilla - Runtime Disassembler

**UPDATED FOR NT SUPPORT** Spy++ is good, if you like LOOKING at what's loaded in Windows. WinKilla takes that extra step. WinKilla is actually Windows disassembler, minus the procedure watches (which are being added, by the way). However, WinKilla actually lets you TAKE CONTROL of all classes derived from the C++ CWnd class! This means that not only can you play around with all visible windows, but you can also tinker around with HIDDEN WINDOWS, ALL CONTROLS and PROCESSES! Imagine changing the text on a command button that isn't even made in VB from a program that you didn't even make =) Take a look. This is probably one of my best works yet.

2002C #9688
Get the binary inverse of a string

This code is the equivalence of the bitwise complement C opertator (~), except this only works on strings. I got tired of not having this capability, so I wrote it =)

2002C #15858
Morphyx MP3 Encoder

An MP3 encoder using a GUI. Very simple, easy-to-use program that gives you the option of using two encoding engines. The GUI was written in Visual Basic, but the encoder was written in C. Enjoy!

2002C #15859
MP3 Decoder/Playback Source

This code demonstrates how MPEG-Layer 3 (MP3) files are read by programs like WinAmp and Windows Media Player. Note this code uses no Windows API calls, DLLs, or OCXs. This is the RAW CODE for reading and playing MP3s. It contains no examples, but is based on FreeAmp, so if you want an example, FreeAmp is as close as you're going to come. I do plan on creating an example sometime later on, but for now, here's the code that everyone's wanted. =) I can't take credit for this code, though. The ORIGINAL MP3 decoding algorithms were written by Xing Technologies. Oh yeah, while I'm at it, vote for me! =)

Languages
Top Categories
Global Discovery