Advertisement

Results for "top"

6_2008-2009 #201932
Catch robot and generate dynamic metatags

Use this include file to catch robot queries to your page and generate the appropriate metatags dynamically. With this code, I have put my site (www.stindustriel.com) in top 10 on Google, Altavista and InfoSeek. Hope you will envoy.

6_2008-2009 #202051
SysTray With Popup Menu And OnTop

Put an icon in the system tray with popup menus without any ocx or dll. Updated to include the option of having your program be on top of all others, very simple to use. I'm not really worried about votes, but if this code helps someone new to Visual Basic I would like to hear a comment if it's not too much trouble.

6_2008-2009 #202313
Snap you app to the side of the screen (like ICQ does.. Resizing desktop.. not just moving the form)

This code uses the SystemParametersInfo API to change the work space area of the desktop. You can make you app 'lock' to either top/bottom/left or right of the screen very simply.

6_2008-2009 #202316
Get a hWnd's Icon Handle

This basicly tries to find the small icon for a window (the icon on the top left). Note: it returns the HANDLE to the icon, good for using in API calls. Also, I have looked around and there is NOTHING about this posted anywhere. That is why I'm posting it. (this is part of my current app...)

6_2008-2009 #202484
Lock-Out

This will stop anyone from accessing your computer. Compile this into an exe and remember that the password is password - DO NOT forget. If you forget the password then there is no known way of getting back in. You have been WARNED!!! This works by: hiding your cursor so that the unauthorised doesn't know where it is, puts the cursor in the top left corner of the screen and makes it stay there, fools the system into thinking the screensaver is running therefore disabling Ctrl+Alt+Delete, Alt+Tab and the Windows Key. If you put in the password wrong 3 times the system is forcefully shutdown. There is no way of getting round this that I know of without having access to the system in the first place.

6_2008-2009 #201110
Nuke MP3 Player

Its an MP3 Player that uses the windows media player control, loads of features including: ~Skinnable ~Will read ID3v1 Tags ~User can find out bitrate, frequency and if a file is stereo or mono ~Runs in the system tray ~Balance controls ~Volume controls ~Save/open playlists ~Add whole directory/single files to playlists ~Drag drop files into playlist ~Tells you the length of a mp3 file, and how long its played it for ~Displays song name ~Seeking bar ~will popup little (msn style) windows from task bar on new song, telling you the song title ~Repeat one, all, random, or normal play modes ~Can change text colour ~Can be set to be always on top ~Playlists can be cleared/files can be removed ~Can control playback from tray ~Detects if a soundcard is present

6_2008-2009 #201383
CS Bandwidth Monitor - UPDATED -

UPDATE(Included stay on top option, fixed some minor bugs and added auto apply to settings. This is beta 2, see pic) This program has code from antoher tool I have on this site called CS Internet Tools. But the main purpose of this program was to teach myself much better UI. There are alot of nice things about this program such as the form that will blend into your desktop so it looks like it is part of it. The stats form that will "Roll" out of the main form. Really not to hard to do. It will remember where you have your forms at startup, has many options and is very custmizable. A large part of this code came from other source code not by me. All props go to them. I hope this helps anybody who needs it. Vote if you like. Remember the main purpose of this was to teach myself UI. Anyways I hope you do like it.

6_2008-2009 #201439
Jii´s Task Manager

A complete window manager. It captures any open window/application and returns the windows caption and handle (hWnd). The app let´s you hide, show, restore, minimize, maximize and close any open window or app. It also let´s you change the window or applications Titlebar to any text you like. It also makes it possible to change caption of controls belonging to any open application. Newly added: You can make any window "Stay on top" or Enable/Disable it to make it reject any input by the user or other apps. There´s also a function wich shows if the selected window is responding or not. It´s also capable of hiding or disabling the Taskbar, Taskbar Task List, System Tray, System Clock, Quicklaunch and the Start button.

6_2008-2009 #201576
ElitePad

ElitePad is complete Text Editor. It has all standard and advanced functions needed by Text Editor. It has more functions than Windows WordPad. Functions that ElitePad now have: 1. It is fully commented so that beginners can learn 2. Opening and saving files with formatting (RTF Format) 3. Powerful find and replace function 4. Faster loading of fonts with EnumFonts API 5. Go to function (to go to specified line number) 6. Custom MsgBox 7. View Document Properties 8. Menu Highlight Help 9. File Tree for viewing files like Explorer and opening them 10. Multi select open dialog 11. Insert Picture, Time and Date and Text file 12. Copy, Rename and Move files 13. Insert ANSI symbols 14. Access to registry 15. Stay on top function 16. HTML Help 17. OLE Drag & Drop 18. Line counting 19. Associate files with ElitePad 20. And many, many more. P.S PLEASE VOTE FOR ME!!!

