Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

15
votes
6answers
6k views

Multiple mouse pointers?

Is there a way to accept input from more than one mouse separately? I'm interested in making a multi-user application and I thought it would be great if I could have 2 or more users holding wireless ...
6
votes
8answers
641 views

How to set up a development environment in MS Access

I have created an MS Access 2003 application, set up as a split front-end/back-end configuration, with a user group of about five people. The front end .mdb sits on a network file server, and it ...
4
votes
5answers
3k views

Setting up an MS-Access DB for multi-user access

We're thinking of "growing" a little MS-Access DB with a few tables, forms and queries for multiple users. (Using a different back-end is another, but more long-term option that is unfortunately ...
2
votes
3answers
175 views

Determining user intent in a multi-user, multi-touch application

I am developing a surface application (though the platform isn't really relevant) that needs to track usage statistics and produce data that can analyzed to answer several usage related questions. ...
1
vote
0answers
37 views

keeping track of user privileges on a website when giving them access to a specific page

I am building a website that logs users in using Facebook, Twitter, and Google. During the log in process I also ask the users for some permissions regarding my use of their personal information ...
1
vote
1answer
70 views

how to prevent user to changing/deleting other user data

I am creating multiuser application. created using php codeigniter And I am seeking the best practice or the best way to prevent user to changing/deleting other user data. I have some relational ...
1
vote
1answer
110 views

How to see in iPhone app that Google Document has changed?

I'm new in iPhone apps and GData API. I want to use Google Documents like a data storage for my multi-user application, there is a need to control access rights to data: If the first user takes ...
1
vote
1answer
151 views

How to don incremental multi user updates with NHibernate

I use nhibernate as my orm and i am trying to implement something that looks straightforward but has become unneccessarily difficult. It concerns how to implement concurrent updates to an entity where ...
1
vote
1answer
157 views

multiple users, multiple applications, one server

I have an idea for a web application that involves a multiple users, two different applications (which will be run from a user's local machine), and a remote database server. Databases stored on ...
1
vote
3answers
1k views

multi-user application record locking - best method?

I'm developing a php / mysql application that handles multiple simultaneous users. I'm thinking of the best approach to take when it comes to locking / warning against records that are currently being ...
1
vote
3answers
830 views

Pessimistic versus Optimistic Concurrency (Locking versus Feedback)

I'm building an application with the following criteria: work items: items that need to be manually worked via the web by users (short one page form) Multiple users working 'work items' Each user ...
1
vote
10answers
1k views

Single Multi-User Checkout in Subversion - Possible?

In our organization, we have the following problem. We want to have our web tree revision-controlled, but many of us want to be able to alter (and check in) any file of that tree. We would also like ...
0
votes
1answer
36 views

CakePHP App-Structure: one DB & App vs. multiple DBs & Apps

I have a brief conceptional question: Recently, I started to develop an app in which I can (on the fly) create clients who, in turn, can create projects that have lots of other stuff (own logins, ...
0
votes
0answers
26 views

Database Application - multi-user in edit mode

I'm new to multi-user applications and I have to deal with database locking or the like to avoid conflicts. I already know how to use database transaction to avoid conflicts in update but this is ...
0
votes
1answer
33 views

Multiuser Communication with Javascript

Can anyone recommend me links or books to build a multiuser application? My idea is an web app, with which users can play multiuser game on their browsers. I also want to create an app with phonegap, ...
0
votes
2answers
303 views

How to handle incoming data for JTable while editing a row?

imagine we have a client/server multiuser architecture. At any time a user is able to add a new TableRow in his JTable. The server gets informed and sends a message to all clients, so their data ...