Results for "Category: Miscellaneous"
This is an explorer band addon for IE/Windows Explorer (ie when you click on Favorites the little side bar that comes up is an Explorer Band) the example is a simple mp3 player that runs while IE is open so you can listen to mp3s while you look at webpages...you could change this into something more useful...vote vote vote!!! Read the README file first!!!!!! New Update!! added a readme and .reg file with instructions for adding a button to the IE toolbar for IE Webamp!!! Vote!! [new screenshot!] xTrin
this is a good listbox example for begginers it has load/save list,add item to list,remove item,clear list,kill dupes and add list to clipboard!! PLEASE VOTE FOR ME thanks!!! -Jim
Simply put, quickly add users to your local machine (NT/Win 2000). This code shows you how to create a user and set them as an Administrator. You can set nearly all the prefrences for adding a user... email me if you need help doing so!
When a user moves the mouse over a node in the treeview, the node is highlighted and the node text value can be passed. In the example, I pass the value to a text box.
this is a quick example of how to stop a password from being unmasked in a textcontrol. i threw this together early today as i was looking for a was to stop such mischeif and hacks. hey do me a favor coment and vote please. also please help try and improve this for the rest of the vb community.
print a single line using two fonts
This is a demo project showing how to draw a star of any size and at any angle on a Form or PictureBox. Also includes a geometry module with lots of useful functions.
This tutorial (in Microsoft Office .doc format) teaches some basic things about making a good app in Visual Basic, and about several basic functions, plus some stuff on data types. You'll learn lots of things to help you become a better programmer.
You know... Real resize function needs some information about what to do. It cannot be done without information. The program even doesn't know what I want until I give it!!! For example, Let's say you have 4 controls. First one is command box, so it should be moved on form_resize. Second one is text box, so it should be wider or vice versa on form_resize. Third one is multi-line text box, so it should vary on width and height both. Fourth one is a label below the third one, so it should move vertically. You can DEFINE very easily how your controls should resized according to the parent form's resizing. If you are doing a lot of forms(maybe over 30, 50, 100?), this function will be very helpful.
I noticed a lack of Novell application code on this site, so I created this example from code found on the Novell developer site. It retrieves the Novell user ID and tree name using API calls. Requires, of course, Novell, the Novell Libraries for Visual Basic found at http://developer.novell.com/ndk/vblib.htm and the latest Novell Client.
This code demonstrates how to convert a long value into a 32 bit binary value by using a function that is called recursively (it calls itself). A heavily commented demonstration application is included in the zip file that also includes techniques and coding methods that beginners may also find useful.
This code displays the date and time In digital format!!! very cool and easy PLEASE VOTE(good votes only) lol only joking
WaitableTimer API This demo demonstrates how to use the WaitableTimer API in Windows. A WaitableTimer is very similar to the Sleep API. You can use this API to pause your application for a set amount of time, without taking up any CPU cycles. The benefit of a WaitableTimer over the Sleep API is that WaitableTimers allow your application to still receive events during the wait, while the Sleep command will freeze your app, queuing all events until the sleep interval has expired. Demo This demo shows you the difference between a 5 second wait using the Sleep API compared with a WaitableTimer. You will notice that while sleeping your form will not respond to any events, such as minimizing the form or re-painting if the form gets covered by another window. While using a WaitableTimer, the app remains completely responsive to all these Windows events! Finally, this demo provides an easy to use class called clsWaitableTimer, which completely encapsulates the WaitableTimer API. All you will need to do to take advantage of this API is to call the method Wait, passing in the number of milliseconds you want to wait. Enjoy and don't forget to vote!
Class to perform serial number generation, and checking, useful for registering shareware. Some time ago I was searching for a serial number generator here in PSC, since I couldn't find a good one, I decided to make it one by myself... The algorithm isn't the best in security but try to break a serial without looking to the code first... This is my first submission to PSC, it was time to give back :). Please, rate it, i would like to know your opinion
Display the contents of any file in Hex/Ascii format. Code is well-documented and demonstrates uses of the Status Bar, Progress Bar & Rich Text Box controls. Updated program on 12/13/2000: Added a C Dll that greatly increased format speed of input file. Check HexView.cpp for a tip on how to debug a dll called from Visual Basic. I included Visual Basic statements in the HexView.cpp file so it serves as a tutorial for someone interested in writing a C Dll.
ListBox Functions 2001 Verision 2 - by: source This Example shows you over 33 different functions you can do with a listbox, the list is as follows: *-*Clear List *-*Remove Selected *-*Copy List To Clipboard *-*Kill Duplicates(Doubles) *-*Add To A List *-*Save List With Common Dialog *-*Save List w/Out Common Dialog *-*Load List With Common Dialog *-*Load List w/Out Common Dialog *-*Load System Screen Fonts To List *-*Load System Printer Fonts To List *-*Horizontal Scroll Bar To List *-*Sort Numbers(Score) In List *-*Click Event(msgbox) *-*Times List Was Clicked *-*Simple List To Text Conversion *-*Drag And Drop *-*Multi Select Drag And Drop *-*Search For String In Listbox *-*Load From Module 1 *-*Load From Module 2(customizable) *-*Load All Characters(255) To List *-*Two Listbox's (Select one, Allign Other) *-*Save Two Listbox's With Common Dialog *-*Load Two Listbox's With Common Dialog *-*Select Item In List, Show In Textbox *-*Move A Selected Item Up Or Down in List *-*Move Contents of One List to Another *-*Clear All Listbox's By Form Name *-*Save/Load Whole Form Check out the screen shot for details...and please vote. -source www.vbfx.net
[Source60v2beta2](final comming soon)This is the NEWEST UPDATE Released Feb 19/01 .ZIP OF THIS. AOL 6.0 Module with 340+ Subs/Functions, Some Updates Consist of Fading Subs, AddRoomToTextBox/ListBox(buggy cause it doesnt gather names correctly), Online, Form Options, Chat Room Scrolls, Ascii Shop, Time, Waitforokorroom(for room busters), and ChatScanning Functions, SNFROMLASTCHATLINE, etc... CHECK DIS ShizNiz
It gives you possibility using all existing clipboard formats in VB. It is designed as ActiveX Control so you can use it in ASPs as well. Standard implementation of: - plain text - rich text format But also: - Biff5 - OEM text - DIF - UNICODETEXT - SYLK (The most powerfull) - CSV
Windows XP ships with Common Controls version 5 and version 6. By default all windows apps use version 5. In order to force your app to use version 6 your application must have a manifest. It must also correctly call InitCommonControls(). A manifest is a text file with an xml script similar to this: ------------------------------------------------------------------------------ Your App Description ------------------------------------------------------------------------------ If your application is called 'MyApp.exe' then in the same directory you must have a manifest file called 'MyApp.exe.manifest' otherwise WinXP will use common controls v5. Instead of having a seperate manifest file, this project inserts the manifest into the executable file, and therefore, safeguards the manifest file from deletion or corruption.
I know there are a lot of ScreenSaver examples on PSC, but I have not seen a complete one. This example includes: Thumbnail Preview Password Protection Password Change Set Up The actual screensaver is nothing special, so please don't comment on the excellent graphics. I can only test on WIN ME so if this code does not work with other OS's, then this is the feedback that I want. I know of some probs with NT and believe I have handled those, but I can't test that. I am not looking for votes, just feedback.