6_2008-2009 #201604
Occupied Space concept used to allocate 100 labels randomly w/o overlapping (no API)

Populates form area with labels, using the 'unoccupied space' concept, instead of intersection. Any added item, while populating the screen, takes a cell from the 'unoccupied space', resulting in a much faster process than intersection. Nice to see. +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ idea proposed by Gunnar g68_se@yahoo.se, SECOND EMAIL: Pietro, one more thing: What i really, originally was thinking, was to be able to 1. Press a button, and choose a number to allocate, let's say 20 labels, then 2. Press the button again if one likes, and chose another number to allocate, let's say 12. .. .. 3. Press (any) more times, until the MaxObjectIndex is reached (or, when it's not possible to allocate more without collision). And then the question (from my earlier mail) would come (yes/no/cancel). The program would know from the first time, where to find the "unoccupied space". I guess this would take some kind of storing the occupied spaces or something if i should be able to use the code, it has to be done with (invisible) objects placed at design-time (100), not loaded :) I wish you many votes at PSC, i know you got mine ! /Gunnar. FIRST EMAIL WAS (which originated my post: How to allocate HUNDREDS rectangles (labels, images...) without overlapping, no API!): Hello Pietro ! I was studying your excellent code-example of the rectangle-Intersections. I got inspired by it, and i have a problem in my application, but i do not know how to code it, i was thinking maybe you could help me. * I have an array of labels * I also have a function to place the labels out randomly over the screen Private sub Place_Labels Dim lIndex As Long Randomize timer For lIndex = 0 To cmd.Count - 1 cmd(lIndex).Move (Rnd * (ScaleWidth - cmd(lIndex).Width)), (Rnd * (ScaleHeight - cmd(lIndex).Height)) Next End sub This procedure sometimes places the labels "on top of eachother". 1) I would like to add some code to prevent collisions, so that every labels is placed on a separate position. Maybe your code could help me here, but i do not really know how to do this, i think i'd have to go through all of my labels, and check if there is already a label placed there, but i have no idea of how to code this. Can you help me ? thanks in advance ! Best regards from sweden, Gunnar. ++++++++++++++++++++++++++++++++++++++++++++++++++ This program has been written down in Visual Basic 6. I hope yow like the effort, have fun :)

6_2008-2009 #202494
CalculatorApp

I found a calc on PSC, Herman Lui´s, to which I added some functions. Such as, listbox to display your calculations/inputs, print receipt, ability to change layout during runtime. F-key, percentage-key, VAT-key functions. Allways on top. Help and aboutform. The objctive was that the user should be able to operate the calculator by using the keyboard. Of course the mouse works to. This Calculator is aslo included in my Financial Analysis App.

6_2008-2009 #202536
Form Background Color

Background coloring tool for shading forms and fading a color from top to bottom. Colors are chosen using a color slider.

6_2008-2009 #202640
Multi Column Combo Box

I created this control because i couldnt find anything else that created a multi-colum combo(drop down) box. This control is driven off a database query and is fairly straight forward to use. Once you have extracted the zip file into a directory you can look at the file /structure.txt. This file explains the directory structure and where everything is located. I hope you enjoy the control, i know i have seen numerous requests for one. And remember; Please vote! Thank You :) Purpose: The purpose of this widget is: 1. provide a multi column drop down box to users 2. provide a combo box's that doesnt sit on the top of a web browser so menus can flow over the control 3. provide a combo box that can allow user input

6_2008-2009 #201652
Talking IE

I am developing this application for a physician who has lost his vision. This application is just a prototype, this browser will talk, from desk top. I have a request to viewer, if you wish to join and help, please email short stories. I shall thank his nephew who emailed me and my son who thought of sending a story that can talk. Kids have wonderful ideas, I wish I have their mind to think out of the shell. Win 98 users need to have Vtext.dll "CLSID:2398E32F-5C6E-11D1-8C65-0060081841DE" it comes with win2k prof/server. Also included in Microsoft Speech API 4.0a. The First para responds to onmousemove. Once you have tested with your mouse, click yes if you get activx warning. Please press F5 and click on Read Text button. AudioPause did not work, I used StopSpeaking to stop audio. To start again, click Read Text. My regards to all viewers.

6_2008-2009 #201690
SysControl ! 2.0

