2
votes
1answer
27 views
Flags enumeration with multiple zero values problem (TextFormatFlags)
While trying to write a custom control I've come across a problem with the System.Windows.Forms.TextFormatFlags enum in combination with the Visual Studio (2005/2008) editor. The reason for this …
1
vote
4answers
49 views
Using flag to identify spoken language
Hello,
In the webapp I am doing, I need to identify language people are speaking.
I wanted to use flag to do that. But I have some problems.
For example, if you speak French, you can put the French …
5
votes
3answers
122 views
C# Enums with Flags Attribute
I was wondering if Enums with Flag attribute are mostly used for Bitwise operations why not the compilers autogenerate the values if the enum values as not defined.
For eg.
[Flags]
public enum …
9
votes
9answers
2k views
How to Compare Flags in C#?
I have a flag enum below.
[Flags]
public enum FlagTest
{
None = 0x0,
Flag1 = 0x1,
Flag2 = 0x2,
Flag3 = 0x4
}
I cannot make the if statement evaluate to true.
FlagTest testItem = …
10
votes
9answers
1k views
Anyone know a good workaround for the lack of an enum generic constraint?
What I want to do is something like this: I have enums with combined flagged values.
public static class EnumExtension
{
public static bool IsSet<T>( this T input, T matchTo )
…
0
votes
3answers
100 views
Simulate a 128-bit unsigned integer in SQL and C# using a 64-bit signed value?
Take this scenario: You have a few flag enumerations in C# tied to (and in fact generated from) Enum-ish tables in SQL Server. Say you are a distributor, and you allow your resellers to specify what …
1
vote
1answer
49 views
Why doesn’t this Outlook 2007 VBA work (I’m trying to remove a flag programatically)?
I have some code that adds a flag to an email but when I try this code below to remove it, it doesn't seem to have any effect in Outlook 2007.
Public Sub Clear()
Dim objOutlook As …
2
votes
2answers
105 views
Explanation of Flags in Go
Can anyone explain flags in Go?
flag.Parse()
var omitNewline = flag.Bool("n", false, "don't print final newline")
1
vote
4answers
46 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 actions: View, Add, …
0
votes
0answers
16 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 correct?
Thanks!
1
vote
2answers
126 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 with .FlagStatus …
2
votes
3answers
94 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-counting, but I'd …
0
votes
3answers
55 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 stacktraces do not …
0
votes
0answers
28 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 application (RubyCocoa …
2
votes
6answers
201 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 certain events. What …
