Results for "Volume: ASP_Volume2"
SILLY OF ME TO FORGET UPLOADING THE .ZIP FILE. THIS ONE IS THE FILE
My .bas file has 199 functions/subs. It includes encryption, advanced math functions, some aol stuff, string manipulation, file manipulation, etc. Please, vote good for me. Oh yeah, and please give me some good feedback.
This code allow you to show 3ds file in a picturebox without dll, ocx , directX, glide ecc...All vb code! And it's flicker free! You can translate and rotate the solid!
A smiley, actualy a square face, follows the cursor around! great to learn a couple of WINAPI functions!vote 4 me!
GIF FRAME SPLITTER,Split Frames and Save As Single Frame GIF FILE!
first, my apologies for my bad english, hehe. this example demonstrates how to accept only numbers in a textbox control with ONE LINE OF CODE AND FAST CODE. * MUST SEE *
A very great HTML editor! It's a IDE for HTML, like VisualBasic but for HTML and JS... I've made it for Fun... Test it! (thank to Newisoft for the rezise code!)
Introducing Insight Personal Planner for Windows XP. With this program you can schedule unlimited alerts, set it to alarm clock mode, or even play your favorite mp3 as an alert. Version 2 will have, daily, weekly, monthly or yearly alerts. will also include an address book. This project currently uses my custom xpControls. but if you want real controls, check out my other submission "XP Manifest Maker" you can use this as a tutorial on how to create you own.
first, my apologies for my bad english. hehe. i updated my code to accept only numbers in a textbox. removed the bug of the another code. sorry by the another. hehe. but this code work
Numeric textbox with complete control, including number of decimal places, negative number acceptance, number and position of the negative sign and the decimal separator, automatic replacement of the decimal separator according to the users PC international settings.
***UPDATED Now you can also parse HTML table and convert to RTF*** OCX that allows you to convert HTML text directly into RTF code in a fly. Just set a property and call the method,You will get the RTF code in just two lines of code ! Currently supports all the formatting options. Images and tables will be included in future release. Keep checking for future updates. Send your valuable suggestions and comments to [email protected] Any bugs in the OCX can also be reported to [email protected]
So... You want to add Windows XP's Visual Theme support to your own applications? No problem with this code (you can test this only if you have got Windows XP on your computer!). The secret is the existing YourApp.exe.manifest file in the same folder! Try it out. Download my code, check the .manifest file and add this to your own application. ^_^... Another possibility is that you add a resource file to your application with help of a Resource Hack - program. Maybe it's possible with inserted .RES files too, I'm not sure. Ah, before I forget: You can use .manifest files for EVERY application that uses the Microsoft Common Controls (comctl32.ocx), so you can use this code with VB3, VB4, VB5, VB.NET, VC++, Delphi, etc. too. Just try it out. Have much fun with this code. ^_^
This code snippet is actually a Macro for Outlook 97, 98 or 2000 but can be easily instituted into VB by creating your Outlook.Application object to completely automate the mod from VB. It could also be used with MAPI mail as well.
This tutorial shows you how to create a basic screensaver with visual basic. You will learn how to add password boxes and the source code is included with the tutorial in word 2000 format(Works with word 97 too :')).
Complete wholesale product inventory database program. Combines Access, DAO, and Excel to manage inventory, write reports, and print forms. I wrote this for work so you might as well have the code.
A different kind of INI because I don't like the ini's that are so easy to use! example: @ Header1, Value1 @ Header2, Value2 @ Header3, Value3 @ Header4, Value4
With this application you can see how DAO works. You can completely control the database with this code, you learn how to read, insert and delete things from a database with no data controls or whatever :-) And also a great deal of the ListView control is used for this app. And it is completely documented and explained!!
Instant Messenger app with text-to-speech functionality.
UPDATED!! Windows XP manifest maker for ALL EXECUTABLES. this means any program that wasnt created to use windows xp visual styles now can. UPDATED: added right click context menu, and ability to restore any changes you made, and also made it look xp and added tabs.
This code performs a collission-detection calculation between two circles using some really basic trig. Usefull for games... Performance much higher than traditional circle-collision detection... only takes 45% the amount of time to do the same thing as most circle collision detection functions!!! thats over 100 percent performance increase. Just thought it'd be usefull to game programmers and such... I bet your wondering "What did this guy do to speed things up so much?" Well thats plain and simple!!! I just replaced the (A)^2 part of the equation, where A = Y2 - Y1 or X2 - X1, with A * A, because its ALOT faster... just doing that, AND storing A in its own variable, speeds things up ALOT, it only takes aprox 45% of the time to do the same collision dectection task!!! Woopty-Dooo!!!! =)