Results for "Category: Miscellaneous"
Voice Mail, answering machine using Microsoft Telephony which installed as a part of the MS Speech SDK. This submission has the xtell.dll i left out before.
A VB Start Menu that actually looks a little like the the windows one (check screen shot) I downloaded Itay Sagui 's code the other day and i thought it needed some updating (no offence Itay) i kept some of his code in there but its now more like a task bar with my own 'Run' form in as well, it's fully commented nearly everything is explained. Please check it out, Leave comments & Vote. (no laughing at my PSC logo hehe)
Ever wanted to have drop down combo boxes, list boxes, or check boxes in a MS FlexGrid? Well with this code you can now do it. With the code you can see how to do it for your own projects. You can add or take out what you need for your program. All you ned to to then is write the code to load the FlexGrid and save the changes to the grid. I also included two buttons that can add or delete grid rows on the fly.
DelTree function using FileSystemObject. Removes folder regardless of files/folders/system/hidden contained within. Couldn't find any deltree code here that worked, most used the kill statement and such in a rather large sub, found this in MSDN...
*For Beginners* A simple "word processor" that shows you how to use commondialog to open and save rich text box files. Uses image boxes as buttons, including the "X" button and "M" (minimize) button.
this is a small windows. it has a working menu, working taskbar, working startmenu, working programs, working drap&drop, working recycle bin, working desktop. download it and use it to release your own type of small os. edit the source to make it more powerful.
i added a few more programs like aol, help, and error messages. this is a small windows. it has a working menu, working taskbar, working startmenu, working programs, working drap&drop, working recycle bin, working desktop. download it and use it to release your own type of small os. edit the source to make it more powerful. don't believe this is going to totally replace windows, it's just a little project that's fun to work on.
If you've ever wondered how sound applications can show the kilohertz and samples per second information about a waveform file (.WAV), the answer lies in the RIFF file format. The RIFF file format is designed to be as generic as possible. It is used for waveform, AVI, palette, and other information standards that may need to be mixed and used together. Generally speaking, though, any file with a WAV extension will only contain waveform data. RIFF provides information in chunks and subchunks. The header for each chunk describes the length of the chunk and the type of data the chunk contains (WAVE, for instance, is the string identifying a WAVE chunk). The Wave subchunk is immediately followed by the WAVE Format Chunk. It is this small chunk that defines the structure of the waveform data that will follow. It defines the format of the waveform, the number of channels used (with 0 being mono, 1 being stereo), the sampling rate, the kilohertz at which is was recorded, and the data block size. Of these, only mono/stereo and the sampling rate are likely to be of interest unless you intend to write your own custom waveform player.
ResChanger will change the screen to the specified resolution and color depth, execute an application, and change the screen settings back when the application terminates. Execute the application for command line parameter specifications.
very Simple but interesting text effect for the form caption
Need to test installs on different operating systems? Need a new operating system fast? Infected by virus?...Read this - it may help.
This code will Send a message to all open MSN Conversation Windows. Please comment and vote!
This is an example of how to scroll a form vertically. It also resizes the controls and moves through the form if the focus is on an unseen control (textboxes in this example).
This Is a handy code for sorting a ListView Box by whichever column header is clicked.
This will register Aol Instant Messanger(AIM) screennames super fast without going to the web page. Just update your e-mail address every two screennames you make.
Folder Master Folder Master is a simple Folder Security Program.Using the filetype extension. Simple and useful... for more code.. [email protected] General Corporation Bangladesh
General Folder Security ( MEGA ) General Folder Security is the stronger security program.No one can access the locked folder and if anybody change it under Dos mode then it'll not allow that illegal user to access the computer.It's not possible to delete the folders also... for more code.. [email protected] General Corporation Bangladesh
Registers or unregisters DLL and OCX Files, but DOES NOT REQUIRE the standard RegSvr32.exe from Microsoft. All done through API. Program has a GUI, but also works with CommandLine parameters. Specify only a filename, and the program attempts to register this file. Specify /u and a filename, and the program attempts to unregister this file. This is an update from something I posted 5 months ago, the only new thing is the commandline option. The program also allows you to add or remove itself to or from the shell, by adding itself to the registry (so you can right-click on a DLL/OCX-File and select Register or Unregister). A Vote is appreciated, but not necessary, comments are always welcome.
This project demonstates how to prevent keystroke recording for your application. Actually it would be a keystroke recorder jammer, because it sends out a continuous stream of random keystrokes and validates these against the internal streambuffer.
This projects shows how to convert an RTF box into a dynamic Syntax Colorizer (like the VB IDE colorizes what you type). It uses a text file to build its list of keywords (are you writing your own scripting language?), which you can easily modify by adding your own list of words/commands. Included is a small subset of the VB language syntax to show an example. Routines are very fast, and account for quotes, and comments. Routine also sets keywords to proper case ("print" to "Print" or "backcolor" to "BackColor". Hope this is helpful to some of you out there - I have commented it heavily to help you if you need to make modifications, or you can simply drop the "Colorizer" module into your own projects and use as is (simply pass your forms RTF box and the colors of your IDE you want).