Advertisement

Results for "Volume: 2002C"

2002C #11196
Ulli's VB Project Explorer and Documenter (Updated)

This AddIn helps you to explore and document your projects. The documentation is incorporated into the source code and may be printed by the Code Formatter Source Print Facility (updated version soon to follow). Compile the DLL into your VB directory and then use the Add-Ins Manager to load the Explorer Add-In into VB. The Splitterbar.OCX (included in the .zip file) is a Control based on a submission by eidos here at PSC. You should copy it to the Windows System Folder and register it using RegSvr32.

2002C #15135
WINAMP OCX

It allows you to control Winamp through a seperate, small application that sits in the corner of your desktop

2002C #10353
AIM Toc 2.0 Logon Algorithm

This will create the 8 or 9 digit number that goes along with the log on packet for the newest version of the AIM TOC Protocol (version 2.0). The number that it makes, is based on the screen name and password. I guess it was a security feature added in, to prevent users from making AIM Crackers.

2002C #15354
OO FireWorks

Illustrates use of classes and collection classes in VB Showing nice fireworks effect. Each little particle in the firework explosion is an independent object. Any comments/suggestion on how to improve speed/memory Usage are welcome. please vote for the code even if its negative but please do leave a comment to let me know the reason.

2002C #15456
DDEMLv2.zip

The following code is an example of how to use DDEML in Visual Basic. DDEML (DDE Management Library) is the Win32 API mechanism for performing DDE based interprocess communication. Using it with VB provides a much more customizable and scalable DDE mechanism than using standard VB form-based DDE. The zip file contains an example server and client. The version 2 server inlcudes DDEAdvise functionality. This allows it to notify clients of data changes.

2002C #12715
HelpACoder Update 2 now with upload and more.. ERRORS FIXED..

Sorry there was an error i fixed it though it did not load all files does now. Also i know you cant upload but if you run the program anyways you can find the source always newest and with exe and with that you can upload. Updates since last version: New Version supports the uploading of files has a form made entirely for uploading files also sends a copy to a nrequest file which i can and will soon make to filter out whether something should be there as well as a manual check once in a while. Also added a email option to where you can respond to someone with a question Future Version: i would not only like the email but for people asking help i would like to make it so that they can have a seperate place where they can look at all responses. ''''''''''''''''' Old Version: 1.ListView used rather that three listboxes 2.Now downloads files if possible 3.Added a refresh command in the menu so theres no longer a large buton at the bottom 4.Now provides info on the projects 5.Now asks six questions A.Author B.Project name C.Email D.Type 1.Source 2.Help Me 3.Freeware E.Extra information on the project F.Location for download - has a function to automatically download Future versions: 1.New Layout 2.Auto add - allows you to add your program without the hassle e-mail 3.Tell me what you think should be here 4.Or even here I would Appreciate any comments you may have good or bad but with any bad comments tell a possible solution

2002C #14847
HTMLLabel v0.3.0

The long-awaited, much-enhanced new release of THE all-VB HTML rendering control. Now with horizontal scrolling, table and cell background colours and much, much more.

2002C #15389
Buttons 2

This is the second version of buttons, this version now has the mouse over function and Semi-Transparent Buttons. A must if you don't like the windows buttons!

2002C #13258
Evoloution

Ok this is a remote administration tool. It has a lot of features, which include: - Remote File Browsing - Keylogger (not my code, appologies to the author I have forgotten your name) - Chat - Open / Close CD Tray - Autorun on windows startup - Email IP Address notification - Shutdown Remote Computer - Hide Task Bar - Disable start Button .. And a few more There are no malicious features built into this program, well not this version anyway, as I wanted it to be used to learn how to interact with another machine over a LAN or over the internet, and not to be used as a means to be malicious. If you want to edit the code, to be malicious then, basically its fool on you, because that is just plain Dumb. I would appreachiate any votes that you might give me, and would definatly like feedback. Thanks in Advance and I hope this helps you - Mick

2002C #13657
Delete multiple selected rows in a listview

Always wanted to delete multiple rows in a listview by using checkboxes to select which ones to delete? Then this is the simple solution. Might work on earlier versions of VB, too.

2002C #15067
Silly Game

Its a simple game. i guess its addictive.

2002C #14731
Excel : A tip for you that deal with add-ins, Menus and Submenus

This is the source that i've been looking for, when i was trying to create an add-in that installed a new menu option with submenus in the shortcut menu of a workbook. (Look at the screenshot). The whole project is designed to be as simple as possible and it is an Excel Add-in. It is very helpfull for those of you that try to develop professional Add-ins. Any comments or suggestions are always welcomed (A special "Thank you" to all of you who voted for me)

2002C #15313
Preventing Bugs Before They Occur

Wow, I'm writing another tutorial for Beginner, Intermediate, and Advanced. I hope that this tutorial will help like all my others did. In this tutorial, I will attempt to explain how to prevent bugs before they occur. How, you may ask? Well, I will explain to you bug preventing techniques like using Option Explicit, applying the KISS and SMILE principles, taking advantage of Object-Oriented Programming, using Comments and Coding Conventions, and following Coding Conventions by using Variable and Routine names and avoiding certain statements. I will also throw in what I call the Ten Commandments of being a Lazy Programmer. Is being a 'Lazy Programmer' good? Well, yes it is and you'll find that out soon enough! Maybe some of you are already 'Lazy Programmers'. So, without further eddo, lets begin!

2002C #14997
ADO-Connection to database made easy

I have used SQL queries for Add, Modify, Delete, Update and Search in the databases. Everything neatly coded and commented for each line. A very good example for beginners, who needs to know the coding standards for connecting to the database using ADO. Comments appreciated.

2002C #15097
VeryLongConvert (bases)

VeryLongConvert is a function that converts a huge number as string from a base to another one . INPUTS : * Word As String : the huge number, up to 32,000 digits, to convert * FromBase As Integer : the base in witch Word is written * ToBase As Integer : the base in witch Word is to convert * Separator As String : this Optional variable is the decimal separator, usely the point and sometimes the comma OUTPUTS : * the function returns the huge number converted from FromBase to ToBase as string. It returns "" if Word is empty or if FromBase or ToBase is not between 2 and 36 Here is the public code : Public Const B_BIN As Integer = 2 Public Const B_OCT As Integer = 8 Public Const B_DEC As Integer = 10 Public Const B_HEX As Integer = 16 Public Const DEFAULT_SEPARATOR As String = "." Public Const COMMA_SEPARATOR As String = "," Public Function VeryLongConvert(Word As String, FromBase As Integer, ToBase As Integer, Optional Separator As String = DEFAULT_SEPARATOR) As String Example : This example illustrates the VeryLongConvert function. To try this example, include the module ModConvert, paste the code into the Declarations section of a form that contains two TextBox controls and a CommandButton control, and then press F5, enter a number in Text1 and click on Command1. It will convert it from decimal to hexadecimal. You can convert from any base to another by replacing 10 and 16 by the bases you want. Private Sub Command1_Click() Text2.Text = VeryLongConvert(Text1.Text, 10, 16) End Sub How it works : I won't go in the details but it works with divisions to convert a number from a base to another. e.g. : if I want to convert 247 from decimal base to binary base I'll do that way : LSB : Less significant bit MSB : Most significant bit numerator|denominator remainder/quotient 247|2 LSB 1/123|2 1/61|2 1/30|2 0/15|2 1/7|2 1/3|2 1/1|2 MSB 1/0 So, 247 in decimal is written 11110111 in binary Try the example you can download. Vote and give your comments ! Thanks !

2002C #15355
LightWorks

Illustrates use of classes and collection classes in VB Showing nice Lights effect. Each little particle(Which Leaves the light Ray behind) is an independent object.The code is almost the same as OO FireWorks I Submitted the other day. Any comments/suggestion on how to improve speed/memory Usage are welcome. please vote for the code even if its negative but please do leave a comment to let me know the reason.

2002C #14318
GFX_Fire - A fire demo

This code will draw on a form an animated flame, using a simple algorithm. I don't use any API declaration, so I use only standard VB functions. The code is full commented (sorry my english) and there are 61 line of code only; If you like it please vote (^_^)! Or leave a useful comment (better thing)!

2002C #14641
alarm & clock in systray...

a simple alarm clock, but it shows a message into the systray.

2002C #14581
Creating a resource-only dll (Revised)

In response to a many VB programmers wanting a better alternative to using resource files to store their bmps,wavs, etc. This code presents a simple way to store those resources in a resource-only ActiveX dll that can be loaded from their VB application.

2002C #14696
How to connect using Winsock 4 beginners wanting 2 learn Winsock

This code is for beginners wanting to learn winsock **Fully Commented** Only today i have learned Winsock and this is thanks to someone called carrot in vbchat (irc.vb-chat.com #vbchat) which is also known on PSCODE as "Andrewm1986" I am at the moment increasing my skills in winsock i have made a chat client and server which later on today will be able to kick & Ban the user which i will upload when i have finished well have fun and people who want to learn Winsock this is your chance!!!

Languages
Top Categories
Global Discovery