Possible To Have An Access Back-end Database Available For Multiple Users On The Same Network?

Nov 5, 2011

I am developing a Visual Basic .NET application to be used by the staff of a small training centre nearby. The front-end (UI, menus, etc.) will all be in VB .NET, and there will be a back-end database for storing all of the required data, such as student records and meeting information. What I would like to know is if it's possible to use a Microsoft Access database for this purpose, and have it accessible by all the staff in the centre (on the same network) at the same time. For example, would I be able to put the database in a shared network folder, and have a copy of the VB application on each PC that would all be able to read/edit/add to the database?

View 2 Replies


ADVERTISEMENT

Access 2003 Network With Multiple Users

Apr 30, 2012

I know my Question was asked maybe 10000 times before, but i really did not take the chance to search the forum coz i really short of time.
I have *.mdb DataBase with 20 tables each table have more than 10 fields, i'm trying to automate the MDB file from a network like that 5 PCS + One vb.net exe program (5 users) working on the same time on the exe that is connected to the database , my questions are :

1) How much risk is it to put the database into one (shared) folder and connect it to the program ?

2) What is the best way to establish this method ?

3) Is there any alternatives ?

View 4 Replies

Developing An Access Database That Will Be Shared With Multiple Users?

Aug 22, 2008

I am developing an access database that will be shared with multiple users.I don't want the users to access the database directly so I will have them enter new data on a data access page. The data access page is stored on a Microsoft Share Point web page, and the database is stored on a network drive.Here is my problem: When new data is entered on the web page I need it to trigger a WillChangeRecordset event; however, I have not been successful because the web page does not declare a new instance of a recordset object.At a minimum I need the new data to be processed before the web page appends the new data to the table.

View 3 Replies

Use 1 Or Multiple Database Users?

Feb 26, 2009

I am on the brink of developping an application for myself and some collegues at work. I will use VB 2005 and SQL server 2000 or 2005.

Here is my question: When I build the connection string do I have to use only 1 database user for all of the users of the application or does each user need to have its own database user in SQL Server?

View 4 Replies

Prevent Direct Access To The Back-end Ms Access Database?

Nov 5, 2010

I have this problem, I can create a setup for my app/database but everyone can open the backend file which is an MS Access database. I want it so we can only access the database using the frontend app.

View 2 Replies

Save Data In Microsoft Access Database And Retrieving It Back From Database?

Nov 19, 2010

can anyone teach me how to save data in microsoft access database and retrieving it back from database?[code]so, how do i save it in that and how do i load their data by typing their ic no only..

View 5 Replies

Get A Value Back From An Access Database?

Nov 30, 2011

I am strugling to get a value back from an access database, what i am using is,

Public Shared Function ReturnTimes(ByVal DateValue As Date) As DataTable

Dim cmd As OleDbCommand = New OleDbCommand()
With cmd
.Connection = Database.conn

[Code]...

View 13 Replies

Roll Back In MS Access Database?

Feb 18, 2011

experts is it possible to roll back insert or update operation in ms access database..

View 1 Replies

Can't Get Datagridview To Write Back To MS Access Database

Oct 3, 2011

I am using MS Access 2003 and vb.net to develop a windows application of inventory management.

I have used datagridview in the form and using FillBytoolstrip option, can filter data using type.

But i have no idea as to how can i update the database to reflect the latest changes in the gridview.

following is the code I have used.

Private Sub BOM_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Me.PartnoTableAdapter.Fill(Me.HemDatabase1DataSet3.partno)
End Sub

[Code].....

View 1 Replies

Connect MS Access Database From A Network In 2005?

Jul 6, 2009

I want to connect an access dabase from a central server using vb.net 2005.

View 1 Replies

MS Access Database File On Local Network

Jun 22, 2010

I am working on a project based on networking. My problem is that database on server (time to time updated by clients Application) is available in shared folder sometime any client delete that database file from shared folder then project stopped working. So give me process for accomplish this problem is there any way through which is database on server work invisibly and client unable to delete that file. I tried read only attribute on shared folder then my project unable to insert record in that database file.

View 1 Replies

VS 2008 Connect To A Database On A Big Corperate Network (access Db)

Mar 3, 2010

I'm trying to connect to a database on a big corperate network (access db). I can not load my application and DB on a shared network drive as it does not have the correct permissions. How else can I try connecting to a db of some sort and allow users to insert/edit/delete rows? as it's a network drive I can not install a DB such as SQL Server on it.

