'1000projects.com' is an educational content website dedicated to finding and realizing Final Year Projects, IEEE Projects, Engineering Projects, Science Fair Projects, Project Topics, Project Ideas, Major Projects, Mini Projects, Paper Presentations, Presentation Topics, IEEE Topics, .Net Projects, Java Projects, PHP Projects, VB Projects, SQL Projects, C & DS Projects, C++ Projects, Perl Projects, ASP Projects, Delphi Projects, HTML Projects, Cold Fusion Projects, Java Script Projects, Btech Projects, BE Projects, MCA Projects, Mtech Projects, MBA Projects, Project on Software, CBSE Projects, Testing Projects, Embedded Projects, Chemistry Projects, Electronics Projects, Electrical Projects, Science Projects, Mechanical Projects, Mba project Reports, Placement papers, Sample Resumes, Entrance Exams, Technical Faq's, Puzzles, etc
how it works?
Everything on this site is submitted by the students in this professional community. You Can submit your Projects, Project Topics & Ideas to info.1000projects{at}gmail.com after you submit your project/project Idea/Abstract/Seminar Topics, These are being verified and approved by our administrator. after approval of this project/project Idea/Abstract/Seminar Topics, It can be shown on 1000projects.com so that other users can read/discuss it.The entire content on this website is Only For Educational Purpose, Non Commercial use!
Please help us/Other Users by sending projects/project Ideas/Abstracts/Seminar Topics. Thanking You!!!!!
simple_particle_system
download the vb major project
VISUAL BASIC is a high level programming language which evolved from the earlier DOS version called BASIC. BASIC means Beginners' All-purpose Symbolic Instruction Code. It is a very easy programming language to learn. The code look a lot like English Language. Different software companies produced different versions of BASIC, such as Microsoft QBASIC, QUICKBASIC, GWBASIC ,IBM BASICA and so on. However, people prefer to use Microsoft Visual Basic today, as it is a well developed programming language and supporting resources are available everywhere. Now, there are many versions of VB exist in the market, the most popular one and still widely used by many VB programmers is none other than Visual Basic 6. We also have VB.net, VB2005 and the latest VB2008, which is a fully object oriented programming (OOP) language. It is more powerful than VB6 but looks more complicated to master.
VISUAL BASIC is a VISUAL and events driven Programming Language. These are the main divergence from the old BASIC. In BASIC, programming is done in a text-only environment and the program is executed sequentially. In VB, programming is done in a graphical environment. In the old BASIC, you have to write program code for each graphical object you wish to display it on screen, including its position and its color. However, In VB , you just need to drag and drop any graphical object anywhere on the form, and you can change its color any time using the properties windows.
On the other hand, because the user may click on a certain object randomly, so each object has to be programmed independently to be able to response to those actions (events). Therefore, a VB Program is made up of many subprograms, each has its own program code, and each can be executed independently and at the same time each can be linked together in one way or another.
1.3 What programs can you create with Visual Basic 6?
With VB 6, you can create any program depending on your objective. For example, if you are a college or university lecturer, you can create educational programs to teach business, economics, engineering, computer science, accountancy , financial management, information system and more to make teaching more effective and interesting. If you are in business, you can also create business programs such as inventory management system , point-of-sale system, payroll system, financial program as well as accounting program to help manage your business and increase productivity. For those of you who like games and working as games programmer, you can create those programs as well. Indeed, there is no limit to what program you can create ! There are many such programs in this tutorial, so you must spend more time on the tutorial in order to learn how to create those programs. If you wish to see some of the sample programs, you can take a look at the link below:
download btech projects, download be projects, download software projects, download computer projects, download engineering projects, download .net projects, download java projects, download source code, download php projects, download final year projects, download mca projects, download paper presentations
Visual Basic (VB) is the third-generation event-driven programming language and integrated development environment (IDE) from Microsoft for its COM programming model. Visual Basic is relatively easy to learn and use.
Visual Basic was derived from BASIC and enables the rapid application development (RAD) of graphical user interface (GUI) applications, access to databases using Data Access Objects, Remote Data Objects, or ActiveX Data Objects, and creation of ActiveX controls and objects. Scripting languages such as VBA and VBScript are syntactically similar to Visual Basic, but perform differently.
A programmer can put together an application using the components provided with Visual Basic itself. Programs written in Visual Basic can also use the Windows API, but doing so requires external function declarations.
The final release was version 6 in 1998. Microsoft's extended support ended in March 2008 and the designated successor was Visual Basic .NET (now known simply as Visual Basic).
Dot net is a collection of technologies, which is used to integrate many small technologies to a single large technology such that a powerful application can be, designed which can be used from anywhere anytime.
CLS: - it is a set of rules, which is given by .net technology, which has to be followed by any .net language.
It is not mandatory for any lang. To support all the rules supported by the CLS.
But the language has to support the features provided by the CTS, which will be used by the CLS for its verification.
Common Type system: - it is a collection of type definitions provided by the .net framework, which has to be used by the languages, which targets .net
Note: all the languages have to support the CTS type definitions.
If any language supports a data type, which is not supported by, the CTS type definitions then that language should not use that data type if the application targets to .net
Windows forms: - they are used to design desktop applications
Asp.net: - asp.net is used to design 2 types of applications
Web forms -> used to design web applications
Web services -> it is a set of instructions or a code which can be placed on the web which can be accessed by any applications written using any language for any platform or device.
Mobile forms -> used to design the device independent applications.
ADO.Net -> it is a new database connectivity model based on the namespaces to interact with any databases or XML.
Base Class Libraries -> it is a rich class libraries provided by the .net framework which can be used by any language which targets .net
This is like header file in C.
In java u have more than 2000 packages in .net you have more than 4000 packages and the advantage is can be used by any language.
Base Class Library support -> it is a resource used by the CLR in order to load the class definitions of the assemblies used by the application.
Type definitions: it is a resource used by the CLR in order to verify the type definitions used by the application
To achieve this CLR will take the support of the CLS
CLS: is a specification provided by the .net framework, which has to be supported or implemented by any language if it targets to the .net tech.
Note it is not mandatory for any lang. Which targets the .net Tech to support all the rules given by the CLS.
In order to verify the type definitions the CLS will take support of CTS.
CTS: is a collection of type definitions provided by the .net tech.
COM Marshalling: - it is a resource used by the CLR whenever the COM interoperability takes place.
This means that using the COM components in .net or .net components in COM type application.
Debug manager : It is a resource used by the CLR if any runtime error occurs to invoke the debugger such that code can be modified as per the requirement which allows to continue the processing of the application without terminating it.
Exception Manager : it is a resource used by the CLR to handle exceptions raised by the application. Provided we write the exception handling statements ie defined .if they r not handled then this resource is used to terminate the process of the application abruptly.
Security Engine: it is a resource used by the CLR to provide the access controllers to verify the security of the application.
Thread Support: Whenever the .net application uses multi-threading concept then the resources for those threads and handling of those threads will be taken care by this.
IL to native :- it is a just in time compilation process which converts the MSIL instructions to the native code of the OS.
Standard JIT: it is used to compile the entire MSIL instructions to the native code of the OS.
Echo Jit: when ever a method is been invoked then the relevant MSIL instruction will be converted into the native code of the OS.
Pre JIT: it is a process of identifying the system resource to invoke the relevant JIT compiler as per the requirement.
Code Manager: it is a resource used by the CLR to manage the code present in the application like threading, exceptions.
Garbage collector: - It is a resource used by the CLR in order to destroy the unused objects on a periodical basis such that the resources occupied by the unused objects will be released.
Management of Group of Hotels ( J2EE) Project The system aims at the maintenance and management of the different Hotels that are available in the different parts of the world. It mainly takes care of the Hotel management at the core area of the database. Digital Image Tracing By Sequential Multiple Watermarking .Net Project The possibility of adding several watermarks to the same image would enable many interesting applications such as multimedia document tracing, data usage monitoring, and multiple property management. Visa Processing System ASP.Net Project
The project “Visa Processing System” is an automated system. It describes the process of applying for visa. There are so many visa types provided by the government like H1-visa, Dependent visa. Getting a Visa, Visa issuance is a very objective decision, and is not subjective.A MINI PROJECT REPORT ON PORT SCANNER
A port scanner is a piece of software designed to search a network host for open ports. This is often used by administrators to check the security of their networks and by hackers to compromise it. An online port scanner will scan your computer looking for open ports.Advertisement Management System This is a website where different types of advertisements and classifieds are posted. Here the person, who wants to advertise their product, can choose different advertisement previews which are available in the advertisement template region. And client can order the advertisement by registering and conveying the requirements to the administrator.Alumni Information Database This project is aimed at developing a Repository and each Engine for alumni of the college, which is of importance to a college. The Alumni Information Database is a web based application that can be accessed throughout the World. Anyone can access the search Engine to know about any Alumni of that college but can’t able to add. college management system This project is aimed at developing an Online Intranet College Management System (CMS) that is of importance to either an educational institution or a college. The system (CMS) is an Intranet based application that can be accessed throughout the institution or a specified department. COMM4 Efficient Packet Filtering in Wireless Ad Hoc Networks - U Wireless Mesh Networks (WMNs) have emerged as an important technology to deliver pervasive network access and ubiquitous mobile applications in various scenarios, such as disaster relief operations, ad hoc network support in convention centersCorporate Address Book Corporate address book mainly developed for an organization to store their employee’s personal data. The System consists of various users like the Administrator, HR manager and Employees. Everyone have their own responsibilities.HR manager has the privileges to add/delete the employees. Administrator registers the employees and allocates the IDs for the employees. Employees can login and store their personal data.Corporate Recruitment System1 The Main objective of this solution is to make easy the recruitment process of any organization. This CRS is designed by keeping in mind both parties Job providers and Job seekers. CRS allows Job seekers to register their details like skills and experience with the system, and then on the other hand even it allows job providers to post their requirements with the system. E LEARNING CODE You'll be attending the nation's largest accredited portal, with an unsurpassed reputation for educational excellence and student service. You'll also be earning one of the most current and relevant degrees offered in the areas of Business, Management, Technology Management, Information Systems, Education and Nursing. Best of all, most of our students complete their degree in just two or three years.E-Solution Provider This Web application provider is developed for an organization, which deals with attending customer requirements. This site provides online solutions for their customer’s. Once the customer is registered with the organizatione-Ticketing System The Ultimate motto of the project addresses all the problems that were faced by the current traveling agencies. Coming to the feasibility aspect the current project focuses on
Geo Spacial Matching for Image Retrieval Every day the average person with a computer faces a growing flow of multimedia information particularly via the Internet. But this ocean of information would be useless without the ability to manipulate, classify, archive and access them quickly and selectively. While text indexing is ubiquitous, it is often limited, tedious and subjective for describing image content. Greedy Routing for Wireless Sensor Networks The unreachability problem (i.e., the so-called void problem) that exists in the greedy routing algorithms has been studied for the wireless sensor networks. Some of the current research work cannot fully resolve the void problem, while there exist other schemes that can guarantee the delivery of packets with the excessive consumption of control overheads. HUMAN RESOURCE MANAGEMENT SYSTEM To develop a software application that supports the application specific to the HR automation in an intranet specific to a company there by allowing the integration of all the employees pertaining to that organization. To keep track of all the other departments related to that organization such as marketing, development etc.Implementaion of Eccentric Network for Intranetp Eccentric network is mainly used in software companies. Because many persons involve in completion of the project like team leader, project leader. Team members should finish their daily task and their source code should be stored in the main server. This is the day-to-day task done by the team members.Infrastructure Management System This is to certify that the project work entitled “Infrastructure Management System for Vishakhapatnam Steel Plant” is submitted by xxxx student of B.Tech third year in order to fulfill the required curriculum of the mini project to be submitted in the college. It is a bonafied record of work carried out by her in the IT Department of VSP.INTERCOM PROJECT The Intercom project lets two people type across the intranet. You just start up the project, connect with the click of a button, and you’ve got your own connection: everything you type into the intercom, the other user can see; every thing he or she types, you can see. Presto – your own private intercom over the intranet.Intranet Mail System The aim of the project was to develop an Intranet web based mail client system connecting to a Linux server running a mail server and with Apache as the web server. The aim was to implement the necessary functionality to the users such as receiving and organizing mails KEYPASS PASSWORD PROTECTION MANAGER In the present scenario every person is associated with some id and password. It may pertain to accessing the PC, the web, emails, financial institutions, access to credit cards, ATM’s etc. Most often a person tries to remember them in order to use it. It is always known that a person or individual confuses between passwords of different id’s. Some individuals in order to avoid confusion also adapt to use a common password for all id’s. MINI PROJECT Report on E-COPS This feature is made available to public for interaction with police indirectly. This system registers the complaints from people through online and is helpful to the police department in catching criminals. In this system any person can give any complaint anytime.multile service browsers The web consist of a vast world wide collection of documents called “pages”. Each page contains a number of links to other related pages, ONLINE BANK FINANCIAL SERVICES The project titled “Online bank Financial Services” is designed using Active Server Pages .NET with Microsoft Visual Studio.Net 2003 as front end and Microsoft SQL Server 2000 as back end which works in .Net framework version 1.1. The coding language used is VB.NET
Patient Information System New technologies have improved the ability of electronically storing, transferring and sharing medical data also changed. At the same time, they also create serious questions about who has access to this information and how they are protected. perfect project plan Project Scheduler is a simple, fast, accurate and easy to use with flexible options for viewing the essential details. The solution is best suited for individuals working on various projects, which helps to keep track of all the Projects and their Schedules. Recruitment Processing System The Recruitment Process System is Intermediate between Jobseekers and Employers. The purpose is to enable the Jobseekers to search for the jobs from any remote location. The Jobseeker can Search for the jobs from any remote location. The Jobseeker can Search for the jobs which with the Consultancy without actually visiting the Consultancy.Road Transport Authority Road Transport Authority (RTA) is an online information source developed for Road Transport Authority to facilitate the users in applying for various licenses and registrations. This tool has been designed to facilitate the flow of information within the organization.SCAR GLOBAL LIFE INSURANCE Coding This is an online project initiated by Scar Global Life Insurance. Main purpose of this project is to provide online services to do analysis on some important statistics of Miner insurance in the current market of India by gathering and analyzing and managing data which is available. The statistics will be used to prepare better insurance plans to boost up the Miner Insurance industry in India. Shift Management System SHIFT PLUS is a shift management system for maintaining and managing the schedules and related details of the employees working on different projects in different shifts. Moreover, the calculation and maintenance of comprehensive shift-related allowances for the employees is done using the system. This tool is a Web enabled system with increased efficiency and accuracy.Single-Link Failure Detection in All-Optical Networks Using Monitoring Cycles and Paths Main In this paper, we consider the problem of fault localization in all-optical networks. We introduce the concept of monitoring cycles (MCs) and monitoring paths (MPs) for unique identification of single-link failures. MCs and MPs are required to pass through one or more monitoring locations. A VLSI PROGRESSIVE CODING FOR WAVELET-BASED IMAGE COMPRESSION This paper describes the hardware design flow of lifting based 2-D Forward Discrete Wavelet Transform (FDWT) processor for JPEG 2000. In order to build high quality image of JPEG 2000 codec, an effective 2-D FDWT algorithm has been performed on input image file to get the decomposed image coefficients. An Algorithm for SAR Image Embedded Compression based on Wavelet Transform Synthetic Aperture Radar (SAR) image compression is important in image transmission and archiving. In this paper, SAR image compression using embedded zerotree wavelets algorithm, based on discrete wavelet transform (DWT),Automatic Railway Gate Control System The objective of this project is to manage the control system of railway gate using the microcontroller. When train arrives at the sensing point alarm is triggered at the railway crossing point so that the people get intimation that gate is going to be closed. COMMUNICATION ANTENNA SWITCHING SYSTEM BASED ON MICRO CONTROLLER Testing and simulation are important in the system behavior. The main objective of the simulation is to verify whether the design meets the specification. On many occasion the specification itself must be tested to determine if it meets the requirements. DAM LEVEL WARNING USING GSM (Global system for mobile communication) SMS The main goal of the project “DAM LEVEL WARNING USING GSM SMS” is to monitor and control the water level in the dams. Here with the help of some different sensors we are monitoring the different level of water using GSM technology.