-
@#@
Prompt Command Line
Simply command line input. This code display the command shell for winNT-Win2yK and Win9x. a comand must be inserted and this comes brought back in the shell.
http://www.planetsourcecode.com/vb/scripts/ShowZip.asp?lngWId=1&lngCodeId=31844&strZipAccessC ode=tp%2FP318441421
@#@
-
@#@
Proof Of Optimizations
Based on Article Speed up your app' by Paul Guerra. Demonstartion of his arguments. The test structure is an expansion of code snippet from Jeremy van Dijk in Comments on the article. Design of code allows you to quickly incorperate further tests if you want. Can't stand endless nyah,nyah comments about is/isn't so built this demo. I suspect that where the demo contradicts Paul's article,(not many) it is either becuase of differences in IDE vs compiled running or my test is too simple to really give VB a workout. Have also included most of the other optimizations suggested in comments on the article. Any Votes to Paul Guerra for inspiring me to sit down and code rather than just assume. Zip is only 5k so try it.
http://www.planetsourcecode.com/vb/scripts/ShowZip.asp?lngWId=1&lngCodeId=43100&strZipAccessC ode=tp%2FP431001872
@#@
-
@#@
Proper Error Handling To Help Ease Squashing Bugs
This is to show you the proper way to use error handling to make it easier for your end users to help you locate your bugs, this makes bug squashing as simple as possible... I didn't bother commenting cause the example is so simple the newest of newbies can relate to it & would actually be a waste to comment this. *lol*
http://www.planetsourcecode.com/vb/scripts/ShowZip.asp?lngWId=1&lngCodeId=29848&strZipAccessC ode=tp%2FP298486121
@#@
-
@#@
Progress Bar Example
Another boring / funny / unwanted / cool progress bar example, using the standard one Microsoft so kindly provided us with.
http://www.planetsourcecode.com/upload_PSC/screenshots/PIC2002821124473285.gif
http://www.planetsourcecode.com/vb/scripts/ShowZip.asp?lngWId=1&lngCodeId=38153&strZipAccessC ode=tp%2FP381531582
@#@
-
@#@
Progress Bar in 10 Lines
Simple Progress bar only in 10 Lines of code.
http://www.planetsourcecode.com/Upload_PSC/ScreenShots/PIC2005481612194093.jpg
http://www.planetsourcecode.com/vb/scripts/ShowZip.asp?lngWId=1&lngCodeId=59896&strZipAccessC ode=tp%2FP598964144
@#@
-
@#@
Progress bar running in Status bar
this application shows u how u can put a progress bar in u r status bar. u can use this code in any type of u r applcations. its soo cool.
http://www.planetsourcecode.com/Upload_PSC/ScreenShots/PIC2004121038522694.jpg
http://www.planetsourcecode.com/vb/scripts/ShowZip.asp?lngWId=1&lngCodeId=57480&strZipAccessC ode=tp%2FP574805312
@#@
-
@#@
Progress Bar Sample
This is just a simple progress bar for beginners with a Go and a Stop button (View screenshot)
http://www.planetsourcecode.com/upload_PSC/screenshots/PIC2002512127342492.JPG
http://www.planetsourcecode.com/vb/scripts/ShowZip.asp?lngWId=1&lngCodeId=34320&strZipAccessC ode=tp%2FP343203105
@#@
-
@#@
Progress Bar with Timer
This code shows how to hook a progress bar up to a timer accurately. You can stop and resume from where you left off. I designed this code for a game I plan on designing. It shows the percentage and it is easy to change the max value and increments of the progress bar during run-time. Please feel free to use the code as you like. I would really appreciate it if you can leave some feedback and vote. Thanks!
http://www.planetsourcecode.com/upload_PSC/screenshots/PIC2002421154712170.jpg
http://www.planetsourcecode.com/vb/scripts/ShowZip.asp?lngWId=1&lngCodeId=34009&strZipAccessC ode=tp%2FP340095242
@#@
-
@#@
Progress Bars Without Controls
Shows how to make progress bars without using activex controls
http://www.planetsourcecode.com/Upload_PSC/ScreenShots/PIC20051151947161477.JPG
http://www.planetsourcecode.com/vb/scripts/ShowZip.asp?lngWId=1&lngCodeId=63171&strZipAccessC ode=tp%2FP631716911
@#@
-
@#@
Printing in Visual Basic
Printing something from a richbox... It is pretty simple. Remember this code is for starters it's only to show how you print from a printer, no advanced code or anything like that. If you don't want to downloa'This code was made by: Even Knutli 'You can use the code to whatever you want 'Please Vote 'Good luck Private Sub Command1_Click() 'Whatever you do from the richbox size it wont get to 'the printer with that size you wanted it so 'type the fontsize in this: Printer.FontSize = "20" 'If you want to chance the fonttype just do it like this: Printer.Font = "Arial" 'To call the printer to print what you have wroten down Printer.Print RichTextBox1.Text 'Now you have called the Printer it cant stay that way or it wont go 'so you have to kinda end it Printer.EndDoc 'Now it will print, you might also print when form loads 'just do it the same way just under Form_load() 'Please Vote End Subd you can take a look into the input.Hopes it helps, Please Vote Thanks
http://www.planetsourcecode.com/Upload_PSC/ScreenShots/PIC2005821615213884.gif
http://www.planetsourcecode.com/vb/scripts/ShowZip.asp?lngWId=1&lngCodeId=62048&strZipAccessC ode=tp%2FP620480318
@#@