Advertisement

Results for "Category: Miscellaneous"

7_2009-2012 #224263
Fool Your Friends -- for beginners

Make your friends think that their harddrive will be formatted. You print "Hit Q to quit:" and when they try to hit 'Q' a 'Y' pops up... Of course, we won't really format or anything. Vote if you enjoy the code :) BTW, to really close the program you must hit ESC.

7_2009-2012 #224265
Beginner Examples - how to format output

A couple of simple examples of ways to format output using iomanip; ie: set width, right align, left align, change fill character

7_2009-2012 #224278
How To Create A True Programming Language Version 2

Source code to SrcTrans v1.65; Download to SrcTrans v2.0 Final; example TFF and InputFile

7_2009-2012 #224294
Long To Binary using Recursion

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.

7_2009-2012 #224296
An easy way to do a Clock and Date!!!!!

This code displays the date and time In digital format!!! very cool and easy PLEASE VOTE(good votes only) lol only joking

7_2009-2012 #224300
WaitableTimer API

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!

7_2009-2012 #224304
Serial Number Generator

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

7_2009-2012 #224309
Basic Date & Time Script

This code only puts the current Date & Time on your website. IT's very simple, BUT I haven't found it anywhere else on this site, so I decided to put this script up for you!

7_2009-2012 #224325
HexViewer

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.

7_2009-2012 #224332
A 0 Calculator

This is just a calculator i made a while ago, thought i might submit it for other people to get ideas or somthing?!?! Please check out my PhoneBook program, please vote, i will also be uploading a program in two weeks time that is going to be an awesome front-end to an Access DB that i am designing for a college, so come back and check it out! PS THIS IS THE RIGHT ONE THIS TIME. THE LAST ONE I UPLOADED WAS AN EARLIER STAGE IN THE DEVELOPMENT. HEY! ACCIDENTS HAPPEN

7_2009-2012 #224335
[A+ ListBox Functions 2001 v. 2] - *VERSION TWO*

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

7_2009-2012 #224336
[A+ Source60 - AOL 6.0 Bas [UPDATED v.2_Beta2]

[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

7_2009-2012 #224341
A Word Statistics Tool

A Word Statistics Tool to count and report words statistics of an input file. The output is displayed in alphabetical order of the words with the counts. Demonstrates a friend class, operator overloading, file iostream and text parsing. It processes 337KByte text file in ~3 seconds on AMD 550MHz. And there's no limit on the length of each line - a benefit of using STL string. The zip contains a ready-to-use console app along with the source and a make file. The source code should be compilable using any compiler that supports STL, and default template parameter values.

7_2009-2012 #224378
_ A Task Manager for VB.NET, displays processes on local / remote computer, can end / terminate them

The code lists ALL programs running on a local, or remote computer, and gives you the option to close or terminate them. It was originally styled like the XP/2K task manager, but i removed some of the performance tabs etc for simplicity. Enjoy! tHe_cLeanER

7_2009-2012 #224390
All Clipboard Formats

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

7_2009-2012 #224400
Another BrowseForFolders

This version demonstrates how to use the new style dialog (WinMe, Win200 only), and start at specific paths. I am sure there are better ways of doing things than the way I have done some of it, but I don't know that way. Very little comments, but I think its easy enough to follow.

7_2009-2012 #224404
Complete ScreenSaver

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.

7_2009-2012 #224405
XP Manifest Inserter

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.

7_2009-2012 #224424
Form Scrolling

Simple example of how to scroll objects on a form. Uses standard VB controls.

7_2009-2012 #224437
VB Translator

That is an example of as we can use a database to keep words of two languages. VB Translator translates from Português(Brasil) to English and from English to Português(Brasil) a word per time. VOTE FOR ME PLEASEEEEE... :) LEAVE A FEEDBACK!!!

Languages
Top Categories
Global Discovery