1
vote
4answers
47 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
104 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 …
1
vote
1answer
43 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 …
0
votes
3answers
78 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 …
2
votes
2answers
101 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
41 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, …
2
votes
3answers
82 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
47 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 …
1
vote
2answers
111 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 …
0
votes
0answers
26 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
191 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 …
0
votes
3answers
79 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 values like this:
…
1
vote
2answers
184 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 operations"?
Is …
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 correct?
Thanks!
2
votes
6answers
217 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;
if(flags == …
