Advertisement

Results for "Volume: 2002C"

2002C #12057
Anti-aliasing & Rotation demo

"Anti-aliasing demo" by Robert Rayment. There are a few anti-aliasing progs on PSC. Mostly they are cleverly convoluted into several subs. I thought I'd stretch out the logic - makes it easier for me to understand and maybe for some of you.

2002C #10575
JoeCrypt2

This is a text encryption program I began writing when I was 12 I am 18 now and the code has changed many times Ive added many new features over the years. This has been my baby, my pride and joy. Its simple to understand but man is it effective. It has option for encrypted Chat Encrypted Email. Some of the code in this project was taken from planet source, I beleive the only thing I borrowed was the smtp emailer code so I could make it send email. I have been reluctant for years to put this on PSC but now I think its time to just let it go and see what everyone thinks of it.

2002C #12354
INI Edit v1.1

INIEdit v1.1 is a windows INI Editor. it loads an INI file into a visual interface, allowing you to add and delete sections, keys and values. If you like this project, please vote! I am already working on 2.0!

2002C #10858
TaskBar Control

This is a UserControl i did for a recent project. It almost fully emulates Windows taskbar functionality. Written from scratch, uses heavy advanced API and subclassing. Code greatly inspired by submissions to this site and vbAccelerator.com. Everything is done the hard way, the way a VC++ programer would do it. And btw, lots of lame code here. Don't know why people upload so much rubbish. I'm a professional VB coder and maybe my judgement is too harsh :-)) Anyway, don't bother to vote but do comment here. Enjoy,

2002C #14311
Rolling PopupMenu (improved)

This application demonstrates a customized popup menu, with a "rolling" (vertically scrolled and gradually revealed) effect. It works by using a second form embedded within the first as the popup menu. For more code samples visit my personal web site: click above on my full name.

2002C #14422
INI file template routines

INI-file template routines -------------------------- This application serves as a template for writing new applications in which you can save all the userconfigurable settings into an INI-file. Take a look at the module "modINI" and the class "clsINI" clsINI was taken from a PSC-contribution by Eric Dalquist (I have included his zipfile for your reference). I liked the concept so I decided to add some more functionalities. Sample application description ------------------------------ This application shows how to save/restore a sections in the inifile using "Save settings" command buttons. Also there is an automatic save-restore of the manual entry section. If you play around with the add/rename/delete buttons and section/key/value fields the contents of the inifile is displayed immediately. Then at program restart you will find only the settings that are valid / maintained by the application! All the other un-used settings are deleted automatically. Even if you delete the entire inifile a new one will be created at startup using hardcoded defaultvalues. Class "clsINI" description -------------------------- - init takes care of a default sectionname, which is the inifilename but you can override that. - saves the currentSectionName and iniFileName so you don't have to specify them (but you can) for every subroutine call. - add/rename/delete a section or key. - delete all sections. - returns all sectionnames, or keys within a section. - returns the number of sections, or keys within a section. - returns the version of the inifile. - getKeyValue: if a key is not found the supplied defaultvalue will be written to the inifile and returned. Module "modINI" description --------------------------- - this is the part you would change for every new application - here you declare all your global variables which you want to save/restore - there is a readDefaultSection and writeDefaultSection sub and for each section there is a readSection and a writeSection sub - if you want to stick to just one section just use the default section - to keep the inifile up to date during development the version of the inifile is checked and the number of keys in each section. If the version is not equal to the hard coded value the inifile is rewritten and if the number of keys in the section is not correct the section is rewritten. - at application startup all you have to do is to call readAllSettings and do the setup of your application, see the formLoad routine of frmMain. That's all folks. Have fun! Eric Kok

2002C #8764
Unreal Tournament Server Browser

This program is a standalone server browser for Unreal Tournament game servers. You can use it to maintain a list with your favorite UT servers and quickly see who's online. It uses the winsock control and the UDP protocol to query the computer running the UT server. I think it is a good example on how to handle the UDP protocol,how to verify that all the packets of the server's response have arrived, how to sort them to get a complete response etc.

2002C #9254
Screen Grab

grab selection from screen. Limitations - saves im bmp format, doesn't save DVD etc.

2002C #14225
Keyword Grabber

This program lets you enter search words and then it retrieves URLs for them. You can then get the keywords from those sites. The intention of this program is to help people achieve better ranking on search engines by helping you choose better keywords for your web site. This code will also automatically generate the proper HTML code for the keywords you choose to add to your web page. It also has Drag-and-drop support and uses MS Flex Grid.

2002C #12778
Report Manager for Access97

Simple, but effective. If you use MS Access for Client/Server apps, you'll never need to write another piece of code to display your reports, just add this form to your DB and it'' do the rest. Double click to open a report normally, or send it to Word/Excel or HTML format.

2002C #12956
Safe Proxy

IMPORTANT: Before you open the code rename systray.oc_x to systray.ocx Safe proxy acts like a normal HTTP proxy but you can customize it to block out content. It is currently programmed to block out file uploads.

2002C #12953
Site Detective - HTML code viewer and server headers viewer

This application lets you see servers headers when you visit thier site. Usually that information is hidden, but now its revealed. You also see the sites HTML source code. :) You can even use this behind a proxy!

2002C #12142
Browse Files on Your Computer

This is a very simple program. It simply shows beginners how to browse through files on your computer without the comdlg32.ocx control (it gets somewhat annoying to use this control on every application and then having to include it in a zip file if you're sending it to your friends). It's nothing that took me a long time to do, maybe a minute, but it might be useful to someone. Oh yeah, and this only uses the standard VB controls, no additional Active X controls

2002C #12460
Website Builder Beta

Website Builder provides an easier method for HTML coders to maintain the look and feel of a website. Website Builder uses a master template which is applied to HTML pages contained in a database. This is a simple project, however, it has saved me many hours of HTML coding over the last few weeks for my website and my clients' websites. The included modules are mostly compilations of other people's work here on PSC and I don't make any claim to them. I hope you all enjoy my first PSC upload!

2002C #11338
The joys of MsgBox's

This article will show you how to fully extend the basic VB MsgBox() function. Learn how to add icons, multiple lines of text, change the title, etc. MsgBox's are used in just about every application, learn how to use them to their maximum potential!

2002C #14079
Clear Recent Documents List

Clears the recent documents list with a single command. Easy to implement in a text editor, or in some sort of trace-deleter program..

2002C #14080
Remove Duplicate Entries From ComboBox

Secure method of removing duplicate entries from a combobox. Optional second pass to remove possible 'left-over' dupes after first pass.

2002C #11039
The Daily Newbie - Using the App Object

Explains the basics of using the App Object.

2002C #12775
Manager Access97 Reports/Queries from VB6

If you liked the Report Manager you'll love this. Again, it's very simple but effective. It allows you to manager both your Access queries and reports directly from a VB6 program, which sure beats writing code to do it. Have fun!

2002C #13498
a 3D Logo Creater

Create and manipulate 3D Logos. Apply bitmap,jpeg,gif textures to the fonts or just use colors. Apply filters to textures (nearest,linear,mipmapped) My VB installation is messed up a bit so couldn't use common dialogue to choose fonts but if anyone wants should be able to implement that quickly. Uses API's to save the openGL scene as a bitmap and a few to setup the openGL scene No help file included check the code to see what keys do what. Requires vbogl.tlb 'I got from http://is6.pacific.net.hk/~edx/tlb.htm and ogl32.dll 'which should be included in most systems

Languages
Top Categories
Global Discovery