Results for "Volume: ASP_Volume3"
MasterDetailGrid Class Version 1.1 Paging , Sorting , and much more just download it and u will see
A complete chat page for your website. this site features a complete Administration ,you can kick the user, bad words filtering,font style and color, select room,creat your room,send private message, built in commands,icon wat do you wants,you can see the online friends. and many more.u want to try please visit. www.sbhs.makes.it batang STI Novaliches to..please vote me..
Thanks to the Internet's ever-increasing prominence in our world, we developers are constantly finding new and better ways to take advantage of its capabilities. Frequently, that means finding new ways to perform tasks on the Internet - pushing the limits to do something that hasn't been done before. At other times, we must find alternate paths to take advantage of functionality that's existed for years, such as file transfers using the File Transfer Protocol (FTP). FTP gives us the ability to send or receive all sorts of files across the Internet. Web browsers use underlying FTP functionality when downloading files. We can employ that same functionality in our Visual Basic applications to transfer files across the Internet or intranet by using the Microsoft Internet Transfer Control.
This teaches you how to use the webbrowser control. It can upload/stuff stuff, can be used to play online games, can be used for online chat, is faster because of its small amount of options and is free. Just for you to wow at, this code submission was done using Net Free 1. See? A vote in appreciation will encourage me to make versions even faster. E-mail me at: "[email protected]
To find roots in the "Real Realm" of polynomial functions graphically for f(x) = +0, within a range defined for the user. Bisection, Regula Falsi and Secant methods are defined in the program. Also some procedures to handle graphics in 2D.
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.
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 )
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.