Results for "Category: Miscellaneous"
Calender, (Great code for Newbies). It shows the following. 1: How to read & write from the registry & .ini files. 2: How to make Date & Time the way you want. 3: How to create Tray Icons with right click Menus. 4: Shutdown & Reboot Windows. 5: Creates a Log & Saves it. 6: Allows you to Delete your log files. 7: Lists nearly all of the DTPicker control properties. 8: It will automatically load into your Icon Tray. 9: You can even have it startup when windows starts. (Added into Registry, Not Startup). 10: Included is a Basic Help File (.chm). Make sure you Register .ocx file. Thats it, I'm not sure if this will work on Windows NT. Try it out yourself. A few bugs have been reported and fixed. .zip has been updated on. Sat 04 Mar 2000. (.chm file will shows if i have missed any files.) Please leave comments. I want to find out how to fix any bugs in it. BJ
UPGRADED: NOW MENU & TOOLTIPTEXT ENTRIES This code permit to have a multiple language application. The LoadResString provided with VB doesn't permit to end user to make a new language file.
Retrieve the user currently logged on in the existing Microsoft Outlook session.
This code closes a window, if you know part of it's title. It uses some AOL API's, hehe(sendmessagebystring). I used it for closing Netscape windows because the "Window Class Name" always changed. Not sure if this code has any use though...
This will get the hWnd of freaky programs that change class names every time you start it, and then close it. The only thing you need to know is part of the Titlename (Netsc, instead of "Web Page Title" - Netscape). This WILL close Microsoft Internet Explorer (old version wouldn't) now =Þ. Also, I made it so that you don't have to have a form named "Form1" (by using EnumWindows)
This is a Basic Neural Net, based on original code by Richard Gardner. This is designed as a learning program, to help in the process of learning and understanding the basics of coding neurons and neural networks. I've taken Richard's code, changed it around a bit to make the neuron data a bit more readable, and commented the code to explain whats going on at every stage. The program uses backwards propogation (or back prop) to train the network. There is a basic data structure for a neuron that stores all the information about the neuron and associated weights, and the code (Richard's, mainly) is broken down into parts that allow you to clearly see code for training, activation of a neuron, and getting an output from the network. There's a nice GUI stuck on the front of it all, which gives you a graphical representation of how the neurons are layed out in my code (its a static graphic). As it is at the moment, it makes for quite a nice tutorial program if you just want to compile it and watch it train for the preset functions, or enter your own input data and train it for that. Basic neural net knowledge is assumed (you should really know what a neuron is, and have some idea of what training a neural network to do functions like AND or XOR actually means, otherwise the GUI won't mean much from the outset). I'm still really only a neural net learner, so I don't make any guarantee that this is completely accurate or complete in anyway. Hopefully the code is written so that you can expand on it to make different neural configurations if you want to. I don't mind what you do with any of this program, or code, but would be interested to hear comments and/or suggestions.
This will get all the text from your forms, modules, and classes. I needed this to spell check some forms today. I also added a quick text search, and VBP info. including code line counting.
I wrote a little dll. You can convert a bitmap to a jpeg image (with Compress quality) or a jpeg to bitmap image. You can also capture the desktop in both formats (if You are using more then 256 colors).
Extract and save Icons from dlls, ans exe files. I used an example found on AllApi.net
Dial-up Networking demo. Soon it will be updated with RasGetEntryProperties and RasSetEntryProperties API's. Some parts are not written by me...
This short code enables you to make your application insert itself into the user's Startup menu, if it's not already there, so that it will run every time they start up their computer. Now works with WinNT and Win2000
If you have a nokia mobile phone and looked at ring tones you will have come across RTTTL, the text format for the tunes. This is a stand alone module with one public function PlayRTTTL. You give it a tune as a string in RTTTL format and it plays it using beeps. Note that this only works on NT as the Beep function is different on windows. If you are wondering what it could be used for, here is an example, at work we have written a phone book system for staff extension numbers and when you click on an entry you see details about the person and a picture. I wanted to let staff also give themselves a theme song that would play when you clicked on them. Since there are hundreds of RTTTL tunes available on the internet I decided to use that format as it is easily edited by users and saved to the database, and users can add new ones whenever they like. The code could have been written better, but I wanted to keep it in a self contained single module that you could plug and play into any project. This has nothing to do with Nokia mobile phones, it just uses the same format for the tunes. If you have not seen them, this is an example of the format: Simpsons:d=4,o=5,b=160:c.6,e6,f#6,8a6,g.6,e6,c6,8a,8f#, 8f#,8f#,2g,8p,8p,8f#,8f#,8f#,8g,a#.,8c6,8c6,8c6,c6 The Simpsons are probably copyrighted so don't use that one at home kids :)
Lan Chat 32 is designed to chat with another computer directly. No sever needed! Client/Host in the same program. All you need is the Host computer IP, your IP is shown on the form. Upped by request, Full source and working pprogram included! (Again, this is not originally my code! I Just made it ALOT better than the original. Original submitted by Arthur Chaparyan)
Here is the Updated version of my ooriginal submission Lan Chat 32 *Complete* With updates such as Compact View, IP list, Better GUI, Listen on Load, and others. I am currently working on adding Bold, Italic and Underlined text as well as being able to send colors and a multiple connection interface. (Removed last submission, upped the wrong zip file)
Simply sorts a 1 dimensional array using a bubble sort algorythm.
Show files and folder into a listview/treeview into a unique control , counting with: - Automatic strings of local machine (like my computer, panel control, etc...) - Support for all events relatives on file, folder and root - Fast load with API and FileSystemObject - Show true icons relatives on files and folders (folder like favorites, IE history and other have different icons).
Disables the effect of Ctrl+Alt+Del and Alt-Tab. It can be used for security programs or just so the user cant exit your program or restart the computer from the keyboard.
This Here chunk 'o code makes it so you can use a joystick instead 'o a mouse. up/down right/left do just that, and button 1 is leftclick , button 2 is rightclick. I couldn't get middleclick to work. Please tell me what you think!
If you have to add your username or initals tag to each change you make in code, this lets you select a block of text and add it to the end of each line.
This code finds if any key pressed. This will be helpfull for example you're programming a screensaver. But you can not get keypresses through forms because of some components which does not support this keypress event. So you must use some API's to do this.