Advertisement

Results for "Volume: 2002C"

2002C #8890
Search the Internet with 8 common search engines!!

Search the internet for web pages or files from your VB App. 8 common search engines: AltaVista, Excite, HotBot, Infoseek, Lycos, Yahoo, SoftSeek, AudioFind An easy to use function. You can add as many Search Engines to the Search-engine list as you want, this list contains 8 search-engines. One of my lists contain 24 common search-engines. Use like this: SearchTheWeb Inputbox("Enter search-words:","",""), wAltaVista

2002C #16234
CGI decoder class

This is a class that will get CGI data, decrypt it, and then put it into an array that you can access easily. ie some_variable = array_name['whatever'] would get the data from the HTML form item "whatever" passed to the program via CGI and put it into the variable "some_variable". Comes with instructions and a basic example

2002C #16479
Inventory System

Complete Inventory System of shop with all validation checks of String and Integers I have made my own validation checks in that project you like it.

2002C #16197
Machine code commands

This is for programmers of all langauges.This will show you machine code commands so you can build your own assembler.This way saves so much space and speed you can make a exe less then 10 bytes

2002C #16494
WinSock Programming

This article is my understanding of how to use the WinSock API. It explains how to create a socket, listen on a socket as a server, connect to a socket as a client, and how to pass information from the client to the server.

2002C #16511
ASCII Code Chart w/ tutorial

This code displays all the basic 127 ASCII characters numbered so you can know which number that character is if you want to use it. Plus a highly detailed description of every line and a small tutorial on displaying ASCII characters that you program in C++ with a sample program in the notes at the end of the .cpp file.

2002C #16513
X's And O's (Tic Tac Toe)

Its just a game of tic tac toe but 1 player mode can be quite addictive.

2002C #9132
Check Connection

This code will check if a connection is opened to the internet , if not , it will show a messagebox ! easy ... i like this way because am a new programmer!!!

2002C #16498
Graphics.h

This is the graphics header file for all of you who need for making graphics. if you need any other header files, don't hesitate to ask... and yes please comment on the programs I have writen.

2002C #16488
Follow the white rabbit.

This is just a modification of the source code of the original author. I fixed it so it will look CLOSER to the 1st scene in the THE MATRIX movie, where NEO first appears. This demonstrates the use of DELAY() func... BEST RUN ON FULL SCREEN MODE... note for the author: forgive me for modifying ur code... wel i just corrected it!

2002C #16457
Translucent window under Win9x/ME/2000

This is a nice example which shows you how to create a translucent window under Windows 9X/ME. Windows 2000/XP has an own function for this. Windows 98 AlphaBlending functions, but Windows 95 has nothing, so I decided to use a external function for AlphaBlending (win9x) and I used for Windows2000 the SetLayeredWindowAttributes function. The functions in gdiu.cpp were written by Graus an other programmer who works for a Programmer's Journal. To use the code in your own applications copy the files win9Xtranslucent.cpp, win9Xtranslucent.h, win2000translucent.cpp, win2000translucent.h into your project and look at translucent.cpp, win9Xtranslucent.h, win2000translucent.h how to use the functions. IMPORTANT: The code is not perfect! So it can be optimized. If you want to optimize the code do it like you think it's good for your project :-) For best optimitation the code must be rewritten into DirectX code. HOW DOES IT WORK: When the application starts a copy of the desktop will be made (WM_CREATE). On the first WM_PAINT message a copy of the window will be made. The WM_PAINT message is the message where the most work is. First we calculate the size and position of the window, then we check the intersection between the backuped size, position and the new size, position. If there is a intersection we copy a section from our background backup bitmap into the new background bitmap to hide the old window. Then we copy the new position, size to the backup position, size. Now we create 2 bitmaps: the first is a copy of the window rectangle from the screen (without the window), the second is a copy of the window. This 2 bitmaps are the arguments of the AlphaBlendU function which will create a new bitmap. This bitmap will be drawn on the screen. And at last we create a new copy of the screen. The old copy is the background backup bitmap. On WM_WINDOWPOSCHANGED message we POST a WM_PAINT message to our window for updating. NEW: In this version the size of the window can be changed! _____________________________ Please vote it :-) Sorry for my bad english.

2002C #16345
Bitmap & PCX Image Editor

An image editing program that currently supports Windows Bitmaps, PCX files, and my own attempt at image compression, the HCI. It has editing functions such as resizing/scaling with or without bilinear filtering, and a double size scanline feature; Rotation by any angle; Fitting the image to a wave or the surface of a sphere; and smooth filtering (to name a few). This is a work in progress so some features are still incomplete and buggy. Someday I'll get around to writing a help file but that will have to wait untill I'm not so lazy.

2002C #16516
FTP WININET Win32

Simple FTP DOS/WIN32 application that checks the machine day of the week, then goes and downloads the appropriate file for that day. I warn you, I stink at C/C++ and other languages and have only toyed with simple stuff. First, let me say this. I am a Network Engineer, MCSE, CNE, CCNA and work with routers, servers, Novell/NT some database apps/servers, firewalls, security, yada yada.. I wanted to learn C/C++ to be able to read, and understand hopefully, security applications, exploits etc...since I have taken more of an interest in security lately. Of course, in my day-to-day activities, something always comes up that requires me to make a task transparent to the end-users. It seems nobody can start an FTP from a Windows command prompt, login and download a file without it becoming a major ordeal, so they scream to the Information Technology department and make it our job (sound familiar?). So, this is what really prompted me to write something useful in C++. There are probably better ways to handle the checking of the day and firing up your Internet FTP session other than the way I did it, any comments are greatly appreciated on how to streamline this code. First, finding information on search engines/news groups and even MSDN is very difficult. Documentation to a novice is very cryptic, especially when there is very little of it to begin with on Microsoft's site. I had a heck of a time actually getting the simple FTP connection to work and scramble for days working on it. Hopefully, this will make it very apparent on how to get started with WININET to make FTP connections and lead you to bigger and better things. Please comment on the code.

2002C #16406
Crazy X

This program is dumb but kinda amusing, it's an X that is printed in random places... sorry, I was bored.

2002C #9138
AllowZeroLength

All fields in the selected table are processed and the AllowZeroLength property of the fields are set to either True or False, depending on the Status given as the finaal parameter The function returns a boolean value that can be used by the user to determin other operations.

2002C #9133
Encryption

Encrypts and Decrypts a string easily

2002C #16290
pLanet source code in the Sky with Diamonds

A simple 2D particle engine, not meant to simulate a star field, but just manipulate some particles using nested classes, and inheritance. Utilizing MasterLibrary2

2002C #9140
An Easy Way to Create a Transparent Form !

I provide an easy to create the non-rectangle form with usercontrol. We may use the control to design a non-rectange form or a desktop animation easily.

2002C #16373
Falling Quadz (similar to tetris =P)

This is a game very similar to tetris that uses windows GDI to load bitmaps and blit them to your screen.

2002C #16462
Create an additional button beside the Mix, max and close buttons

This code will create an additional button beside the Min, Max and Close buttons! The shape, colours, and image can all be changed to suit your own style.

Languages
Top Categories
Global Discovery