Results for "Volume: ASP_Volume2"
2 controls that vastly extend the cababilities of Visual basic. *** VBEventWindow - provides a simple subclassing control. Events: - ActiveApplicationChanged, fired when your app gains or loses user focus - LostCapture, fired when your app gains or loses the capture - KeyPressed, fired when any of the keys are pressed - LowMemory, fired when the system is running low on memory - Move, fired when the form is moved - VerticalScroll, HorizontalScroll, fired when the form scrollbars are set - WindowsSettingsChanged, WindowsINIChanged , fired when the windows environment settings are changed - NonClientMouseMove,NonClientMouseDown,NonClientMouseUp,NonClientDblClick, fired when a mouse event occurs in the non-client part of your form - MinMaxSize, fired when the OS wants to know what size to make your form either in response to a minimise/maximise command or when the user is dragging the resize box. - MouseOverMenu, fired when the mouse is over a top level menu - WindowMessageFired fired for all the other windows messages Methods: - InvalidateRect, Sets part of the form invalid to indicate that it needs to be repainted Properties: - ClassName, returns the windows class name fo the form - DeviceContext, returns the device contect of the form (for graphical operations) - HorizontalScrollbar, VerticalScrollbar, sets or unsets scrollbars on the form - TopMost sets the form to float over the top of other forms - Transparent, makes the formclient area invisible Use: In the form load... Private Sub Form_Load() Me.VBEventWindow.ParentForm = Me.hWnd End Sub *** VBSysTrayCtl - Provides a simple control to allow your application to use the SysTray Events: - MouseMove, Fired when the mouse moves over the tray icon - MouseDown, Fired when a mouse down event occurs over the tray icon - MouseUp, Fired when a mouse up event occurs over the tray icon - MouseDblClick, Fired when the user double clicks the Tray Icon Methods: - ShowIcon, displays the icon in the system tray area - Hideicon, removes the icon from the system tray area - Refresh, updates the icon displayed in the system tray area Properties: - Tooltip, the tip that is displayed if the user hovers the mouse over your systray icon Use: In the form load.... Private Sub Form_Load() Me.VBSysTrayCtl1.Tooltip = "Merrion Computing" Me.VBSysTrayCtl1.ShowIcon End Sub Private Sub Form_QueryUnload(Cancel As Integer, UnloadMode As Integer) Me.VBSysTrayCtl1.Hideicon End Sub
Ever wanted to add an item to the right click context menu that you get in windows. you know, the one that you get if you rigth click on a file !! well heres how to do it.
Code Helper 2001 is a way of viewing code stored in a file. You have the option of syntax coloring. You can add information or/and a picture to each seperate bit of code.
This program allows you to quickly and easily search eBay auctions to find the item(s) you want without even having to open your web browser! To use just fill the fields in and select your options from the combonation boxes, then click search! As easy as that! If you like my code and would like to use it in any of your app's please vote for me and leave your feedback, thank you.
Ever wanted to make a cool shaped form....well....this code is for you. Just look at the screenshot. Oh and, don't feel obligated to vote!Thanx yall!(inspired by previous PSC entries.)
This VBA Automation demonstration assumes that Microsoft Excel 97 and Access 97 are installed. It hasn't been tested yet with Office 2000. My work required an Excel application that could generate charts based on information in Access. After searching PSC I came upon a great example by Joe Miquel which I've built upon. Once you've started the application all you will need to do is Click on the Excel Button on the Access Form. Feel free to expand and to innovate the code. Many thanks to PSC and to Joe Miguel for a great idea. Hope you like it.
It is an example how to make a popup menu using a file (popup.ini) like mIRC. This code is fully commented. I'VE ADDED SUPPORT TO UNLIMITED SUBMENUS AND SUPPORT TO BACKGROUND. I'VE INCLUDED THE SOURCE OF SSUBTMR.DLL IN THIS PROJECT. SO IT ISN'T USING DLLS. THIS IS A GREAT CODE GUYS. PLEASE VOTE FOR ME IF YOU LIKE IT. AND LEAVE A FEEDBACK.
This is the first thing on PSCODE like it. It calulates the actual resistor's value by calulating its color code. Uses 4 cases!!!
Haven't seen it done yet until I did it myself. I asked around if there was code to create a 'prompt' and all I seen was modifed multi-line boxes. This is not a Dos window, its a windows window. - this is as real as it gets... If you need a GUI windows command prompt... here it is, Best WINDOWS command line code here... Please: I am going to use this code for a Business Basic interpreter, if you find any bugs or make it better, please let me know!!! I am always looking for improvement here!! Code is FREE for all...
Reportgenerator similar to crystal reports or list and label. at the moment, it´s documented in german. it uses dao to print reports out of access-databases (either with or without print-preview). it should be no problem to migrate to ado to get access to any type of databases.
A small program that lets you take screenshots. By pessing ctrl+F9 the cursor will change to a crosshair and you can then drag select the region you want to grab. The image can then be either saved or printed.
Introduction: Simon' CD Player is a Microsoft Windows CD Player Clone. The CD playing functions are written using "mciSendString" (API only). Please Vote and leave comments!
Lightning fader (updated) creates horizontal or vertical gradients on object supporting the Line method. It's possible to set 20 fade point with different colors (randomly assigned). It's VERY FAST: it draws a gradients on a maximized form, resolution 1024x768, on my P500 in less than half a second; and (because i have the Learning version of VB5 and i cannot use native code optimizations) it's not the best performance... This microscopic upgrade MAY work (although Bill's feedback was detailed, I said MAY because I'm not sure of having precisely located my error. TRY it.
This code is for people who use a linksys router for internet access via a cable or dsl modem. It will email the WAN ip when it changes, to email addresses in a database. It has modified code from the automailer v1.0 on this site. It has been requested of me from other people who use the linksys routers. It could be adapted to grab any info from a webpage and email the recipients when that info has changed.
Code below demonstrates how to work with DataReport. You will need: 1. DataEnvironment 2. DataEnvironment Command that receives parameters. 3. DataReport with; a. Detail section named "Section1"; and, b. rptlabel named "lblCopy" 4. Form with a button. Code below should be put on click event.
It calulates the actual resistor's value by calulating its color code. Now improved with band color changing! Uses *!*NOW 8*!* cases!!! There is a tip included.
I have noticed recently, how many people have been going into the discussion forums and asking how to use databases. well, this is a very simple example of how to manipulate data within databases Functions include add, edit, and delete records, and a search by surname. this code is fully commented. please comment on this upload, as i would like to know what you think, and if you think there is a better way of doing certain things, argue it out all you like! daz
Shows how to use API to make system speaker beep, distort the beep, Keyboard, and beep according to mouse movements. Later I will add Recording features. The pc speaker is the most universal sound hardware.
A nice 10 second game project. Just press a key to drop bombs on the terrorist camps...well the webding houses anyway! What more do you want from a 2K download.
App Closer is a small program which displays all of the open apps on your computer and allows you to choose one to close. This is my first submission, so don't blame me if it's a bit lame. Thanx.