Advertisement

Results for "Volume: Java_Volume1"

Java_Volume1 #85467
Gif Animations No OCX

This code will display a gif animation (even if transparent). Uses no OCX files. I did not write this code, but found it on a site and thought PSC would make a good home for it. Enjoy.

Java_Volume1 #85468
Draw formated text (update)

Draw formatted text. You can use this control to give users instructions with formatted text. This control have almost all the functionality of a read only text box control, but can NOT select text. Features: font name, bold, italic, underline, font size, lines, Bullets, Colors, Web links Also, left margin for paragraphs. Note: Also, you can set the margin for the second (and other) lines as well.

Java_Volume1 #85469
Terror Alerter

This program downloads the current Terror Alert Level from www.whitehouse.gov/homeland/ and displays it. Also updates every 5 minutes. It used to display the images...But i took the functionality out. Maby it will be back when i update it, eh? Vote and Comment/Suggest!

Java_Volume1 #85470
Mount drive

you can mount virtual drives on your pc by specifying a particular physical folder path. A drive will be created with contents of that folder with the drive letter you give.visit my site http://www.sonysms.sphosting.com

Java_Volume1 #85471
Play sound from resource

If you want to play sounds in your program, but don't want to ship extra .wav files and make sure there in the right path, or you don't want people ripping off your stored .wav files, you can play sounds from a resource file built in to your .exe file. Although Windows resources have a "WAVE" type, Visual Basic doesn't support it. The answer: use a binary resource and play the sound from memory!

Java_Volume1 #85472
Change Color Of a Piece Of String In RichTextBox Without Flashing In It

Hi All .. This Function Solve Problm Of Flashing During Change the Color of a Piece of String in RichTextBox .. It's Useful For CodeBoxes ..

Java_Volume1 #85473
CompactServer - Compact, Powerful HTTP Server ( HTTP Headers, Generates Directory Indexes)

Welcome to CompactServer. The name tells you that it is compact, and it is a HTTP Server. This web server should work with all web clients, as it uses HTTP Headers (not just the file data) and corrects links if they contain reserved HTML characters (ie. Space, #, &, ). The server has an optional directoy index generator. Some niffty and handy little features are in it like start with windows, Toggle window visibility with CTL+SHIFT+F5, save preferences to ini files... I am going to include PHP and CGI support in later version. If you think this deserves a vote, you probably should vote! :P If you download this code, you should comment, as i want to know what is good/bad about this program. PS. This server is compatiple with PicGrab (Another one of my programs)

Java_Volume1 #85474
A nice puzzle game :)

You can play puzzle with any image you want.

Java_Volume1 #85514
Components... without Project/Components

Here is a method to incorporate controls as the StatusBar, ProgressBar, TreeView, MonthCalendar and other "non-IDE-default" components, WITHOUT need to checking their libraries from Project/Components menu. A very convenient method to use a StatusBar without need of distributing the MSCOMCTL.

Java_Volume1 #85515
TOOLBAR like Office97

Use FLAT BUTTON IN TOOLBAR like Office 97 without OCX... Just an API function. Very simple and optimizing code size.

Java_Volume1 #85516
HTTP File Download using Winsock

This is an example of how to use the Winsock control to download a file from an Web Server(HTTP Server). It is real simple to do, but it took me a few hours to figure out. I hope everyone likes it. I decided to do this, because I haven't seen much like it on Planet Source Code. I've updated it, fixing a couple bugs.

Java_Volume1 #85517
Open File Common Dialog replacement

A nice replacement for the open file common dialog. Coded to be very simple to undersatnd and change. Includes a nice picture previewer on right click. Thanks to planet-source for the file extraction code.

Java_Volume1 #85518
Using Cards.dll

I've seen a lot of posts on here that use cards.dll, but none of them really explain what the functions do; so I'm gonna...

Java_Volume1 #85519
Download files from the Web (No Winsock)

This project will show how you can download any file (image, file, page etc) from the internet without the use of Winsock or API calls. All done with straight VB code (and not much of it either). Very straight forward (at least to me). The logic here can easily be added to ANY project without any modification.

Java_Volume1 #85520
A Mike's theory interpretation about Image Compresion

This source code is the interpretation about the Mike's theory about image compresion. This is an algorythm to find the similar pieces of image and try to make it one. I think that it is useful for who wants to make an image scanner or similar work and too for who want to make FX with image due the tratament of image in this code. I use CopyMemory, FillMemory and GetDIs to make the process faster than a common VB functions. I think you can learn about this API that are very useful when you wanna make a better and faster algorythm. I don't make the module of GetDIs, this module was written by Marco Samy - marco_s2@hotmail.com. You can download his source code at: http://www.Planet-Source-Code.com/vb/scripts/ShowCode.asp?txtCodeId=43687&lngWId=1 If you think that this code is useful and you wanna make it better, feel free. And please, post comments about it to say what do you think. The Mike theory is in the zip file but you can download at: http://www.planet-source-code.com/vb/scripts/ShowCode.asp?lngWId=1&txtCodeId=43809 Thanks

Java_Volume1 #85521
Desktop Magnifier & Color Picker

Desktop Magnifier & Color Picker by Robert Rayment. Always on top, x2, x4 & x8 magnification, RGB to Clipboard, exact location of cursor shown on magnifier with a black dot. Magnifier can be moved to any part of the screen and the code can easily be changed to alter the area of magnification if wanted. Smooth operation. Win98 (exe WinXP) Zip 7 KB.

Java_Volume1 #85522
List Directories and their sizes!

Ever looked at your C:\ drive and wondered where that 1.8gb have gone?!?!!? here's your answer - this app will list the directory you choose and all it's subdirectories, with their sizes so you can see how much room each directory take up! Please vote - I find it really helpful as windoze won't help you with this!!! please vote and comment

Java_Volume1 #85523
RAM Optimizer And Indicator

This application uses follwing api to optimize availablity of Physical RAM 1. Private Declare Function GlobalAlloc Lib "kernel32" (ByVal wFlags As Long, ByVal dwBytes As Long) As Long 2. Private Declare Function GlobalFree Lib "kernel32" (ByVal hMem As Long) As Long Code are commented and also shows the maximum physical ram available and and total physical ram avaialble for application to use after running application. email id for further query sksahir@yahoo.com

Java_Volume1 #85524
____A Listbox Rearrange With Mouse

This code allows you to move items in a list box just using the mouse. Every line commented. It is very simple. I have searched high and low for a code that JUST DOES THIS without any other jargon but couldn't find any so I made it and posted it. Please give me suggestions/comments. I have edited the code to allow multi select to be enabled due to someone asking for it.

Java_Volume1 #85525
Multi-Chat Server and Client

A server and a client application. Using the winsock array, it's a wonderful example of how to create multiple winsock sockets and a public chat room. The server supports content filtering, blocking all swear words in chat messages, multiple chat channels and actions. Important lines are commented so you will be able to learn from my program. This is an excellent code structure for any socket application and it is incredibly easy to understand.

Languages
Top Categories
Global Discovery