Car Hire Management System ?

Mar 23, 2011

I want to learn by resolving a problem i have been having with my small car hire business.

I want to develop a system which will enable me manage the business efficiently, the solution should be able accessible to more than 1 users, on my LAN and i would also like to have a web reservation system.

How easy/difficult is this when using VB.Net and what things must i do at the onset to achieve my goal.

View 3 Replies


ADVERTISEMENT

Private Taxi Hire System For Use By The Company Secretary?

Apr 2, 2010

i'm doing my last year computing project for A Level (using vb.net) and i just need a bit of advice on how to implement something.My system is basically a private taxi hire system for use by the company secretary. They add customers, new drivers, new bookings etc.Add the moment that is all basically coded, with connections to my database etc.

However i was advised that in order not to slip up i need to have a way by when making a booking if one driver is already booked up at the same time he/she is not available. Basically an intelligent booking system that takes into account cancellations, time clashes etc instead of just simply typing in details of a booking and clicking "save".

View 35 Replies

Cannot Seem To Use System.Management

Jun 14, 2011

I am using VB Express 2008, and I'm experimenting with querying WMI. I have tried the code samples from MSDN, but they do not compile. Here is an example of code that my IDE doesn't like:

Imports System
Imports System.Management
Public Class Query_SelectQuery
Public Overloads Shared Function _

[code]....

In this case, SelectQuery and ManagementObjectSearcher are underlined with squiggly blue, and it doesn't know what these are. What am I missing here? Please help, because I'd love to be able to write console apps that query WMI.

View 2 Replies

Can't Authenticate Using System.Management And WMI

Jun 16, 2009

