2
votes
2answers
93 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
1answer
31 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 o …
0
votes
3answers
57 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 reselle …
2
votes
3answers
76 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 …
1
vote
4answers
36 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
6answers
179 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 …
1
vote
2answers
85 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 …
0
votes
3answers
44 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
176 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 …
3
votes
3answers
160 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. …
0
votes
3answers
64 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 …
2
votes
6answers
206 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
1answer
235 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 = …
0
votes
2answers
151 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
0answers
25 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 …
