Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

19
votes
10answers
17k views

How do I delete a directory with read-only files in C#?

I need to delete a directory that contains read-only files. Which approach is better: using DirectoryInfo.Delete(), or ManagementObject.InvokeMethod("Delete")? With DirectoryInfo.Delete, I have to ...
8
votes
5answers
4k views

How to make a git repository read-only?

I have some git repositories accessed remotely through SSH and I want to make some of them read-only to prevent more pushes. Some people have remotes pointing to these repositories. These bare ...
8
votes
6answers
262 views

What is the easiest, most concise way to make selected attributes in an instance be readonly?

In Python, I want to make selected instance attributes of a class be readonly to code outside of the class. I want there to be no way outside code can alter the attribute, except indirectly by ...
7
votes
6answers
1k views

how is read-only memory implemented in c?

I heard that in c, if I do: char *s = "hello world". The "hello world" is actually stored in read-only memory. I am not so clear about read-only memory. Can anybody explain? Is that like a flag to ...
6
votes
3answers
5k views

How do I open an already opened file with a .net StreamReader?

I have some .csv files which I'm using as part of a test bench. I can open them and read them without any problems unless I've already got the file open in Excel in which case I get an IOException: ...
6
votes
8answers
3k views

const Dictionary in c#

I have a class in C# that contains a Dictionary, which I want to create and ensure nothing as added, edited or removed from this dictionary as long as the class which contains it exists. readonly ...
5
votes
5answers
306 views

can a method parameter pass an object by reference but be read-only?

C#: can you make it so that a method parameter passes an object by reference but is read-only? eg: void MyMethod(int x, int y, read-only MyObject obj) where obj is an object reference but this ...
5
votes
4answers
196 views

Can anybody explain this read-only exception to me?

Below is my code (don't worry there's a USUW at the top of the module) I'm testing if an array ref is readonly, and if that is the case then I'm copying it into another array ref. The tests show that ...
4
votes
5answers
537 views

Delphi 2010 - Source files randomly become read-only in editor?

Does anyone else have this problem or is my Delphi cursed somehow? I'll have a bunch of forms and files open in tabs in the editor and I'll be typing away and then suddenly everything stops - my .pas ...
4
votes
1answer
4k views

Qt How to make a column in QTableWidget read only

I would like to have one column in QTableWidget NOT editable. I forums have read a lot about some flags bould could not manage to implement. Thanks in advance!
3
votes
6answers
108 views

How to Create a Read-Only Object Property in C#?

As can be seen below, the user is able to change the readonly product field/property: class Program { static void Main(string[] args) { var product = ...
3
votes
2answers
519 views

Best POSIX way to determine if a filesystem is mounted read only

If I have a POSIX system like Linux or Mac OS X, what's the best and most portable way to determine if a path is on a read-only filesystem? I can think of 4 ways off the top of my head: open(2) a ...
3
votes
1answer
379 views

java + sqlite: how to open database as read-only?

I have a large database that I want to open in read-only mode... I'm using SQLiteJDBC and am not sure what to use to get it to work as read-only. Can anyone help?
3
votes
5answers
249 views

Is it possible to have fields that are assignable only once?

I need a field that can be assigned to from where ever I want, but it should be possible to assign it only once (so subsequent assignments should be ignored). How can I do this?
3
votes
3answers
479 views

Is there a way to modify foreach loop variable?

The following code gives an error message: #!/usr/bin/perl -w foreach my $var (0, 1, 2){ $var += 2; print "$var\n"; } Modification of a read-only value attempted at test.pl line 4. Is ...
3
votes
4answers
5k views

Creating read-only properties in Actionscript 3

Many library classes in AS3 have "read only" properties. Is it possible to create such properties in custom as3 classes? In other words, I want to create a property with a public read but a private ...
3
votes
5answers
259 views

Resticting access to method calls on read-only properties

I have a class that defines a read-only property that effectively exposes a private field, something like this: public class Container { private List<int> _myList; public ...
2
votes
1answer
52 views

How can I tell if a Hibernate entity is read-only or not

I've made an entity read-only after retrieving it using: Session session = (Session)entityManager.getDelegate(); session.setReadOnly( entity, makeReadOnly ); I'd like to be able to test whether ...
2
votes
1answer
71 views

Delphi TCollection - Possible to prevent changing items in run-time?

Using delphi 7, I have a TCollection/TCollectionItem set of descendents. They are intended to be set up in Design-time only, and should never be modified in Run-time. How can I do this? Design-time ...
2
votes
3answers
185 views

Read Only Text widget in python3-tkinter; cross platform

How to suppress end user ability to edit/add/delete text in a Text widget? (Python v3.2.. and tkinter) The point is to suppress only the ability to change/add/delete text but not to castrate other ...
2
votes
3answers
484 views

Magento read-only and hidden product attributes

I would like to have some Magento product attributes that are not editable from the admin interface and some that are not visible at all in that interface (as a method of storing some persistent ...
2
votes
2answers
190 views

Making a directory NAME read-only in C#

my problem is, I want to create a new folder and make it impossible (or reasonably hard) for the user to change its name or to delete it. The thing is, the user must be able to access the files ...
2
votes
4answers
402 views

Read-only text field

I have an read-only text-field in my site. And I need to enter a date using cucumber and watir. But I can't set any value. Even passing the value of date with value = method I can't input any output. ...
2
votes
0answers
356 views

How can I create read-only FTP access for user on Apache server?

I have a web site with lots of pages of photography. In order to allow visitors to download groups of photos without having to save each one individually, I want to create a read-only FTP user that ...
2
votes
2answers
323 views

std::map assignment of read only location

I have a static std::map<std::string, CreateGUIFunc> in a class that basically holds strings identifying gui types, and CreateGUIFunc is a reference to a factory function. In my constructor I ...
2
votes
2answers
542 views

SQLAlchemy - how to map against a read-only (or calculated) property

I'm trying to figure out how to map against a simple read-only property and have that property fire when I save to the database. A contrived example should make this more clear. First, a simple ...
2
votes
3answers
670 views

Make a foreign key field in a django form read-only, and still enable the form to be submitted

How do I make a foreign key field in a form read only but still allow this field to be recognized as valid once the form is submitted? According to W3C, disabled fields are left out once the form is ...
2
votes
6answers
1k views

Why can't I assign values to pointers?

After reading the faq's and everything else I can find, I'm still confused. If I have a char pointer that is initialised in this fashion: char *s = "Hello world!" The string is in read-only memory ...
1
vote
0answers
23 views

Access security warning

When i open access i get the warning : Specific content in the database is disabled. I open Access via a link (for a program i use) ...
1
vote
2answers
95 views

Whole model as read-only

Is there a way to make a model read-only in the django admin? but I mean the whole model. So, no adding, no deleting, no changing, just see the objects and the fields, everything as read-only?
1
vote
2answers
56 views

How to avoid switching (automatically?) to read-only buffers in Emacs

I have a fair amount of buffers open in Emacs and switch between them using C-x b. However, fairly often i find myself returning to an earlier accessed buffer that now has read-only rights. It can be ...
1
vote
2answers
166 views

Optimize PostgreSQL read-only tables

I have many read-only tables in a Postgres database. All of these tables can be queried using any combination of columns. What can I do to optimize queries? Is it a good idea to add indexes to all ...
1
vote
2answers
47 views

gdb: how to tell whether some piece of memory is marked read only

I'm debugging a program (in Solaris) that may be writing into memory marked read-only, but I'm unsure how to determine whether that page of memory is actually marked as read-only. Can I make that ...
1
vote
2answers
105 views

What's the best way expose a mutable interface over an immutable one?

I wonder what's the best practice in C# regarding mutable / immutable interfaces. I like to work against interfaces only instead of the real objects; remove dependencies and allow for easier testing. ...
1
vote
2answers
682 views

How to display a “greyed-out” read-only checkbox using Delphi under windows themes

I want read-only check boxes to be greyed out, but display their checked/unchecked status under Windows (XP and above), but I'm having some issues. NOTE - Regarding 'read-only': It appears that ...
1
vote
1answer
112 views

sql server architecture: switching database between read-only and read-write

I have a database that is read-only in nature. So it seems to make sense to boost performance by setting it to readonly. Then I get updates for this database once a month. At that point I would like ...
1
vote
4answers
177 views

Is there a way to toggle the “Hidden” or “Read-Only” switches on a Windows file using PHP?

UPDATED As the title says, is there a way to toggle the "Hidden" or "Read-Only" switch on Windows using PHP? I'd like to do this without opening a shell exec() if possible.
1
vote
1answer
123 views

Why are some Siebel objects read only?

I want to add some extensions to an existing Siebel application, but the objects which I need to change remain (partially) read only, despite I have locked the respective parent projects. E.g. Add ...
1
vote
3answers
724 views

My project in Visual Studio is Read Only. What did I do?

I must have done something wrong. I have a C# project in Visual Studio 2008. All of a sudden I see a lock on my classes and when I hover the class names on the top tab I see the class name as : ...
1
vote
2answers
988 views

C# CSLA business object dilemma: read-only vs read/write

I'm part of a team tasked to revamping our old VB6 UI/COBOL database application to modern times. Before I was hired, the decision was made (largely on sales, I'm sure) to redo the UI before the ...
1
vote
2answers
4k views

In SQL Server how to give only “read only” permission to all DB objects?

I need to give read only permission to a couple of users on the database so that they can get an understanding of the schema, logic in SPs, etc. But I do not want them to modify anything. I tried ...
1
vote
2answers
2k views

Read-only array in .NET

Arrays are a fast way to iterate through an unordered set of items, and it's often nice for them to be read-only. While exposing arrays with the `readonly' keyword is useless because the contents of ...
1
vote
6answers
2k views

Checking if the file is already in use before opening (network drive, C#)

Does there exist any way in .Net to check before opening if a file (on a local network drive) is already in use?
0
votes
1answer
37 views

Programmatically switching database to read-only and write on SQL Server

Can you programmatically switch a database to write access and back to read-only in C#?
0
votes
1answer
33 views

How can I create a read-only SWT text that is impossible to select? (by keybord and mouse)

How can I create a read-only SWT text that is impossible to select? (by keyboard and mouse) for example: Text text = new Text(shell, SWT.BORDER | SWT.READ_ONLY); text.append("text text text text ...
0
votes
1answer
30 views

Centos /usr readonly [closed]

I have some rpm to install on my centos 4.8, but when I try to install the rpm as root (rpm -i), the output said /usr and all subdirectory are read-only. I tried to create a file : touch /usr/testFile ...
0
votes
1answer
98 views

vsto (word office addin) : save read-only document

How can I save read-only document without save dialog. I have tried to change status of file by using FileInfo IsReadOnly property before ActiveDocument.Save() ,but it didn't help. Thanks for help!
0
votes
4answers
57 views

Java FileReader, only as read

Does using the FileReader method in java, makes the file read only or does it still have to be stated FileReader file = new FileReader(args[0]); BufferedReader buffread = new ...
0
votes
1answer
87 views

Get the textbox value from readonly gridview

I have a gridview on which Item template has few textbox, due to business requirement I have to disable those textbox. Now, I have to read the textbox value from code behind. Could you tel me if that ...
0
votes
1answer
61 views

Rails unit tests without db setup or teardown?

I want to write a few unit tests that do not make any changes to a database. I have a Rails 2.3.11 application. This app has a SQLite database as its primary database. In many ways, this is a ...

1 2