This is a program that will let you show, hide, alter text, capture a picture, change the parent, kill, close, enable, disable, get info on, minimize, maximize, restore, capture a picture of, make them stay-on-top, send a message to, edit the window style, and flash the title bar on almost any target! The target can be selected by dragging the mouse from a button to the target or by entering a HWnd! It includes many more features and a complete help system. It also will list all the programs running on your system, will allow you to change their priorities, and will give you info on them too. The program can also perform a screen capture and can even highlight HWnds directly on the screen! It is excellent to learn by, and it's code is thoroughly commented and clean. Also, I would be grateful for any votes you feel fit to give me. I would appreciate them a lot, believe me!

6_2008-2009 #201710
Flickerless, Smooth Animation using pure VB with No OCXs, DLLs or ASM!

Added New - Fully Functional Screensaver with source using my animation technique! Also added one more new demo - Geometry. Flickerless, Smooth Animation using pure VB with No OCXs, DLLs, ASM or DriectX. Pure VB. This Entry gives you the code that I created and have used in all of my screen savers for years. The code included is pure VB code (with just a few APIs declared and utilized). Most of the code is in the "CodePage.Bas" module. This contains all of the initialization, variable definitions and declarations and animation code. If you like it, give me a vote or two. If I get votes, I'll know you are interested and I'll create a complete documentation package around this. Demos included are... Demo_BouncingBalls.exe - About 30 colored balls bouncing all around the screen (Source included). Demo_BouncingSantas.exe - Bunches of little Santas practicing thier jumping for the upcoming holiday season. Demo_Geometry.exe - Bunches of geometric images floating around the screen. Demo_UFO_ScreenSaver.Scr - Aliens have taken over your desk top. All Demos have full source code in zip format. UFOsaver.scr - A complete, fully functional screensaver using my animation techniques (source included)!!! Thanks. Doug Puckett ( dpuckett@thelittleman.com )

6_2008-2009 #201804
Quick (Q) Navigator Ver 1.1 (Updated): The BEST WEB BROWSER ever posted on PSC

(Now the links are working) Q Navigator Ver 1.1 is an updated form of my Web Browser, which has the best features (and more) of all browsers. a) Better GUI, b) Better looking progress bar, c) Auto complete address, d) Select all, e) Find, f) text size, g) scrolling news, h) source, i) better looking history & favorites, j) mail, k) update, l) internet options etc. etc.: Other than ALL THE FUNCTIONS IN INTERNET EXPLORER, 1.You can store/jot down any required information while browsing, 2.It has a unique SEARCH facility where you can just give the word/sentence to search for and give the preferred search engine (you can choose to search from the best search engines!!!), 3.It has a "links" button that shows the number of links on the web page & the different links on the web page you are viewing, 4.Five configurable shortcut buttons: News, Download, Mail 1, Mail 2, Search, Easily configurable, 5.Scrolling News on the right top side when you are connected to the Internet, without losing any bandwidth 6.The best of all, this browser has a feature to backup and recover all such information when it crashes. When Q Navigator crashes (due to windows problems/software problems / etc.) Just go to Help > Help!!! And run the debug program .You can either Start debug program (in which it replaces corrupt resource files) or Only recover the browser (in which it recovers the lost information / URL's), which is useful for retrieval of lost web pages after crash. IMPORTANT: See "Readme.doc"

6_2008-2009 #202032
Clockster XP....Almost There

Updated 8 March. Added the ability to cycle through the menu options on the settings form using the enter key and the up/down arrow keys. Only works when at least one item has the focus which is always the case when the form loads. Also, removed X offset property and implemented Y offset so you can adjust the vertical position of the clock and Volume slider. Also added the ability to adjust the height of the Volume slider. Just didn't need the x property because the control automatically centers on the X axis. As for the Y axis, I wanted to give the user absolute control over placement so I added Carles P.V.'s updown control, with his permission of course, to allow the user to position the clock/slider where they want. They can even be reversed and you can put the slider on top and the clock on the bottom if you want. I also added sound and the tooltip when using the mousewheel to adjust the volume. Still implementing some validation and error handling so don't get too extreme with adjusting the volume slider's height. Also working on some bullet-proof error handling and the addition of date/day display. Keep the suggestions coming...

6_2008-2009 #202912
Pageballoon **DESKTOP TOY!!!**

This is PageBalloon (v 1.1.6), its your very own desktop toy, you can chuck as many balloons onto your desktop as you desire, they are all skin mapped with ex acquaintances of mine. Its a must see, and a good screensaver replacement. they can wrap around the screen to float off the top and come up from the bottom again, they can also be kept ontop at all times. I have improved the movement function a little to cut processing time and speed it up.so download the code, comment on the code, and vote the code!!!

6_2008-2009 #203094
Dockable Statusbar within MDI

Shows how to dock a statusbar control to the top-left-right-bottom of an mdi form, or make the statusbar detatch from the form and 'float'

Languages
Top Categories
Global Discovery