Results for "Volume: C_Volume2"
(Update)This will create a file and add 999999 words to it. It can take upto 800mb of HDD space. silly simple code but i had fun with my friends PC, Lol. Ok have 800mb's of fun. If you give me 5 votes i will pay :) hehe
Hi, Was sitting at my system thinking what to do. well I make a custom toolbar without using picture arrays just by using a one strip of bitmaps 16x16 and BitBlt and TransparentBlt and the Line function to make a kind of toolbar. anyway the toolbar you can add your own button click code and button up code it also has a tooltip. I know this ant as good as the normal toolbar but it quick simple and easy. anyway I hope you beginners may find some ideas from this code to help you. Please vote if you like this code.
This excel marco generates Calendar for any year in a new spreadsheet. Good learning tool for Excel Macros. Don't forget to vote :-)
This code will help you make your own installation file. All you have to do is: 1. Choose a directory in wich your application is goinf to be installed. 2. Vote for my code :)
This is an analog clock. Its hands move like a battery-operated clock! You also have the option to show the second hand or not. You can minimize this application to the system tray as well! Other features include a swinging pendulum, hourly chime, and time synchronization with an atomic time server without using MSWINSCK.OCX (GUARANTEED ACCURACY)! Configurations include start-up on Windows start and setting the windows to be always on top. On load, the main form reshapes to the shape of the clock as you can see in the screenshot. It has ticks for easy time reading. If you like it, plz vote!!! :-P
Also known as Direct Memory Access. This is based on Andre Lamothe's method of plotting pixels. The purpose of this is to show people how to do direct memory addressing on the backbuffer surface to draw pixels extremly fast. Microsoft has hidden some useful things within DirectX in VB that make stuff like this possible. The main one that is needed is the pointer to the backbuffer surface called lpSurface (located and hidden in DDSURFACEDESC2.) If you want to see other hidden members, just go in object browser, right click, and goto Show Hidded Members. We now need an array that will point to the lpSurface (using Safe Array of course) that we can use to actually draw the pixels. We will call it Video_Buffer(). Depending on the color mode you are using though, you will need to declare Video_Buffer() with the same number of bytes the color mode is. For example, Video_Buffer() as Integer (2 bytes) for 16 bit color mode (2 bytes). Now the formula to plot the pixel is this: Video_Buffer(X + Y * Memory_Pitch) = Color. The memory pitch (lPitch, located in DDSURFACEDESC2) models the fact that a video card might have some extra memory per line because of caches or hardware addressing. For example, your resolution set at 640x480x8 shows you have 640 bytes per line on the screen, but the memory pitch is set at 1024 bytes per line in video memory. Of course, depending on what color mode you are using, you have to divide the memory pitch by the number of bytes your color mode is. Before you can actually write the pixel though, you have to lock the backbuffer surface and obtain the correct memory pitch (if you didn't, the memory pitch is useless.) Then you write the pixel, and unlock the backbuffer when done. I have three examples of how this can be useful. My only problem now is figuring out a way to Fillmemory in words (2 bytes) and Dwords (4 bytes) for fast scanline drawing. I have the assembly source code commented within this program (written by Andre Lamothe) but don't know how to use it in Visual Basic nor do I have any experience in assembly. Oh, well, at least I got this far. This program is heavily commented for those who are beginners. VOTES AND COMMENTS PLEASE!!!
This code will let the user select their town in a tree view panel, then by double clicking the name of their town and then clicking the button a 5 day weather forecast is displayed
The programm generates "matrix" lines - with user's settings. Then blends the "matrix" with another image in a special way so the image is only blended on the letters. See SCREENSHOT.NO API.Creates Cool effect! Has a lot more features like: Drawing by yourself, choosing transparent color, cusomizing matrix(line length, font, num of lines etc.),select RGB channales to adjust image and more.. please vote
This Function gets the current winamp song. I got tired of people iming me asking for this and me redoing it each time.
I was inspired by MobyDock (http://www.mobydock.tk/) and created this program which can be used to replace the taskbar. It’s based on DirectX 8 for VB and needs just a little few tweaks (transparent background and anti-aliasing for example) but because the lack of time I can’t finish my code. So feel free to download the code and finish it on your own with your customs features. You need to create a folder called (“icons”) in App.Path and put some PNG-Files in it. For the screenshot I used a PNG set from http://www.rokey.net/ but you can add any 128x128 PNG files you want.
*UPDATED*.The BEST SOFTWARE PROTECTION YOU CAN EVER FIND IN PSCODE.COM.This isn't any rubbish submission. This is nearly as good as commercial software protection.This is really a good software protection ever made in planetsourcecode.com.The program uses MEMORY techniques to directly embed your EXE into the MEMORY and works with any VB EXE (PE). This code comes with a LOADER written in VB which has protection just like any other commercial software protection like DEBUG DETECTION, ANTI MONITORING and DUMPING, suspecious activity detection, BLACK LISTED CODES, FAKE MEMORY INJECTION, ADVANCED TAMPER DETECTION SYSTEM etc. The trial system is also very secure and it is manually IMPOSSIBLE to revert the trial settings. In EXE PROTECTOR you have to select many settings like the trial type, key generation, black listed codes, key maker password, etc, then your software is automatically converted to the trial version according to the settings made. The Key generation uses a Triple Key DES Encryption with SHA which is good. The loader is extremely fast, it is tested under different conditions and it works pretty well.There are many customisable options like you can choose to give FREE UPDATES for minor versions of your software, reset trial on new versions, add BUY NOW URL's, increase trial count by request and more.This submission took many days to build and test before submission. The code is excactly as secure as other software protectors and my submission is a freeware. If you need more help you can refer the very extensive documentation and sample project. Easily generate XML based reports and save projects for future use.Inspite of repeated requests, i'm submitting this code as a FREEWARE. A vote- thats all i need.
Super real time color syntax with list of function sub and more also with auto indent you must try it very cool and powerful please vote for me if you like my code thank you.
This is an Add-In Project that creates transparent forms and adds them to your project. This Add-In works almost exactly like the Transparent Form Maker program that I posted a while back on PSC, except that I changed a few functions to add extra LoadByte Procedures to handle the size limit of Procedures (64k is the limit) and I added a way to move the form without using the task bar(see the Form_MouseDown event on the frmRegion).The Created form will also contain the mousedown code.(Note: Some of you may need to change the reference to the Microsoft Office 9.0 Object Library to the version of Office that you have installed.) To get this to work open the project and compile it then close the project and open a new project. Select Add-In Manager from the Add-Ins Menu. Check the Loaded/Unloaded Check box (You can also check the Startup check box to load the add-in when Visual Basic starts). The add-in will then be listed in the Add-Ins Menu as "SSE Transform". Follow the instructions on the Main Dialog to create and add transparent forms to your project. (Note: The program may take a few minutes creating a form depending on the complexity and size of the picture that you use.)
This is designed to be a fast(er) port scanner, configurable (pipelines, timeouts) and automatic (scans Class D or C level ranges). It uses Winsock arrays to make pipelines to test ports. Works very well on a LAN, and has good to excellent success on the Internet, in my testing anyways. The code demonstrates using arrays of controls, etc. This is my first submission to PSCode.com, please enjoy!
This is a shoot 'em up game similar to projectX. It was created with bitblt functions and all the others functions from the gdi32.dll. It is not with full comments but i 'll do it if you ask for it. Anyway i wish you have fun with this game and vote me if you like it. The graphics aren't mine. I found them on the internet. I didn't have time to create my own.
This game has a very nice drag and drop, just take a look at the program and you'll see what i mean. I used API and Math to do the trick, just download the code. Well, I hope you enjoy playing it ;)
Simple Sound Mixer Wrapper Class plus Test Driver. Unfortunately the Mixer interface is rather complicated - maybe written by a musician *g* - so there are quite a few mystic API calls with plenty of params, mixer-constants with ugly names, cryptic structure types, and virtual memory address pointers from one structure into the next. And Micro$oft's documentation is slim, to put it polite, but I tried my best to put all that into a wrapper with a simple interface: You choose the Channel and SoundControl; this will return True if the selection was successful, and then Get or Let the Value. (Note that ALL values are in % - for booleans (like Mute) the value 0 means False and 100 means True - one hundred percent true, so to say).
A Full YMSG Client with Chat,PM,BuddyList,Add Friends,Fonts,Smileys,WebCam Full Clone of Yahoo this need Systray32.ocx and YCrypt.dll this DLL can you get on http://www.nolimits-hosting.com/~yvb/ Please gimme Credits and Vote for me at PSCode
Please Read the Article
This project uses GDI+ to load a transparent .png and using UpdateLayeredwindows it displays the form using the png as the windows drawing source. Just try it, it's easier to see than describe. This can easily create some of the nicest forms that you are able to make. No more regions no more combining and xor'ing, using this you have a perfect antialiased non-rectangular form that you can see whats underneath through it. It's like regions supercharged. Though this example is pretty simple, I haven't seen this done anywhere on the net. I found one example in C++ using an outside library to load the png but using GDI+ is easier. I made this example without anything except the basic code to load the png and display the form. It's always been easier (for me) to see an example when there isn't anything extra to dig through. As far as I know, GDI+ comes with windows 2000 and XP which fortunately is also the only OS's that support UpdateLayeredwindows. Have fun with it. Comments and Votes welcome.