Results for "Volume: 2002C"
This code will get text from listbox's on 32 bit software using VB3. I've been trying to find a way to do this for a long time now. It was not possible in the past because getting listbox text using vb3 for 32 bit programs, required User32 and Kernel32 which vb3 did not allow. So I looked and looked for a way to do it and I found it. A DLL called "Call32.dll" allowed me to use 32 bit dll's. So here it is. If you like the code, please vote for me. Also, if someone can lead me on the right path for creating a .HLP file in vb3, I will create a help file on using Call32.dll. Jeffrey C. Tatum - http://www.oaknetwork.com/vb
See my other submissions to get v1.3 Features: -Real Office and Visual Studio like icon menus -Disabled pictures in color (optional) -Uses the form's font (optional, +size, +color) -Working "local" and "global" shortcuts (&; Ctrl+?, etc.) -Easy interfacing between ImageList and VB's Menu Editor -Event on selection of menu items for context help -2 ways to display check marks and/or radio buttons -Full selection of item (bar) or text sel. (text color) -IE4 hover effect on main menu bar items -Tested in MDI environement -Subclass more than one form -Over 2000 lines (documented) to modify and play with -Most complete icon menu project ever seen in VB Based on Paul DiLascia's work from the Microsoft System Journal Ported from VC++ to VB by me + some adaptation. visit www.dilascia.com
Self updaing transparent / translucent form. It's cthru! (Expanded on Kevin Tupper's and BoS's work.)
Choose you color using 3 scroll bars, Red, Green, Blue (RGB). Get Single Hex or Decimal, Full Hex/HTML or Decimal/RGB & Complete Decimal. Saves last screen position, saves last color, prese colors (black & white) & has a random color button. Amazing.
Save the last screen position of your form.
Well I was seraching around the net the other day looking for a online banner maker well I found some and were not what I wanted or you had to pay for them well I decided to try and make my own program to make them. Well have a look and see what you think if you like it them please vote.
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: "yangzeqi@hotmail.com
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)
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.
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
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.
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