Visual Basic Language World

Welcome to Visual Basic world on Planet Source Code! This site is one of the Internet's largest online databases of free code! You can search for particular code, simply browse by category, or just peruse! The site is filled with programs, .zip files, examples, snippets, and tutorials so feel free to jump on in!


For all you masochists, here is a list of all the code in the Planet Source Code database for this world, all 5,108,904. lines of it!!!



Game engine Game engine prototype first release.
DM logo Maker V1.0 Make a company logo in seconds, Choose an image, position text and set text properties such as fontstyles and colors and save your result Hope you like this first version.
graphical Bandwidth Meter Measures network traffic. Displays total bytes sent/received. Displays current bandwidht usage in a dual VU meter display (Inbound/Outbound). Can escalate display for higher/lower bandwidths.
Win Shutdow Esegue un commando ad una tot ora
Zion Library System Zion Library System is a complete application that you may learn from,use or distribute. you can do anything that you want with the submission. its an excellent graphical user interface library managment system to track books in the library,library Members and library borrowings. I designed three user access levels to provide retrictions and limitations to other users other than the administrator. you will notice as you use it that the sofware is almost a commercial software which has so many features that you can use or try to learn from as you explore its code. you may replace the graphics flash files according to your liking. some of the original flash,wav,bitmaps were replaced to trim down its file size. do not forget to place the usermanual(pdf) in windows directory. some of the modules were borrowed from some programmers in planet source code. thanks a lot to fellow programmers I learned a lot from them specially to the developer of hme library where i patterned my system design after. the system is not free of bugs as it it still in its development process and not yet finished... Please dont forget to vote and leave your comments. username: jaguar7 password: mlev Software Developer: Von Tyronce C. Kierulf
CLockSimiliator Programming Technicals I present to you the first in a new programming series: PRogramming Technical which presents the clock. This code demonstrates classes for beginners but also contains programming technical notes for those who like programming logic. This code is Rated B for beginners. Look for More upcoming Programming Technicals. Please do use my Comments for discussion of the code/understandings, accepted responses will be added to the clocktech document and credit will be given
Simple Youtube Downloader Simple Youtube Downloader
EliteXp® ASM EnumWindows (In a Class, Not a Module) EnumWindows API requires an EnumProc(Byval hWnd as long,Byval lParam as long) as long and We pass it by Addressof EnumProc. This EnumProc is in a Module and is not flexible for firing events and Stopping Enumeration. Now, EliteXp Presents you the Enumeration of Windows in a Class(.CLS) file such that the CLASS can Fire events as well as Stop the enumeration for you. The whole capability has been possible due to ASM (Assembly Binary Code). Here's the idea. 1> Allocate the ASM Binary Opcodes in Memory. 2> We call EnumWindows API as EnumWindows( <Binary Opcode Mem. Address>, <lParam>) Hence, Each Enumeration of Windows By API first calls, the BinaryOpcode. The duty of Binary Opcode is to call the 1st Public Procedure of the Object Owner. ie PATCH_01. So, we now don't need Enumeration in a Module. A class file can enumerate windows with callback Procedure from ASM.
Multi Tab Web Browser This is a multi tab web browser... I don't have much time to develop it into a really nice browser.. Some bugs I found such as if you open 3 tabs and open 3 different pages on those tabs and then you resize then the 3rd tab shows the 1st tab webpage and the 3rd goes missing... If anyone of you find out a solution for this or have some other good ideas post it here in code format so that this project could be updated... And yes you will require Internet explorer broswer control and SStab control...
HTML Editor Editor HTML
Win Clock TrayBar Allows insertion of your nickname near the Windows clock ------------------------------ Permette l'inserimento del proprio nickname vicino al orologio di windows
Gantt Chart Platform This is a gantt chart platform that I am working on. I have been looking for a gantt chart which is open source to no avail that I can easily customize. This is just the start, thus the platform. Please feel free to contribute. This demonstrates the following: subclassing listview, detect horizontal scrollbar movement, synchronize horizontal scroll bar movement, listview header tooltip, working days between two dates, addition of holidays, flat listview column header, freezing windows updates, highlighting multiple listview columns, sundays between two dates, saturdays between two dates, searching collections. Please contribute and enjoy.
Trial Software Permette di usare il software per 30 volte
Mixer with crossfader - V5.00 Remixed By Stuntmaster (updated) Same as my programs before, but decided to give this a facelift. 3.50 was buggy as hell, 4 is even worse so i wen't back to 3 and improoved it and I bring you Ver 5. hope you like it.
CDPly105.ZIP This is a CD Player with some additions... like BUTTONS to select a specific track... and an elapsed time Progress Bar (the WinMedia.BAS module shows how to do this). This based on a VB Microsoft example.
Pokemon Cawi Version I did Pokemon Cawi Version because I used to be a fan of pokemon game series. I just try if I can do it and somehow I did it luckily...
SerialHunter by Rajendra Khope I found many sites drops trojan horses, viruses, malware while we search the cracks/serial. This is a Search engine for serials on the net providing safe and sound interface, it uses XmlHttp request. Also its good to have serial than crack/patch. I know all this is not legal. But we can use better software for at least learning. Its better to purchase them for Professional use. The code is not still optimised, but i'm working on it. You can post your queries. don't put improvements to it, as i've done this App in just 3 to 4 hours. bye!
Save, Retrieve Image from Database (MSSQL) 1 - Using ADODB 2 - Save image file to MSSQL (column type = image) 3 - Includes a function to resize the image. Download also the VB.NET version http://www.planet-source-code.com/vb/scripts/ShowCode.asp?txtCodeId=7537&lngWId=10
Loading C++ DLL In Visual Basic Well i have been studying combining C++ with Visual Basic. See C++ offers power while Visual Basic offers Rapid Development. The Limitations Visual Basic may have can be over taken with a bit of help from C++. With that said, I introduce to you my attempt at CPP with Visual BAsic programming. After some research and studying of using the DLL with vb, i've put it to code base on my understanding. Now The first two functions will work. but you must compile the program, leave the DLLs in the Debug folder CPP would provide. The Program fails on MultiplyAll on my System, maybe it might do better on yours but being a programmer, real programmers never let anything beat us so i will try to figure out why multiplyall is recieving error and i will reupload the corrected.. Thanks. Experiment with the code, use my comments section for any discussion you wish to have on CPP DLL and VB. TECH NOTES UPDATE: Tech notes and Findings: Well since the post. I have done some more practices on it. As a result i've found, that visual C++ does actually passes the arguments, this is tested when i called a MessageBox from out of the C++ DLL. Notice, that prior to the Bad Dll Calling Prevention you would get an email listing the data you sent. This is because the DLL is recieving the data, it is compatible with the data being sent to it. i used how ever LPSTR for the data type giving and passed. Now the problem comes when it returns a value back to the DLL. For some reason visual basic, is reading our Function as a Sub Routine so it's like it's expecting us to be calling a sub routine. This is tested when i created a TellUser function in C++. I noticed the function was void. returned no value but instead of calling it as a sub routine i called it as a function and as a result i recieve similiar error however when i called it as a sub routine it recieved no error. So i will study and dive deeper into this. Also i have also found that Dev C++ allows full DLL calling. in that i used the following extern "C" __declspec(dllexport) __stdcall LPSTR MessageMe(LPSTR message); from the function i made it send a message box containing the message. Through my studies on it, i've realize DevC++ does not like the .def declaration. but how ever it listed the function and called with out an error visual basic. my attempt to use the similiar line in visual c++ failed prompting me to believe that C++ does not like DevC++ calling methods where as DevC++ does not like C++ calling methods. Norm Cook, i try and experiment with your suggestion, believe me you will read the results here in the future posting.
Load Image Example This is another simple Graphics program using the API. Depending on your knowledge of programming in visual basic. You may know that visualbasic offers a PaintPicture function that behaves similiar to bitblt function. Well, this code mainly goes the route of the bitblt function. If you don't know how to already by studying this code you will know a bit about loading a picture using the loadimage API function and display it using the BITBLT function. Experienced programmers may use my comments section to discuss the differences between using bitblt and loadimage API functions and using the LoadPicture and DrawPicture function. Please do experiment with the code, try your own MASK and SPRITE bitmap images, for those who want to learn how to make 2D games, the ability to do this is a place to begin.

Page 1 of 2514 found. Entries 1 - 20 of 50279 found

Next 20 entries


 

Categories | Articles and Tutorials | Advanced Search | Recommended Reading | Upload | Newest Code | Code of the Month | Code of the Day | All Time Hall of Fame | Coding Contest | Search for a job | Post a Job | Ask a Pro Discussion Forum | Live Chat | Games | Feedback | Customize | Visual Basic Home | Site Home | Other Sites | Open Letter from Moderators | About the Site | Feedback | Link to the Site | Awards | Advertising | Privacy

Copyright� 1997-2009 by Exhedra Solutions, Inc. All Rights Reserved.  By using this site you agree to its Terms and Conditions.   Planet Source Code (tm) and the phrase "Dream It. Code It" (tm) are trademarks of Exhedra Solutions, Inc.