1
vote
4answers
33 views
Elegent Web Permission Schemes
Hello Everyone,
I'm currently writing a web application that have about 6-12 pages. On each one of these pages, I want the user to be able to do some (or all) of the following act …
2
votes
3answers
62 views
Testing a [Flags] enum value for a single value
If I have an enum that's marked with [Flags], is there a way in .NET to test a value of this type to see if it only contains a single value? I can get the result I want using bit-c …
0
votes
3answers
34 views
Java flag to enable extended Serialization debugging info
i am currently struggling with HTTP Session replication on tomcat with complex objects.
some objects implement Serializable but hold non-serializable members.
unfortunately, the …
1
vote
2answers
50 views
Outlook 2007 - Email Flag Status
This might be a duplicate of this question?
Is there a way in Outlook 2007 using VBA to set a follow-up flag on an email object? It looks like it was supported in Outlook 2003 wi …
2
votes
6answers
160 views
Flags, enum (C)
I'm not very used to programming with flags, but I think I just found a situation where they'd be useful:
I've got a couple of objects that register themselves as listeners to cer …
0
votes
3answers
51 views
Enum flags in JavaScript
I need to emulate enum type in Javascript and approach seems pretty straight forward:
var MyEnum = {Left = 1; Right = 2; Top = 4; Bottom = 8}
Now, in C# I could combine those va …
0
votes
0answers
22 views
Freezing Ruby version - is it possible? (Linker flags question)
Hi,
I have a problem with RubyCocoa, which has a weak link to a libruby.dylib and not always can find this dylib on user's computer, which resulting a crash on the launch of my ap …
3
votes
3answers
150 views
How to Compare Flags in C#? (part 2)
Bit flags are a little difficult to understand :)
I know about this and this questions and I do understand the answers and I even followed this article from a good friend of mine. …
1
vote
2answers
94 views
How to use different ifstream modes in c++?
According to the reference, if I use ifstream infile ( "test.txt" , ifstream::in ); it will Allow input operations on the stream. But what are some of the examples of the "input …
2
votes
6answers
173 views
How to make functions with flag parameters? (C++)
How could I make a function with flags like how Windows' CreateWindow(...style | style,...), for example, a createnum function:
int CreateNum(flag flags) //???
{
int num = 0;
…
0
votes
0answers
15 views
Process Explorer security flags [closed]
Hi,
What is the difference between "Default Enabled" and simply "Enabled"? My guess would be that "Default Enabled" can be changed at some point, but "Enabled" cannot. Is this c …
0
votes
2answers
137 views
How to strip a list of tuple with python ?
I have an array with some flag for each case.
In order to use print the array in HTML and use colspan, I need to convert this :
[{'serve': False, 'open': False}, {'serve': False, …
0
votes
1answer
174 views
WPF ComboBox/ListBox with MultiSelect based on Enum with Flags
So I may be pushing the boundaries just a bit...
Basically I have the following enum, declared in C# code:
[Flags]
public enum FlaggedEnum : int
{
Option1 = 1,
Option2 = …
5
votes
10answers
315 views
Why use flags+bitmasks rather than a series of booleans?
Given a case where I have an object that may be in one or more true/false states, I've always been a little fuzzy on why programmers frequently use flags+bitmasks instead of just u …
0
votes
3answers
69 views
TCP flags present in the header
Hi,
on my ubuntu 9.04 the /usr/include/netinet/tcp.h defines the tcp header as follows
struct tcphdr
{
u_int16_t source;
u_int16_t dest;
u_int32_t seq;
u_int32_ …
