Results for "Volume: Java_Volume1"
I was inspired by Clint's vcTrayAlert Control at http://vbasic.iscool.net/ It was cool but he did not make the source code available. So I decided to write my very own control. Along the way I have added many cool features. I have used a gradient-drawing class that I found on PSC by Kath-Rock. I made a help file for my control and as you will easily figure out, I have invested alot of my spare time into this large project. It is made free but make sure to check out the license agreement and copyright info. All I'd like to ask you is your encouragement - IF you DO like my control. So I'll be waiting for your feedbacks and emails :) Oh, I'd like to ask you for one more thing. Help me debug this control, report any bugs you might find to me on my email addres. Thanx. KEYWORDS: MSN Style Tray Alert Control, ActiveX Control, User Control, Play WAVE WAV File Resource, Always On Top, Top Most, Transparency, Transparent, Fade, Mask, Borders, Gradient, Error Handling.
I have designed this code to check a subnet range for the sobig.f virus. If it is found, the virus will be removed from the machine (Please Vote) - Sorry, I found a bug which is now fixed
It mostly reads the information stored in the header of a JPeg file - like when you have downloaded pictures from your camera
This is very Dumb, I think its mode is TTY or VT100 or something like that. I created it because Win XP does not remember the last set of hosts you connected to.
:::An easy way to implement Print Preview::: 1. On Form Load, the ADO data control will fetch records from the database and bind to datagrid to be displayed. 2. The data control then clone a copy of the recordset and set to a local variable 3. When user selects Print Preview, the cloned recordset will be saved as an xml file to the system temp folder, with a unique file name created using CoCreateGuid API. 4. Once the xml file is created, it will be launched in the hidden Web Browser control. When the download of the xml file is completed, it will fire a download complete event, after which the print preview screen will be launched. 5. User can change the page orientation, select print type etc. via the print preview screen without using sophisticated Active X controls. 6. For additional security, the footer of the preview screen is always set to empty. This is to prevent user from locating the xml file using the printed url. The xml file is deleted each time user closes the print preview screen.
A simple function and small demo that changes the background color of the textbox that has the focus.
Captures Net Send Messages. First Submission. My code is messy, but this could be made into something a little better. Always On Top code is from somewhere in here, not sure which submission. Remember to change the constant MyName.
This code will work for win 2000 and XP. It hooks the systems keyboard and runs a callback function to determine if the "delete" key has been hit and disables the delete (system wide not just application wide). This program could also be easily resigned as a keylogger if you feel the need to do so, also it may be used to disable any number of keys you wish. In the LowLevelKetBoardProc just use debug.print xpInfo.vkCode and you will see the value of the key and you could set that value to de disabled (as VK_DELETE is currently.) When I get a chance I will also try to make it for the other MS OS's ***************Warning******************** Since this program uses callbacks DO NOT HIT THE END BUTTON IN VB'S IDE .....YOU WILL CRASH.
This program counts lines in your projects. It is run from "Add-Ins" menu in VB. It is an easy example of using VB IDE and everyone who wants to write VB AddIns may begin viewing this code.
---This should be updated on the 17th or 18th of september! I've started work on the new version. Check back soon.--- This is a very simple html editor for people who dont know anything about html! its so simple just fill out a little form and youve got yourself a simple html file! (Preview option is now available)
This is really a very very very very very very very very very very easy FTP program . Only few lines of code to upload/download a file to/from a server.
This Solar System Simulator is a very simple application designed to teach you how to rotate/animate planets around a sun, but also how to rotate moons around their planets. I have also implemented a very simple yet effective zoom functionality simply by changing the form's scale settings. The position, timing and distances are not to scale. You will need to change these if you want an accurate system, however everything is commented so it should be no problem.
This is Monopoly client for LINUX monopd servers. You can play monopoly with it over internet. WARNING:If there is no servers list when you run the program, delete command line parameter (IP adress) in 'make' properties!! If you want to trade estates, right-click on estate, wich you want to trade with. If you just want money transactions, klik on target player's list of estates. Atlantik has been originaly developed on LINUX, but since there ain't windows client... Some things are to be done (smooth token moving, checking localhost server), but most of them comforms to monopd protocol. For more info go to http://unixcode.org
Just a little Game. You are a ship and you fly through a tunnel. Objective to get as far as you can without touching the walls. The Walls do close in over time.
Fully Functional Napster Client. Added/Fixed a few things since last version. read Fix.txt.. added Teknap/Irc Coloring see colors in related\Colors.txt . after you load the client i recommend sharing at least some files(mp3 only) then after loading. you need to either file/connect or 2 click a server to connect. If you cant get any d/l's to start it has nothing to do with INap but the system itself(not as many people as kazaa / direct connect). but chat system works pretty good.. and supports scripting.. ive writen a few games. look for examples at www.intradream.com later and if youd like an install www.intradream.com/INap.msi
To install your mouse mat. There can be a big big difference in how your mouse is working.
UPDATED!!!!! This usercontrol allows to get/put files in an Access 2000 mdb with one line of code!!! And I've forgot to mention it, if the file is a picture, it is autom. shown !!! Please leave me a comment !
Ok, this zip includes KCombo, KdeButton, four custom form conrols, you align them to the sides, and its as if thats the actual window. You can resize the forms, as long as you align the the sides right... You can set an icon, you can double click the drag bar and it will become smaller, also you can click the icon for a menu for resizing, minimizing, and closing... This one has a gradient drag bar, I tried to do the dot thing like in KDE but for some reason they dont show up, maybe you know why :( ... Please rate this, by the way, I dont know if the Kcombo.ctl is in there, so if it isnt, just leave a comment about it, and ill submit the source for it to PSC... Thanks, Dr. Fire :) OH YEA, you can also make resizing disabled ;)
This code shows 3 ways to check if program is already open. First way doesn't use any API (it uses App.PrevInstance property). Second way to find out if program is already open is to use FindWindow function. Third and the best way is to create mutex object.
This shows how to access another process' menu and clone it in your own application using API. The example allows you to choose an app from a list of open windows, then once the menu is 'cloned', it will allow you to execute menu items in the other process by clicking on them in your own app. This also demonstrates how to create & remove dynamic menus and submenus on your form, as well as handle messages from them when clicked (uses subclassing). API Calls: IsWindow(), SetWindowLong(), EnumWindows(), GetMenuString(), GetMenuItemID(), GetMenuItemCount(), GetMenu(), GetSubMenu(), AppendMenu(), DeleteMenu(), CreatePopupMenu(), DrawMenuBar(), CallWindowProc(), PostMessage(), GetWindowTextLength(), GetWindowText(), & IsWindowVisible()