Download

Download

Featured Posts

Featured Articles
All Stories
Showing posts with label SYSTEM PROJECTS. Show all posts
Showing posts with label SYSTEM PROJECTS. Show all posts

Latest VLSI PROJECTS FREE DOWNLOAD WITH DOCUMENTATION




Latest VLSI PROJECTS FREE DOWNLOAD WITH DOCUMENTATION/VLSI PROJECTS 


1. A Novel Carry-Look ahead Approach to an Unified BCD and Binary Adder/ Subtractor
2. Speculative Carry Generation with Prefix Adder Using VHDL / Verilog
3. Improving Error Tolerance For Multithreaded Register Files
4. Higher Radix and Redundancy Factor for Floating Point Sort Division using VHDL/ Verilog
5. Area-Efficient Arithmetic Expression Evaluation using Deeply Pipelined Floating Point Cores using VHDL
6. Reconfigurable Architecture for Network Flow Analysis
7. The Reconfigurable Instruction Cell Array
8. System Architecture and Implementation of MIMO Sphere Decoders on FPGA
9. Applying Dynamic Reconfiguration for Fault Tolerance in Fine-Grained Logic Arrays
10. Register for Phase Difference Based Logic
11. Designing Efficient Online Testable Reversible Adder with New Reversible Gate
12. High Speed Recursion Architecture for Map- Based Turbo Decoders
13. Concurrent Error Detection in Reed Solomon Encoders and Decoders
14. LFSR-Reseeding Scheme Achieving Low-Power Dissipation during Test
15. FPGA Implementation of Low Power Parallel Multiplier
16. Low Power Multiplier with Superious Power Suppression Technique
17. Abstraction and Refinement Techniques in Automated Design Debugging
18. Concurrent Error Detection in Reed Solomon Encoders and Decoders
19. Implementation of AES on A Dynamically Reconfigurable Architecture
20. Designing Efficient Online Testable Reversible Adder with New Reversible Gate
21. FPGA Implementation of Low Power Parallel Multiplier
22. Compact Hardware Design of Whirlpool Hashing Core
23. A Combined Gate Replacement and Input Vector Control Approach for Leakage Current Reduction
24. A High Efficiency fully Digital Synchrouns Buck Converter Power Delivery System Based on Finite State Machine
25. X-Masking During Logic BIST and Its Impact on Defect Coverage
26. New techniques for untreatable fault identification in sequential circuits
27. New and Improved BIST Diagnosis Method from combinatorial group testing theory
28. Energy Management for battery powered Reconfigurable computing platforms
29. Design specific path delay testing in look up table based FPGA
30. Diagnosis of Logic Circuits Using Compressed Deterministic Data and On-Chip Response Comparison
31. Improving Linear Test Data Compression
32. Exact and Heuristic Approaches to Input Vector Control for Leakage Power Reduction
33. Extraction Error Modeling and Automated Model Debugging in High-Performance Custom Designs

Tags:
    Keywords:VLSI/VHDL PROJECTS, ECE, IEEE ECE PROJECTS, IEEE EEE PROJECTS, IEEE Electronics projects, IEEE PROJECTS, IEEE TIPS, Vehicle Management System, SYSTEM PROJECTS, ALL DEPT, HOW TO, OTHERS, 
5:16 PM - By Admin 0

Write c program which shutdown the window operating system ?

Write c program which shutdown the window operating system ?


Write the following program in TURBO C.
void main(void)
{
system("shutdown -s");
}
Save the above .Let file name is close.c and compile and execute the above program. Now close the turbo c compiler and open the directory in window you have saved the close.c ( default directory c:\tc\bin) and double click the its exe file(close.exe).After some time your window will shutdown.

7:26 PM - By Admin 0

OFFLINE BROWSER-FREE MINI PRJECT WITH SOURCE CODE AND DOCUMENTATION-C#.NET

Offline Browser

Description :
Offline browser is a software that allows you to download a world wide website from internet to a local directory, building recursively all directories, getting html pages, and other files from the server to your computer. It is system based software. It can be used in the system as a utility. The software can be used to download any levels of link as per user’s settings. We just need to input the website name and the number of levels of links which we wish to download.
Technology : System,C#.NET
View Abstract :
Detailed Abstract


DOWNLOAD