I'm trying to write some code that can read events from another computer's event log. I haven't used WMI or System.Management all that much before this, and despite all the examples I've found on the web (there's a lot), I cannot authenticate to another machine.

No matter how I tweak the code, I always receive a System.UnauthorizedAccessException in System.Management.dll. (The message is "Access is denied. (Exception from HRESULT: 0x80070005 (E_ACCESSDENIED))".) I have tried connecting to two different Vista machines on the network using their local user account information.[code]...

View 1 Replies

Library Management System?

Sep 10, 2009

I am the beginner to .net framework itself.I am too confused whether to use asp.net using vb or just visual basic is enough?As I am just thinking over this topic.I feel this is not a website so not to go for asp.net.I thought to do it in

View 2 Replies

System.Management And Windows 7?

Dec 30, 2010

I'm using System.Management to get information about the computer like cpu id, mac address etc

Can i use it with win7 without problems because i know win7's security is not easy to work with.

View 3 Replies

Add MDI Parent For Library Management System?

May 17, 2012

As the beginner I want to know Is it necessary to add MDI parent for Library management System?

Can this be done without MDI Parent too?

And also is it necessary to add the below code for mdi parent of every project?
Private Sub ShowNewForm(ByVal sender As Object, ByVal e As EventArgs)
' Create a new instance of the child form.

[Code].....

View 5 Replies

Building An Management Information System?

Jul 21, 2011

I've been assigned to do some report analysis in a management information system.My question is, do you think it's a efficient way to gather datas from SQL, with the use of basic syntax and have them manipulated through my code in VB.NET?(I'm more skilled with this kind of execution, but it takes a lot of data calling from the database)Or should I just do the advance way of inner jointing or more likely a stored procedure?

View 2 Replies

Create Database Management System?

Feb 14, 2010

create database management system in vb 2008

View 2 Replies

Design A Pizza Management System In VB?

Feb 8, 2010

Designing the system of Pizza Management...I prefer to use vb.net language for developing because its more easy and more deploy able than others.

View 2 Replies

Get Using System.Management On Remote Computer

Jun 10, 2010

Can you use System.Management to get CPU and memory information from a remote computer?

View 4 Replies

System.Management Mediatype Values?

Feb 24, 2009

I ran accross this piece of code that uses the System.Management to get the free space on a drive for ONLY logical drives on Hard disks drives. It does this by check the Mediatype. Anybody know where I can find a listing of the Mediatype values? I would like to modify this to get free space only from USB flash drives.

[Code]...

View 2 Replies

VS 2010 System.management Object?

May 2, 2012

I have read a ton of stuff about this but not getting it, noob error I am sure

Type 'System.Management.ManagementObject' is not defined.
Type 'System.Management.ManagementObjectCollection' is not defined.
Type 'System.Management.ManagementClass' is not defined.

[code].....

View 4 Replies

Asset Management System - Barcode Reader?

Jan 11, 2012

I'm looking at creating an asset management system for all our electrical equipment, the equipment already have security labels with barcodes on them. What I am wanting is to be able to do is create a form where i can state some general information about the piece of equipment and then scan a barcode to register the equipments security number. so that if an employee needs to use that piece of equipment off site then I can just scan the barcode and register that the employee has taken the equipment.

My understanding is that the barcode reader is generally plug and play and acts as an input device? So what I would need to do is find a way to identify which input device is used, and if it is the reader find a way to assign a labels text to the value that has been read, rather that insert it into a textbox? I also want to display the actual barcode itself above the label, so I assume I would need to re-generate the barcode as an image and then display the image?

View 2 Replies

Create A Child Management System For A Nurse Using .net And SQL?

Jun 5, 2011

Basically I am trying to create a child management system for a nurse using vb.net and SQL as my backend dbThe application consists of a number of differen forms. Two of these forms are called "frmSearchInfo" and "frmChildDetails".

frmSearchInfo consists of:
- three textboxes "SFirstName" "SLastName" and "SDOB"
- one button "BtnSend"

[code].....

When users enter details on form "frmSearchInfo" I want it to be able to search records in the database and return the same first name, second name and DOB as well as the ID, phone, addressline1, addressline2, county. I also want the datagrid to show dates of appointments for the children.The records needed are stored in the Child Table.

View 3 Replies

Generic Failure With System.Management.ManagementObjectSearcher?

Apr 3, 2011

I have some software that does the following code to try to loop through the software (MSI's) that are installed on a machine. Originally it was passing in a package name as a parameter, but I've simplified my code to make it easier to follow. It was working before, I can't figure out why it's not now. Here's an example snippet with a package that doesn't exist:

Dim
sProdQrySql As
String

[code].....

View 3 Replies

Remote Registry Read Via System.management?

Apr 4, 2008

I need to read the value of one subkey located under a list of 17,000 keys in windows registry. I have no problem doing it locally but cannot get the system.management name space to do the same remotely. I know MSDN documents the system.management name space but much more knowledge is assumed than in other areas I have used. Assume no problems with connection and authentication.[code]....

View 16 Replies

System.Management.ManagementException: Invalid Parameter?

Oct 21, 2010

I have created a windows Service which invokes executables on remote machines, waits for it to complete and then proceeds to the next machine on the network.

The Account type for the windows Service is "Network Service". For monitoring if the process is completed on the remote machine, I am using ManagementEventWatcher class. I get the following error when I start the Management event watcher object.

[Code]...

View 1 Replies

DB/Reporting :: Charity Library Management System - VS2010

Aug 15, 2011

I have read syedwaqasali95's thread but found it rater confusing so thought I would post my query separately I am trying to build a library system for a local blind person's charity using Visual Basic. Their current system of recording is an Excell Spreadsheet that was created for them by someone else. What they have asked for is something more User Friendly.I thought about using Access first, but I wanted to hide the Data where it couldn't be modified by accident, and I wanted to make it as user friendly as possible so I opted for a VB WindowsFormApplication that will have a simple user interface albeit having to get more complicated under the hood.The library has two types of items that they lend, Audio Books, and Music CD's. Also there will need to be a record of the members creating three tables for my database.I should state that the library has a laidback lending approach whereby it is less worried about how long you borrow a book or CD, rather it just wants to keep a record of the location of said items.

I need help/pointing in the right direction with the following things 1) I want to prevent any ability to directly edit the datagridview data instead I want the user to highlight the entry in the datagridview, and then click an edit button which will open a form containing the record to be edited.

2) I want to be able to call information from the borrowers database, and to be able to apply it to the books data, so that the user can see who has what book at any given time.

e.g. the user highlights a record in datagridview and clicks the "Lend" button, this pops out a form allowing the user to search/choose from the list of members, once a member has been selected the save button (or confirm lend) would add the member info to the book table and close the form

3) I have a large amount of data (1500 records) in the original excel document, I would like to import these (once the database is ready to be compiled) so that they don't have to be re-input.

View 4 Replies

Free Open Source Document Management System .net

Apr 30, 2011

I am looking for an open source .net DMS. I know in the post below there are some c++ but am not familiar with it so that would be much help.I found this post but is was asked back in 2009 so there might have been some progress or additions to this? Open Source Document Management System in .net? The reason for open source is that I would like to be able to integrate it into something else later on. I would also need it to be a desktop based system and not web based.

View 1 Replies

Making A Project Of Library Management System In .net 2005?

Jun 22, 2010

I am a student of PGDCA. making a project of LIBRARY MANAGEMENT SYSTEM IN VB.NET 2005 VERSION.

View 4 Replies

Reading The Message Of The Event Log Using System.Management Class?

Nov 2, 2011

