Results for "Volume: 2_2002-2004"
This code is a screensaver, or rather a demo, that shows an example of several graphic techniques and effects including pointers to a bitmap, fading, mathematical lookup tables, palette switching, and simple Gaussian blurring, and in short, very fast graphical manipulation. The effect is very similar to the winamp plugin 'Geiss' and perhaps others. The code seems to be optimized as much as possible, and runs relatively fast on both my Pentium 3 450mhz and my AMD K6-2 450MHz, considering the effect. You can view additional screenshots at http://romnet.yi.org/prog/demo1/demo1.htm. The palettes are stored in external bitmaps that can be altered for your viewing pleasure. There are two executables in the zip, one runs in a small window and one runs fullscreen at 320x200 using DirectX to change the resolution. (People have been having problems with this- do NOT forget to reference the directdraw type library or you will get an error on Public dd)
A message forum system, allows accounts to be created, change user status to moderator, create/edit/delete forums, moderator only forums. Add/edit/delete posts. Delete/lock topics. View the top 10 posters. This code will work from any directory on your webserver, no DNS to change. Sorry about the lack of code comments! If you wish to test it, use the username: admin and the password admin
Draw a perfect arc using any 3 given points. Find a point on a line at any given distance from the start point. Find the common point where 2 lines intersect. Find the distance between any 2 points. Get the angle of a line in degrees or radians. The list goes on. Sample program included. This module is an absolute must for graphics programmers.
Mod_DX7.bas is a module of simple functions to make DirectX programming easier. Included is an example program which uses the module. All it does is bounce a ball over a background but it does it at a rather slick 89 frames per second (on my 400Mhz PC) and it prints the frame rate every second to the debug window for you to see. This is my first ever DirectX program so it will be useful for newbies to DirectX 7 (like me). I have since used this module to create my most graphically advanced game - aMAZEing 3D - to run in full 3D lighted textures at fast frame rates! Go look at my other submissions to see that. If this code is helpful, please vote for it.
A simple Isometric tile map in SDL. Contains the BloodShed Dev-C++ Project.
Choose the point from where this laser will write your text , draw a picture , or both. You can choose any kind of picture ,and laser will perform this cool effect while drawing her. Here , I used , a real picture + *.gif + text + www. banner at once . Have you ever seen , how it looks like while laser writing on the night sky. Don't wait for that , you can simulate it here. I will appreciated any further work with this effect , and if you like it , than Vote !! Enjoy !
Click and drag on the screen, and it makes a box that copies everything inside of it. Then you can save it, or take new shots. Great for taking pictures of your programs when listing them on PSC.
Makes a menu item bold (for defualt items) by using Windows API's.
It's a complete forums system with private messaging, moderation, and minimal admin abilities.
Purpose: play an AVI file that is stored in a resource file using the standard (Microsoft Windows Common Controls-2 6.0) Animation Control. Credits:Mattias Sjögren (MCSE) - VB+ http://hem.spray.se/mattias.sjogren/ for the API code. For more AVI files visit http://pjs-inc.com/vb-avi
This OpenGL code loads two Half-life models!
only change to your database name. yazi.mdb to yourdb.mdb ( find and replace in notepad )
This is a simple Web Admin panel for product cataloging.I have used persist upload to upload the product images. You can easily configure it. There is one main catagory then subcategory and product in sub-catagory. For eg. You have a category men's wear in men's wear you can have diff. categories like shirts,formal wears,pents and etc. in this sub catagory you can add the products and description of the product.
A program that writes text to Notepad. The code is fully commented and easy to understand. PLEASE vote for it or comment for it. It takes very little time to comment and it is very appreciated. If you can't vote, the least you can do is comment on it. Tell me if it is bad or good.
Conceptually, non-volatile RAM is any RAM (random access memory) that is not lost because the memory device loses (external) power. The NvRam class implements this in a primitive but powerful way: by writing to and reading from a data file in real time. In principle, your code need only identify the location in this "memory" (as in an array) that a given variable is stored in and the class does the rest. Here's a simple example of how it works: Dim MyVar As Long Set Nvr = New NvRam Nvr.Connect "C:\MyData.dat" 'Read in value, 'do something with it, 'and write it back out. Nvr.ReadVar MyVar, 20 MyVar = MyVar + 1 Nvr.WriteVar MyVar, 20 Nvr.Disconnect Here are some good applications for this class: - Protecting in-"memory" data from power failures. - Maintaining large amounts of data with almost no memory overhead. - Maintaining program state across run-time sessions. - Sharing data among multiple processes. While it does not yet have built-in support for storing user-defined data types or objects, all primitive data types (e.g., Long and String) are supported. (Variants are allowed, so long as they are late-bound to one of the primitive data types.) Also missing is a way to shrink the size of the data file, the equivalent of ReDim Preserve. Feel free to make suggestions or add support for such features, so long as credit is given for the original code. While tested with VB6/NT4, this should be compatible with any version of Windows that supports the CopyMemory() API call and which has data types with the same sizes as with Win32 systems like NT. Your comments and vote are welcome.
This application should help you keep track of the time you spend on different projects/clients. Select the project and set the timer to begin. Add notes as you need to describe the task. One simple report is included.
Simple ways to create data structures on the fly without creating classes, user-defined types, etc., and how such structures can be more flexible, data-driven, and even self-defining.
Create a label, commandbutton, frame, textbox, hscrollbar, listbox, picturbox, shape, dirlistbox, filelistbox, drivelistbox, vscrollbar, optionbutton, line, checkbox, image or combobox randomly with random height, width, top & left properties
This app/code uses basic file handling and formatting to open/interpret ASP and HTML files and format them for use in VB's amazing new WebClass technology