Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
3answers
207 views

Minimum-Waste Print Job Grouping Algorithm?

I work at a publishing house and I am setting up one of our presses for "ganging", in other words, printing multiple jobs simultaneously. Given that different print jobs can have different ...
5
votes
2answers
355 views

What's the least invasive way to read a locked file in C# (perhaps in unsafe mode)?

I need to read a Windows file that may be locked, but I don't want to create any kind lock that will prevent other processes from writing to the file. In addition, even if the file is locked for ...
4
votes
7answers
2k views

Subversion Exclusive Checkout and Subversion Plugin for Delphi

Is there currently a feature that allows a exclusive checkout in SVN? and Is there a good plugin for Delphi that allows the access via IDE?
3
votes
5answers
12k views

open file in exclusive mode in C#

I want to open a file for read in exclusive mode, and if the file is already opened by some process/thread else, I want to receive an exception. I tried the following code, but not working, even if I ...
3
votes
3answers
4k views

Exclusive File access to logfile with VBScript and Filesystemobject

Need help with this one. I have a VBS script that currently writes to a logfile. This script can be kicked off my multiple simultaneous processes so now I'm worried about concurreny. I'm currently ...
2
votes
1answer
502 views

python argparse mutual exclusive args

how can i make argparse do something like [ 'all' | [ pos1 [ pos2 [ pos3 ...]]]] --some --other --flags where 'all' is a reserved word (making it a flag would not be ok if it dosn't need a '-' ...
2
votes
2answers
498 views

Grab exclusively/release mouse in application (Windows, C++)

I have lost many hours trying to grab exclusively the mouse in my application and re-releasing it. Right now, I am grabbing it correctly : the mouse cursor disappears from screen and I can read its ...
1
vote
1answer
495 views

startup mount exclusive

What does the following command do? startup mount **exclusive**; Thank you.
1
vote
1answer
310 views

ActionScript / AIR - MouseEvent Limitations on Touch Enabled Devices?

if mouse events are used instead of touch events on touch enabled devices, does that limit "touch" input to one touch at a time. if a mouse down event is currently in progress will a following mouse ...
1
vote
3answers
130 views

Exclusive query using SQL IN()

This query is pretty self explanatory: $networks = '6,7,8'; $query = "SELECT DISTINCT countryName FROM countries AS Country INNER JOIN countries_networks AS n ON Country.id = n.country_id WHERE ...
1
vote
3answers
267 views

Does the following java code guarantee and exclusive lock on an unopened file in Windows?

Does the following java code guarantee and exclusive lock on an unopened file in Windows? import java.io.File; import java.io.FileNotFoundException; import java.io.FileOutputStream; import ...
1
vote
2answers
237 views

Change MS Access to Exclusive on the fly

I have a process in an MS Acess database that the users will usually run once daily, but could be more or less. It takes several minutes and requires temporary exclusive access because it deletes and ...
1
vote
6answers
5k views

Open MS Access with OLEDB connection string and not have access create the .ldb lock file

I have a program in C# that uses an MS Access database and I'm using OleDb to connect and do queries on that database. My issue is that I have some sensitive info in the database and I don't want it ...
0
votes
3answers
100 views

Make two TEdits exclusive

I have two TEdit boxes that I am using to specify file paths, one is for UNC paths, the other is for a local path. However, I would like it so if the user can only enter text in one box. If they enter ...
0
votes
1answer
61 views

Primary Keys are a Foreign Key of two different mutually exclusive tables

I'm having a problem on how to design a table that must have a Primary Key which is a foreign key to two mutually exclusive tables. +----------------+ +-----------------+ | PARTY ...
0
votes
1answer
154 views

Open a Pdf exclusively in adobe reader. Possible?

I have a c# app that decrypts custom encrypted pdf files and then calls adobe reader with Process.Start to view the files. Unfortunately Adobe Reader doesn't accept data from memory streams, just ...
0
votes
1answer
69 views

Open access database (mdb) in sharing (among multiple users)

I have an access database (mdb) and I want to open create an "automatic system" that a third party user (I would say a stupid-user) could runt a macro automatically. So I created a batch file and i ...
0
votes
1answer
39 views

shared and exclusive locks which will get the data first?

Let's say I have the following: SELECT - Shared Lock -- long running UPDATE - Exclusive Lock SELECT - Shared Lock -- long running These three statements come in order, the first select takes a ...
0
votes
2answers
94 views

Exclusive access to a PostgreSQL table through python or Postgres

I have a table with a list of URL in stored in PG and I have an application which is supposed to take a subset of available URLs and process them, this app will update the processed field=true when it ...
0
votes
0answers
150 views

Exclusive UITableView list for checkmarks?

Can any one tell and give complete understanding and Sample code of Exclusive UITableView list for checkmarks? I have read sample code but it has the basic logic not complete sample. I also have ...
0
votes
3answers
91 views

How Do I Make A Window Compulsory For The User To Enter Some Information?

At my workplace I need to create a questionnaire that is compulsory for the user to fill out. The aim is to make it as non-intrusive to the user as possible and link it to their Windows account. The ...
0
votes
1answer
140 views

ActionScript / AIR - One Button Limit (Exclusive Touch) For Mobile Devices?

two years ago, when i was developing an application for the iPhone, i used the following built-in system method on all of my buttons: [button setExclusiveTouch:YES]; essentially, if you had many ...
-1
votes
3answers
70 views

Exclusive OR Java code [closed]

Possible Duplicate: Creating a “logical exclusive or” operator in Java Im struggling with trying to write java code for an exclusive or operator. I have 1 method called ...