I am able to query/read the "Application" event log using System.Management classes in VB.net 2005 (win xp)But I have problem reading the "Message" / "description" of my custom event log.I am getting a System.NullReferenceException{"Object reference not set to an instance of an object."} while reading the "Message" / "Description of the event log while it is reading the others properties.Also when I use System.Diagnostics.EventLog and read all the Events on by one I am able to read the message/description of my custom event log. Why is that the System.Management classes can't read the my custom event log messages while the System.Diagnostics.EventLog classes can read them.The reason I want to use System.Management classes is bcoz I can query my custom event log where as with System.Diagnostics.EventLog classes I have to read the whole event log.

View 2 Replies

Source Codes For A Restaurant Management System Project?

Nov 4, 2009

and Send me some codings for a restaurant management system project using any programming language preferably VB6,VB.NET,PHP&MYSQL,HTML with Javascripts[i][color=#000099][size=3][font=Times New Roman]

View 2 Replies

Coding An Asset Management System For Telecom As The Major Project?

Apr 4, 2012

I am coding an asset management system for telecom as my major project.It features submitting asset information,retrieving an asset information by entering the id of the user responsible for it,checking the number of live,stock and scrap assets and downloading it in an excel file and updating any asset information if needed.It has an admin login to it and even a change password form.

View 2 Replies

Developing An Inventory Management System / Loaded And Displayed On Listview

Jun 6, 2011

am developing an inventory management system. have two listview controls. one for ITEM and another for details pertaining date, quantity, cost, issued to and so on. i want a vb.net code that if a given item in listview A is clicked, listview B details are cleared and then the details of that item are loaded and displayed on listview B.there is no criteria of loading like between a range of dates; just all records in the database.

View 1 Replies

NullReferenceException While Reading The Description Of The Event Log Using System.Management Class?

Jan 25, 2011

I am able to query/read the event log using VB.NET 2005 (Win XP). But still I have a problem reading the "Message" / "description" of the event log.I am getting a System.NullReferenceException while reading the "Message" / "Description" of the event log.Also when I use System.Diagnostics.EventLog and read all the Event on by one I am able to read the message/description of the event. This is the code:

Public Sub ReadEvent()
Dim iCount As Int16
Dim PastFourHours As Date = Date.Now.AddHours(-4)[code]......

View 1 Replies

Create A Form That Managing The Access Level Of User Management System?

Oct 7, 2008

I try to create a form that managing the access level of user management system.The model I use is the following :I create a connection to database I create a DataAdapter to transfer the data from the database I create a Dataset to hold my data My form consists of the following :A ListBox that list all the access level namesThree text boxes: the first for the record ID The second for the access level name And the third for the discription of the access level Five check boxes:One for writing rights One for the deleting rights One for the Updating rights One for Printing rights And one for Special area access rightsSo what i do is the following :I create a connection string I create a new connection to my database server I create the DataAdapter I initializing the DataAdapter command such as SelectCommand, DeleteCommand, e.t.c.I fill my DataSet with the data DataAdapter get from DataBase I binding my controls to DataSet I setting the DataSource property of the ListBox to my DataSet I setting the DisplayMember to the ACCL_NAME column of the DataTable inside the DataSet I setting the ValueMember to ACCL_ID column of the DataTable inside the DataSetUntil this time all are fine ! ! !The question is :When i try to add a new row to dataset by using the following code i have a problem :

Dim newRow As DataRow = Dataset.Tables("TableName").NewRow newRow("COLUMN_NAME") = Binded Control Value DataSet.Tables("TableName").Rows.Add(newRow)

View 3 Replies

Managementexception : Unparsable Query While Using Start()method Of System.management.managementeventwatcher

Apr 17, 2011

I am getting a Managementexception : unparsable query while using start()method of system.management.managementeventwatcher.

[URL]

View 1 Replies

ManagementObjectSearcher Is Not Defined Even After Adding System.Management Reference In VB2005 Project?

Oct 18, 2011

I have the following code on the code behind file for a .aspx page in a project:

Dim searcher As New ManagementObjectSearcher("SELECT RemoteName FROM win32_NetworkConnection WHERE LocalName = '" & sFilePath.Substring(0, 2) & "'")
For Each managementObject As ManagementObject In searcher.[Get]()

[code]....

View 2 Replies

Data Management - Changing Current Database System, MS Access 2007 Front End And MS SQL Server 2005 Backend

May 8, 2012

We are thinking about changing our current database system, MS Access 2007 front end and MS SQL Server 2005 backend to using a higher level language such as Visual Basic .Net. I wonder if this is the BEST solution for data management? Currently, among others, we have two big database programs that handle more than two hundred users and it's crashed often. That's the reason we think about changing to something that can handle these database programs effectively preferably using MS technology such as .Net.

View 12 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved