Tagged Questions

6
votes
6answers
206 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 …
2
votes
5answers
142 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 …
1
vote
4answers
151 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
221 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 …
0
votes
2answers
250 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 …
0
votes
2answers
185 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
398 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 …
0
votes
2answers
115 views

.NET Framework: How to make RichTextBox true read-only?

Setting RichTextBox as “ReadOnly” doesn't prevent embedded objects (like equations) from being edited by double-clicking them. I could disable the control but then there is a gray background (can't be …
2
votes
3answers
198 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 …
0
votes
1answer
132 views

PHP - Read-Only spreadsheet filetype?

I'm using a simple web-based PHP application that outputs a table as a spreadsheet header("Content-Disposition: attachment; filename=" . $filename . ".xls"); header("Content-Type: …
0
votes
2answers
241 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
3answers
923 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: …
4
votes
7answers
529 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 …
0
votes
1answer
50 views

Mark exported classes in Eclipse to not modify

Hi all, in my workpsace i do have SVN checkout classes and SVN export classes. I seperate the classes into two working sets. The exported classes are members of another feature based project and i am …
0
votes
1answer
288 views

Is Read-only property available in tree node in C#?

How to set tree node 'read only' in windows C#? Should not us disable, default.

1 2 next
15 30 50 per page