Advertisement

Results for "Volume: 5_2007-2008"

5_2007-2008 #187515
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!

5_2007-2008 #189695
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 ..

5_2007-2008 #186702
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)

5_2007-2008 #189151
A nice puzzle game :)

You can play puzzle with any image you want.

5_2007-2008 #176242
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.

5_2007-2008 #178268
TOOLBAR like Office97

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

5_2007-2008 #185255
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.

5_2007-2008 #185864
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.

5_2007-2008 #187514
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...

5_2007-2008 #189545
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.

5_2007-2008 #174320
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 - [email protected]. 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

5_2007-2008 #189603
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

5_2007-2008 #187209
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 [email protected]

5_2007-2008 #189517
____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.

5_2007-2008 #183289
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.

5_2007-2008 #189477
A Msn Style popup

This code was originally from Robin Schuil's msn popup all i did was change the look so the credit goes to him. i jus gave it a msn feel to it now with a close button (screenshot) and msn's original sounds it has a more msn feel to it. If you like this porject please vote. Once again thanx to Robin Schuil for this code

5_2007-2008 #179435
Extract String Function

This code will search a string for a given starting point(strFind) and a given end point(strSentinel) and return all the text in between. You can also add to the length of the start point if you don't want to include a number of unknown characters in the result

5_2007-2008 #185948
Print & Preview MS Access Report In VB(*.mdw Protected Database)

This project will show you how to utlize MS Access as your report generator. If you are tired of designing your report using other third party report generators and if you want to create dynamic reports without making major revisions of your app, then perhaps this project can help you. Be sure to reference the MS DAO library, MS ADO Library and MS Access Object library. If you have comments, email me.If you like it, then vote. Use the following: Username: BetaTester Password: BetaTester

5_2007-2008 #187516
Cool Hover Button 1.5

Makes a cool button like what you see on MSDN or Microsoft's ASP.NET Web Matrix. UPDATED TO VERSION 1.5. FIXES: - Fixed when label is clicked, click event works. - Added "Option Explicit". - Fixed enabling/disabling of button.

5_2007-2008 #189521
Winsock Tutorial

I wrote this tutorial for beginners who have very little or no knowledge about the winsock control & client/server programming. I tried to explain things the best I could; so hopefully by after reading this tutorial you'll be on your way to making more advanced client/server applications. The tutorial comes with a sample client/server program which simulates the Microsoft Daytime Service, as an easy example of the basics. The tutorial itself is in Rich Text Format (*.rtf) and can be opened (cleanly) with Wordpad or Microsoft Word. Leave comments so I know if this has helped anyone. :)

Languages
Top Categories
Global Discovery