View 4 Replies

Close All Connections To Access Db In Order To Back Up The Database File?

Nov 11, 2010

I have an application running with a access db. I have written some code to copy & zip the db file to another location (selected by the user) for the purpose of backup. (I am using sharpzipwrapper)Whenever I try to run the code for the copying & zipping it gives me an exception saying that the file cannot be zipped as it is use.Do I have to close all open connections in order to backup the .accdb file? If yes then how? else what do i have to do inorder to get 'access' to the file.Do I have to exit the application to close all connections? These connections are written in code for e.g. :

dim
cnStudent as
oledbconnection

[code].....

View 5 Replies

Your Network Access Was Interrupted - To Continue Close The Database And Then Open It Again

Nov 23, 2009

I have an access 2007 database that I have been developing a front end for in vb.NET for the past 3-4 weeks using vs2008 in a Windows 7 enviroment. Yesterday I started getting an error of "Your network access was interrupted. To continue close the database and then open it again." This happens in the Form Load on the line:

gotData = Me.LeaguesTableAdapter.Fill(Me.LeaguesSeasonsPlayersDataSet.Leagues)

I can go into access 2007 and view all the data fine and in vs2008 I can view the server explorer and browse the tables. However, under data sources if I try and preview the data, I get the same error message as before. What confuses me the most is that the database is not stored on a server is just stored in My Documents. It was origionally stored on my desktop pc but has been copied to the My Documents on my laptop. But as I mentioned previously it has been working fine and has just all of a sudden started throwing this exception by my Try Catch routine. FYI I have tried creating a new DB and importing the tables from the old DB but this hasn't solved the problem either.

View 4 Replies

VS 2008 Database Search - Using SQLClient That Loops Though All Users In A Users Table

Dec 29, 2010

I've got a code using SQLClient that loops though all users in a Users table inside each loop i want to preform another search in the UserOrders table, thus doing a count of all orders.

I get this error

HTML

There is already an open DataReader associated with this Command which must be closed first.

Here is my code

