Results for "Volume: ASP_Volume2"
Just a little semi rant about ppl's idea of programming practice. If you want to be insulting go down the pub and insult the 20 stone rugby player at the bar, if you want to have a civilized discussion about this by all means post.
This is a little VB Add-in, to show all the FaceID's which are stored in the IDE. If you need to search often for an 16x16 Icon to use in your VBApp, or are often using / creating toolbars, this is an ultime Addin. you can search by 200 faces at the time or loop throug all possible icons stored in the IDE (3518 Icons!!!) This was originally an Excel Macro made by MSDN. On this rainy saturday afternoon, i thought i could write it as an addin. It also demonstrates how to create dockable toolbars within an Add in. Please vote for me :-) All the best, Paul Leyten
This Add-In creates a Cross Reference Listing for your VB Projects. The X-Ref shows all Public, Global, Friend and Private Data- and Code-Member definitions, where they are defined, their scope (Private / Public / Friend), and what they are: Sub or Function, Property, Event, Variable or Constant. Also shown are all references to these members with ComponentName.MemberName as well as Line and Column numbers. References to Components are also shown. The Cross Reference Listing may be exported to a color-coded RTF file (see screen shot) or to the Clipboard for subsequent pasting into the project or anywhere else. This is the second in the my suite of VB-Add-Ins and goes together with the Code Formatter. It will help you to professionally document your projects in a tidy and consistent way. Compile the DLL into your VB directory and then use the Add-Ins Manager to load the Cross Reference Add-In into VB. Fixed bugs with Resorce Files and Related Documents and added Icons as well as references to Controls, Libraries, and References.
This is an good example of Selection font dialog box. Which includes, Bold, italic, underline, font color, Font soze, Font name, etc.. Best one! thanks from Prakash.Y Please vote for me.
Shows an example of basic AI using Finite states like Seek, Flee, Rest. Idea is kind of brushy but any help to improve it would be great! Email at [email protected]. Please vote for me if its decent or if stinks too. just vote! and comment
Multi-Clipboard is a small application that run in the systray, and it turns possible the use of up to 4 clipboards. In this version, it works with text only. To use: Copy Paste Ctrl+C+1 Ctrl+1+V Ctrl+C+2 Ctrl+2+V Ctrl+C+3 Ctrl+3+V Ctrl+C+4 Ctrl+4+V * Only using Control+C or Control+V, the application is ignored. sorry, this code is not commented. Enjoy
This OCX records all mouse and keyboard activities for later playback with original timing. May (but should not) also be used as a stealth keylogger. Try playing back the attached TEST.RCD file :-).
This UserControl will take the existing Picture on any form and cut out the form wherever the MaskColor is found. This method is MUCH quicker than the pixel by pixel region creation I've seen on several sites. Features an AutoDrag property to allow the form to be dragged without a titlebar. Also features a PopupSysMenu method to activate the form's system menu at specified coordinates. No need to remove your Titlebar, TransForm cuts that out too, but it's still visible on the taskbar if you want. Comes with full source code and a demo project.
your mind is nuts! take a look ... lines or squares... hum.
Example to show how to synchronize painting to the Monitor's vertical scan frequency. Painting occurs invisibly during vertical retrace.
This function accepts a text-file as input and will output a colorized RTF String. Nothing new about that, but this program will generate even large RTF files very fast. You will see the difference if you try to colorize a 500kb XML file. You may add the modules to your code to add HTML/XML/XHTML source viewing capabilities. The code has gotten quite complicated, but the adjustable parts are documented. (changing colors, or the tags that need coloring). You can for example color all tags red. This is version 2. 2001-11-24 Changes: [-] Twice as fast. (500kb/s. on PIII450) [-] Added a cAppendString class instead of using Mid$. [-] Fast string space allocation by API calls. String pointer swapping. (Thanks to VBSpeed) [-] Now uses Regular Expressions to color the 'inside' of tags (THANKS to Gary aka RegX for the idea to use REGULAR EXPRESSIONS. You can download similar projects from RegX here on PSCODE) [-] Added a RTE control to speed up viewing. CREDITS AND COPYRIGHT: MartijnB ([email protected]) Money, rewards, bugs and .. can be send to me (please!) SEE README.TXT
[UPDATED] - Added three new Subroutines: LoadTEXT, SaveTEXT, and Clear. Also updated the sample application to show more of the functionality. Ability to Count Lines, Words, Characters, get the cursor position, Undo, ClearUndoBuffer, TopLine, BottomLine, UnSelect, LineLength, LineData, LineIndex, VisibleLines, IsDirty, ReadOnly (YES, it IS different from Locked), and others. It gives these abilities to make it easier to use these functions (some of which are found in the RichTextBox control) to a simple TextBox control. Read the README.txt contained in the ZIP (which is also included in the VB Project) to see how each property/function/subroutine is used. There is also a sample included.
I saw two versions of Tic Tac Toe game program submitted in two consecutive days, both of them did not have the AI ability (playing against the computer option) .. so.. I thought why not submit this code i wrote one year ago, it is nothing fancy. The code allows one player to play against the computer, the user goes first always, the program declare the winner or in case of draw .. a draw. I did not include two players option, but if any one is interested i can add it..
To generate Payslips
This is an application that allows you to connect to a database and view all the properties of a stored procedure and writes the VB and ASP code for you to run each particular sproc you are viewing. It is a pain to have to write wether a sproc parameter is inout or output and what type of parameter and what is the max length...etc. Just point to the sproc and all the code is created. There's even setting based on how you would like the code written for you.
This about screen scrolls text upwards, fading in at the bottom, and fading out at the top. You can insert this screen into any project as long as you also include the clsBitmap class. The class itself contains some very usefull code for any program using api graphics. Any feedback or votes are very welcome. Thank you
Teaches about using trig to move objects better and more realistically
Control IE through VB! Use the WebBrowser control in VB, and automatically navigate to sites, click buttons, fill in text fields, and more. As an example, I've included the 'NeoPets Helper' I made for my young daughter. NeoPets is a gaming web site that lets you have virtual 'pets'. You play various NeoPets games to earn NeoPoints, so you can feed your pets. However, my daughter's NeoPets were always starving because she couldn't play their games well. :-( So, I made this program for her. Anyways! Don't look at it for the NeoPets tips, look at it for tips on how to control IE through VB! It shows you how to navigate to various sites, wait until they load, click buttons, do generic mouse clicks and drags, extract text from the web page, fill in text fields on the web page, do 'screen scraping', press keys, and more. Feel free to use this program however you wish - but DON'T give me any credit, I don't want to know what you use it for. :-D
Completely destroy a file with no chance of recovery or trace. Use of CreateFile, FILE_FLAG_NO_BUFFERING (Open the file with no intermediate buffering or caching) FILE_FLAG_WRITE_THROUGH (Write through any intermediate cache and go directly to disk) and also FlushFileBuffers function to ensure that file buffers will be flushed! A must test and see.
This is The Best MSN Name Maker Ever!!! No not really, I cant back that up. But its still pretty good. Easy to use GUI with Elite {see Screen Shot). The elite talker is NOT my code and I cant remeber the author. So Many thanx to the dude who submitted that. Please as always LEAVE A COMMENT!!! and it will be most appreciated. :o)