Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
6answers
149 views

Good approaches to enforce building with increased warning level for new C++ code

I've inherited a large C++ codebase for several Windows applications that successfully is in use by many customers. The codebase is large, >1mill LOC. The codebase has a history of 15+ years. The ...
5
votes
3answers
116 views

Python 2.x: how to automate enforcing unicode instead of string?

How can I automate a test to enforce that a body of Python 2.x code contains no string instances (only unicode instances)? Eg. Can I do it from within the code? Is there a static analysis tool that ...
5
votes
7answers
2k views

Is the MS Ribbon/Office UI License worth worrying about?

Imagine I want to create an application which is very similar to MS Word 2007, using C++ in VS2008 and the MFC Feature Pack. For the ribbon, there are 3 options available to me: Use the ribbon from ...
4
votes
6answers
327 views

Is there a way I can enforce a method to follow certain method signature?

let's say I have public delegate DataSet AutoCompleteDelegate( string filter, long rowOffset); can I make the following class to enforce that method signature? (just a conjured up idea): ...
3
votes
3answers
123 views

Why doesn't VB.NET enforce handling exceptions? [closed]

Possible Duplicate: Why are Exceptions not Checked in .NET? If I remember correctly, Java enforces catching and handling any exceptions a called method may throw. Why doesn't .NET do the ...
2
votes
5answers
215 views

How to force all derived classes to implement a virtual method?

Say you have a base class Dep for a tree of classes. There is a virtual method Dep* Dep::create() that I want to be implemented by every single leaf class. Is there any way to enforce this? Note: The ...
2
votes
4answers
133 views

Project management: Implementing custom errors in VS compilation process

AGAIN: If you're voting -1, please leave a comment explaining why. This post isn't about whether or not you approve if this approach, but how to go about it. Like many architects, I've developed ...
2
votes
1answer
263 views

How can I limit calls for a WCF service within a time span?

I want to write a WCF service that can't run more than X times per hour. I want the service to suspended messages to a queue if the service was called more than x time in the last 60 minutes. Any ...
1
vote
2answers
276 views

Android APN Enforcement

Someone know if there's a programmatically way to use a specific defined APN on the device which is not the default one? Thanks.
1
vote
5answers
103 views

Prevent misuse of structures designed solely for transport

I work on a product which has multiple components, most of them are written in C++ but one is written in C. We often have scenarios where a piece of information flows through each of the components ...
1
vote
2answers
110 views

assert() vs enforce(): Which to choose?

I'm having a hard time choosing whether I should "enforce" a condition or "assert" a condition in D. (This is language-neutral, though.) Theoretically, I know that you use assertions to find bugs, ...
1
vote
3answers
622 views

Is there a way to enforce runtime type-checking in Objective-C on Cocoa?

Hi I'm finding a way to enforce runtime type checking or such things in Objective-C on Cocoa. This is my code sample. I expected runtime error about wrong assignment to variable 'b'. But it wasn't. ...
1
vote
2answers
147 views

Enforce semicolons in my Javascript?

How best does the developer who's decided he likes semicolons at the end of his Javascript statements enforce that expectation technically for himself? I'm using Visual Studio (ASP.NET webapps), but ...
0
votes
0answers
31 views

What is a good, cross platform, coding standards enforcer for C/C++? [closed]

Possible Duplicate: A free tool to check C/C++ source code against a set of coding standards? I'm looking for a tool that allows you to specify a coding standard and then checks C/C++ code ...
0
votes
2answers
38 views

How do Licensing enforcement mechanisms work for OEMed DLLs, browser plugins, and ActiveX controls?

I can understand how end-user licensing scenarios work - if valid license key/token is present, then the software works, otherwise, it doesn't work. But in the case of components that are licensed to ...
0
votes
1answer
146 views

Entity Framework 4 - Designing DB To Enforce Multiplicity of 1 to 1

I have encountered a scenario in my application where I would like to have a 1:1 multiplicity between entities but I dont know how to modify my database to ensure this. Lets say I have a Document ...