vb.net UserLists.Items.Clear()
Dim connection As New SqlClient.SqlConnection(My.Settings.ConnectString)
Dim command As New SqlClient.SqlCommand("SELECT * FROM Users ORDER BY PersonName",

[CODE]...

View 3 Replies

Getting A List Of Users On A Network Domain?

Nov 25, 2009

I want to get back to get a list of users on a network domain using VB.Net.

I will have the domain name available to me for use.

View 4 Replies

List Currently Logged In Users On Network

May 27, 2010

I've pulled basic information out of AD via System.DirectoryServices but cannot work out a method to find out currently logged in users?I would like to produce a list of users within a Group, highlighing those currently logged inactive.

View 1 Replies

VS 2008 - Possible To Get Network Users Local IP?

Jul 9, 2011

Is it possible to get all my network users' local IPs using VB 2008?

View 6 Replies

Local And Network Printers For ALL Users On A Remote Pc?

May 30, 2012

I have this partially working but only shows printers for one user, need all local and network printers mapped for ALL users on a remote pc so I can migrate them, I know I need to do some sort of for each method but not sure what will work

[Code]...

View 1 Replies

Log Domain / Username Of Users When They Are Logging In From Network

May 12, 2011

The code can be accesses through: WatchFolder.zip..I would like to log the domain/username of the users when they are logging in from the network i.e. filesharing..I am currently using Environment.UserName and Environment.DomainName but this is not able to log if the files are access via filesharing..The Environment.UserName and Environment.DomainName are only useful if the user have logged in the machine (explorer/rdesktop)

View 2 Replies

.net - Saving Changes From Diffrent Users To The Network So Everyone Contribute VB 2010?

Mar 20, 2011

So I am working on a small program that will tell the engineers the status of their testers; whether they are up or down with the time and date in addition there is also a comment box. I have created a program that has all the right buttons and options. Where I am stuck is on the save option. I want the engineers to be able to make changes to the status/date/comments and by clicking the save button to save all changes(in the status and date boxes) and text(in the comment box) so that when the program is opened at a later time or by another user on the network from a diffrent work station the latest changes from whomever will be present. The code that follows only allows the changes to be seen by on that specific computer and they are not shared to everyone who uses the program that accesses it over the network. Any help would be awsome!! Hope this is clear!

How can I get it so everyone sees all changes over the network regardless of the computer they are using? any help would be amazing!!

[Code]...

View 2 Replies

VS 2008 My.Computer.Network.DownloadFile - Get Rid Of The File When A Users Cancel

May 7, 2011

I use this line to download files: My.Computer.Network.DownloadFile(VideoFilename, SaveLocation, "", "", True, 8000, True But if a users cancel the download my application crashes. I searched Google but there's very little info about this problem. I tried with: My.Computer.Network.DownloadFile(FilenameMP3, SaveLocation, "", "", True, 8000, True, FileIO.UICancelOption.ThrowException, FileIO.RecycleOption.SendToRecycleBin()) But that line of code doesn't work. I need to get rid of the file when a users cancel

View 1 Replies

DB/Reporting :: Open An Access Query In A Datagrid View And Then Be Able To Make Changes To The Datagrid And Then Save It Back To The Database?

Apr 15, 2008

What I am trying to do basically is open an access query in a datagrid view and then be able to make changes to the datagrid and then save it back to the database.When I try to save:

Me.BindingSource.EndEdit()
Me.TableAdapter.Update(DataSet)

It says that update is not a member of the tableadapter... Why is that?

View 1 Replies

DB/Reporting :: Peer To Peer Network And Access Database?

May 10, 2008

1-i have a peer to peer network (every computer can be server and clinet) and i want to write a server- client program with vb 2005 and access date base to install on any comuter as a server. that serve has a data base with user name , password and credit field filled in access database .clients must connect to server and get permissin from data base field(username and password) to open an special program.

View 1 Replies

IDE :: Cannot Save Multiple Textboxes To A Ms Access Database?

May 19, 2009

i have and application with 140 textboxes and when i click the save update button it gives me a error i'm trying to save all the textboxes in one column, one beneath the other heres my code;

[code]...

and i get a error saying syntax error insert into

View 1 Replies

Making An Access Database Shared By Multiple User

May 8, 2009

Not sure if this is the right Forum to post this question. If not guide me where to post... I have an Access database that I would like to be able to share with Multiple user cuncurently... I have seen it is being done but I am not sure how? Or may be I should be using SQL Express.

View 1 Replies

Add Multiple Values Selected By Date Range From Access Database?

Oct 6, 2010

Access database: Inventory

Column 1: Pprice

Column 2: Date

Now what I want to do is on a button click, I want to search the database for a date range, lets say September/01/2010 thru September/30/2010. Then I want to pull all of the Pprice values and add them together to come up with an inventory parts cost for the month.

View 3 Replies

VS 2008 Updating A Single Column, Multiple Rows In An Access Database?

Aug 25, 2010

I have an access table that I'm loading into a dataset, then I'm binding the dataset to a bindingsource. The bindingsource is the datasource for a datagridview. I can use a command builder to update the entire table, but I need to update all the rows (or changed rows) in specific columns. I have a column called "dPrint" which is Boolean. I'm not sure how to use the bindingsource as my datasource in an Update Command. I've tried this:

View 8 Replies

Updates From Multiple Users?

Jul 9, 2009

I have a program that uses sql for the database. The issue im having is when two users attempt to update the same record then the update from second user overwrites the record from the first user. I believe this problem comes from the the way i attempt to preserve existing text in the fields.

My thought on whats going on is: If the form has fields A and B. Both users start with a blank form. User 1 adds a record with an entry in field A. When user 2 goes to update the record with an entry in form B, the program overwrites user 1s field A entry with the blank field A from user 2.

Is there a way to force it to grab the most recent data before it tries to add/update? I thought about resetting the digit combo box to the same digit which would trigger the change event for that field. but the issue with that is it would also wipe out the current entries on the form.

Below is the change event for the digit combobox, the main submit procedure, and the subprocedure for one of the days.

[code]
Private Sub cboDigit_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cboDigit.SelectedIndexChanged, cboOffice.SelectedIndexChanged, dtEndDate.ValueChanged, dtStartDate.ValueChanged

[Code].....

View 1 Replies

Add Multiple Users To Active Directory?

Feb 21, 2012

I need to add multiple users to active directory in vb.net what would be my best way to do this? Although i see some dotnet classes for them its hard figuring this out for my first time. Mostly what must i be aware of when trying to add them? Multiple opinions on the matter would be fine but I really just wish to add users with basic information like firstname and lastname and maybe to specific group.

View 8 Replies







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