Sample Image - OfflineBrowser.jpg
While browsing a message board a few days back, I noticed that someone wanted a utility to download only selected files for offline browsing. Seemed to me like an useful tool to have, so I wrote one.
While IE does let you download files for offline browsing, you have no control over which files are downloaded, you may just want a few, not all of the pages. This utility will give you that control.
To run this application, you will require IE 4.01 or above, as it is based on the WebBroswer2 control provided by IE. What the app does is pretty simple. You can specify a list of file specifications (*.html, r*.htm, etc...) and then choose a start page to start downloading from. Also you can specify the number of levels you want to download. The default is 0, which is rather useless. So for e.g., if you ask for 2 levels - all links which match the specifications you have entered will be followed down to 2 levels.
The application by itself is based on a CHTMLView which creates an IE WebBrowserApp control and runs it. All I really have done is create a class CHTTPLineHolder which takes a LPDISPATCH (interface to a WebBrowserApp) and uses it to download pages into your local system cache.
So, the basic logic followed is as follows:
NavigateToPage - ( URL to navigate to )
{
    Store Page Into Cache
    GetAllLinksWithinPage 

    For Each Link which satisfies  File Spec given 
        NavigateToPage ( Current Link)

}
This by itself will download the file - but to store it, a couple of calls to the WinInet library have to be made. These calls get a cache file name and store the page into the file. As this file name is got through WinInet, any application (including IE) which uses WinInet can use this cache.
Also, the whole operation is done on a separate thread, so as to allow painting by the main view. So as each page is got, you get to see it in the main view window.
The methods which do the work are:
CHTTPLinkHolder::ReadPage(const CString& szUrl)
and
CHTTPLinkHolder::ReadPageIntoCache(const CString& szURL)
To use the application, first choose View | File Extensions.. and add or delete items from the list until you have only the specs you need. You can use wildcards here so, "*.htm", "a*b?c.htm" etc. are valid specs. Next, choose View | Start... You will be asked for a starting page and the number of levels to download, enter this info and click OK. And once this process is over, go to IE, make sure your Offline Browsing option is set and choose the same start page you entered in the application. And you should be able to view the files you downloaded. Exceptions of course are dynamic content files which may not be downloaded as expected.
So - Happy Offline Browsing.

USEFUL LINKS 
1.www.tricksnew.blogspot.com 
2.www.freeminiproject.blogspot.com 
3.www.freeplacementpaper.blogspot.com 
4.www.annaunivquestionbanks.blogspot.com
12:06 PM - By Reetha 0

FREE MINI PROJECT FOR C#.NET - Online resume mart

FREE MINI PROJECT FOR C#.NET - Online resume mart


Online resume mart

Description :
This is a small project for managing personal contact details. you can add, edit, and delete contacts and addresses. a data grid displays all available contacts. you can select any contact in the grid and press the 'edit' button to edit the details. when the 'edit' button is pressed, all fields will become editable. after completing 'editing', press the 'save' button to save the details to database.
Technology : System,C#.NET
View Abstract :
No Abstract Available
DOWNLOAD

USEFUL LINKS 
1.www.tricksnew.blogspot.com 
2.www.freeminiproject.blogspot.com 
3.www.freeplacementpaper.blogspot.com 
4.www.annaunivquestionbanks.blogspot.com
11:19 AM - By Reetha 0

free C#.net mini project with documentation-address

Address book
Description :
this is a small project for managing personal contact details. you can add, edit, and delete contacts and addresses. a data grid displays all available contacts. you can select any contact in the grid and press the 'edit' button to edit the details. when the 'edit' button is pressed, all fields will become editable. after completing 'editing', press the 'save' button to save the details to database.
Technology : System,C#.NET
View Abstract :
No Abstract Available
DOWNLOAD
USEFUL LINKS 
1.www.tricksnew.blogspot.com 
2.www.freeminiproject.blogspot.com 
3.www.freeplacementpaper.blogspot.com 
4.www.annaunivquestionbanks.blogspot.com

11:06 AM - By Reetha 0

Snakes project IN ADVANCED - game

Snakes
Description :
It's a Snakes game where you play vs the computer. The objective of the game is to make the other player crash.
Technology : System,JAVA
View Abstract :
No Abstract Available
DOWNLOAD
12:46 PM - By Reetha 0

Vehicle Management System

