Advertisement

Results for "Volume: 4_2005-2006"

4_2005-2006 #170066
Save Urdu to Database

Its very easy code. You can improve it to your needs. through this code your users can written Urdu text and also can save it to you database and then it will be availble for viewing like a guest book etc. Vote me if you like it.

4_2005-2006 #154497
Movement

This code shows how to move an object along exact angles using trigonometry. I made it after I download a sprite that could face 32 different directions. Instead of doing some complex movement function like I'd done before, I made this technique. Now all I had to do was increment a variable by 11.25 (360/32) I am sure that I am not the first at doing this, it's just that I had never seen it on the internet before so I thought I would put it up and help all of those who could use it. I just put it into a simple project where you drive a tank around. The project could be used for a game too, if you want, e-mail me and I will send you the better graphics, the ones I used are shrunk and 8-bit instead of 24. Anyways, download the code and enjoy, all feedback is welcome.

4_2005-2006 #154610
Subclassing

Subclassing, the interception of Windows messages, allows you more control over VB than ever before. Now you can display messages in the status bar describing a menu that is selected, or force a form to have a maximum and minimum size (like the VB main window). This code shows the benefits of subclassing.

4_2005-2006 #170765
Google Type Lyrics - Complete

This is a Complete Lyrics Site MS Access Database Driven, This one is complete last post wasn't even worth to put up. Anyways this one also has admin section. username=admin password=admin in admin section you can add modify or delete lyrics. your visitors can also submit lyrics but those lyrics will be in pending status untill you approve them. you need a freeware windows based webserver with msaccess db support. the best one i found was http://www.brinkster.com. once you upload all your files please set the permission to your lyrics.mdb to 777 then all set.

4_2005-2006 #154474
Image File Open Dialogue Box

My first submission. This code uses the vbAccelerator common dialogue control replacement, to generate a file open dialogue with an image preview. The example at vbAccelerator didn't quite meet my needs so I built this from it.

4_2005-2006 #152678
Developer's Buddy

You can do 3 things with this program: a) you can backup your project's files, b) you can put line numbers in your code, and c) you can put error handlers and trace routines. If you use the third option, the program will add a form and a module in your project, which contains the necessary code. Before you start, read the readme.htm or press the "Help" button in the "Project" Tab. I believe that 'Developer's Buddy' is a useful program for every developer. This is a beta version, so you can send me errors, ideas and comments. SEE IT.

4_2005-2006 #152727
Microcrap Shoutlook (SMTP mail with attachments using Winsock !!)

Send Email like Outlook does with attachments..Uses NO OCX..plain Winsock. This cnnects to an SMTP server .

4_2005-2006 #151197
Basic VB Controls

Getting back to the basics of using VB6 controls. Included in the project are, checkboxes, options, combobox, textbox, Scroll bars, File list, Dir list, and drive list. Very simple programming intended for beginners. Has an example of browsing for files without using common dialog control. Plus an example of using the ShellExecute api and 2 option dithered background. I hope the code is helpful to those that are new. I'm sure there are others like this on here.

4_2005-2006 #151648
PopUp Menu Tutorial

Ever wonder how to make those cool popup menu's? Well This tutorial will tell you how to make them, how to detect which mouse button has been pressed, and how to make them popup on different mouse button clicks.

4_2005-2006 #170017
harry's snake

Watching the snake game on cell phone i decided to make one. here is it. feel free to download and pass on. if you like it do vote. do look at my other submissions that are above this level. download zip file , execute the cpp file and play it.

4_2005-2006 #171548
YouTube VideoSearch&Downloader

This code can search on YouTube and download YouTube Videos. Test Page.www.videoservisi.com

4_2005-2006 #171388
charity organization database management

The purpose of this software is to collect personal information of people who donate towards various categories of partnership. it displays their totals each month and at the end of every review period. it also has a very powerful advanced search tool to be able to find out specific information about anybody for a particular month. the advanced search also can search with criteria such as more than, equals to, less than, etc. just download and see for ur self.

4_2005-2006 #154329
Get Consistent Date regardless of Regional Settings

This submission uses Pat McCotter's code one step further (http://www.planet-source-code.com/vb/scripts/showcode.asp?txtCodeId=1852). This program will find what order the short date parameter is in in the Regional Settings in the Control Panel, and reformat the date so that it will always be MM/DD/YYYY. An application can have unexpected results if you just assume, or are not aware, that the short date is not MM/DD/YYYY. So to be sure you are using the right date for calculations, download this. Please vote for this if you find it useful.

4_2005-2006 #152644
Date Time Picker and Month Calendar OCX

This small OCX (80 K) contains a implementation of the Date Time Picker (called DTPicker in VB6) and Month Calendar (called MonthView in VB6) controls of the Windows ComCtl32.dll in VB. It's especially useful for VB5 users or VB6 users not wanting to ship the whole MSComCtl2.ocx just because of the DTPicker or MonthView control. The interface is a little different from the one offered by MS. Now with an ready to use VB6 version !

4_2005-2006 #170018
harry's Casino

THE PROJECT HAS HIGH GRAPHIC CONTENT.IT IS A ONE PLAYER GAME. YOU CAN PLAY NUMBER GAMES, SLOT MACHINES AND CARD GAME.PLEASE VOTE FOR IT. THANK YOU.... N.B. IF RESPONSE IS GOOD I WILL CREATE A HOTTER VERSION .

4_2005-2006 #153853
Demo: Popup Window (like menu or drop-down windows) (No hooks)

One of the most common types of a focus-only popup window is the menu. A drop-down list is another example. Both disappear when they lose focus. Here's a demonstration of how to do that. It doesn't rely on the LostFocus event, which only works within that form's scope. Switch to a different application and your popup would still be visible. Instead, it uses a timer and an API call to check to see if the popup still has global focus. If not, it self-unloads. While it does act essentially like menu-style popup windows, it's not exactly the same. To do that, I think it's necessary to use an API call to hook into some Windows event that detects a change in overall focus. This technique relies on constantly polling the OS. It also means the form that uses the popup will technically lose focus (big deal). It's generally a little klunky. Still, it works very well. Thanks go out to MrGTI (www.Pharfruminsain.com) for advice on the basic technique. I encourage anyone who knows the "right" way of doing this to let me know. Please vote for this code if you like it.

4_2005-2006 #169632
Process Injection

Ok, this project work by copying an entire process directly into anothers memory space. This will not work on all running processes because the ImageBase required by the injector executable maybe already Allocated by the process, therefore causing the VirtualAllocEx to fail. If you were to make this work on all process you would first have to rebase the injector in memory, then inject it. I hope this has answered your question to why this fails on most processes. The default imagebase for an executable most of the time is 0x400000 which is available in Explorer.exe, so i chose to use that process as my example.

4_2005-2006 #154234
Word 2000

It Does Almost All The Word OF Word Please Check it out And MAil me

4_2005-2006 #153510
Better Web Browser

This is a web browser with a few additions. First, it has picture buttons like IE, a 'history' file that is editable. A built in search engine, quick IP address, disable pop-ups option and more. Check it out.

4_2005-2006 #154117
How to make an individual Form - ActiveX Control

This Code shows how to make an ActiveX-Control that gives a Form the shape of a bitmap or the shape of any text. Includes Demo Projects. Very Cool Effect! Must see!

Languages
Top Categories
Global Discovery