Vehicle Management System
Description :
Vehicle Management System is software which is helpful for bus operators, who wants to operate many bus trips in a day. Vehicle Management System is a windows application written for 32-bit Windows operating systems which focused in the area of adding, editing and deleting the passengers, staff and the bus routes.
Technology : System,JAVA
View Abstract :
Detailed Abstract
DOWNLOAD
12:43 PM - By Reetha 0

File Compression Sunzip(HUFFMAN Algorithm)File Compression Sunzip(HUFFMAN Algorithm) free mini project download with source code and documentation




File Compression Sunzip(HUFFMAN Algorithm)
Description :
File Compression lets you reduce the overall number of bits and bytes in a file so it can be transmitted faster over slower Internet connections, or take up less space on a disk. Domain File compression is a System Based Software.
Technology : System,JAVA
View Abstract :
Detailed Abstract
DOWNLOAD
12:38 PM - By Reetha 0

Student Management System free mini project download

Student Management System
Description :
Student Management System is software which is helpful for students as well as the school authorities. Our Student Management System deals with the various activities related to the students. There are mainly 3 modules in this software • User module • Student Module • Mark management In the Software we can register as a user and user has of two types, student and administrator. Administrator has the power to add new user and can edit and delete a user. A student can register as user and can add edit and delete his profile. The administrator can add edit and delete marks for the student. All the users can see the marks.
Technology : System,JAVA
View Abstract :
Detailed Abstract
DOWNLOAD
12:30 PM - By Reetha 0

Library Management System

Library Management System
Description :
The project titled Library Management System is Library management software for monitoring and controlling the transactions in a library .The project “Library Management System” is developed in java, which mainly focuses on basic operations in a library like adding new member, new books, and updating new information, searching books and members and facility to borrow and return books.“Library Management System” is a windows application written for 32-bit Windows operating systems, designed to help users maintain and organize library
Technology : System,JAVA
View Abstract :
Detailed Abstract


DOWNLOAD
12:23 PM - By Reetha 0

Exam Suit FREE MINI PROJECT IN JAVA WITH SOURCE CODE AND DOCUMENTATION

Exam Suit
Description :
The project “Exam Suite” is developed in Java, which mainly focuses on basic Exam operations. “Exam Suite” is a windows application written for 32bit Windows operating systems, designed to help users to write exams. The software Exam Suite has 3 main modules.  Login Module  Insertion to Database Module  Extracting from Database Module
Technology : System,JAVA
View Abstract :
Detailed Abstract
DOWNLOAD
12:04 PM - By Reetha 0

Online shopping JAVA PROJECT

Online shopping
Description :
Shopping online
Technology : System,JAVA
View Abstract :
No Abstract Available


DOWNLOAD
10:50 AM - By Reetha 0

JAVA PROJECT ON Bank application system

Bank application system
Description :
This project contains various bank application system control
Technology : System,JAVA
View Abstract :
No Abstract Available


DOWNLOAD
10:45 AM - By Reetha 0

Placement office automation PROJECT ON JAVA

Placement office automation
Description :
placement office automation
Technology : System,JAVA
View Abstract :
No Abstract Available


DOWNLOAD
10:37 AM - By Reetha 0

Flight reservation system JAVA FREE PROJECT

Flight reservation system
Description :
Flight reservation control system uses java.
Technology : System,JAVA
View Abstract :
No Abstract Available


DOWNLOAD
10:30 AM - By Reetha 1

Labels

AI PROJECTS (8) ALL DEPT (42) BCA (22) BE (13) BSC (20) BTECH (17) C PROJECTS (4) C#.NET (19) C++ PROJECTS (2) CHEMISTRY (3) CIVIL (25) CSE (94) DIPLOMA (22) DOWNLOADS (60) ECE (37) EEE (39) FINAL YEAR PROJECTS (30) HOW TO (58) HTML PROJECTS (4) IEEE PROJECTS (108) IT (85) MATLAB PROJECTS (8) MBA (1) ME (19) MINI PROJECTS (97) MSC (17) MTECH (18) MYSQL PROJECTS (6) NETWORK PROJECTS (7) OTHER PROJECTS (67) OTHERS (28) PAPER PRESENTATION (4) PG (18) PHP PROJECTS (7) PROJECTS (5) SOURCE CODES (22) SYSTEM PROJECTS (15) UG (17) VB PROJECTS (15) WHITE PAPER (19) mca (73) mech (4)

Blog Archive

Total Pageviews

Discussion

Followers

Powered by Blogger.
back to top
Don't Forget To Join US Our Community
×