1
vote
2answers
136 views
XCode Different Resources For Different Targets
Hi.
I am developing an iPhone app and there will be a Full as well as a Lite version of that app. In order get both bundles from the same source code and xcode project I added another target to the …
5
votes
4answers
119 views
Does anyone know of a good reference for DSL design?
I've been looking into designing some Domain Specific Languages which I will probably implement in Clojure, but I really don't have any idea of what's involved.
The languages I have in mind are …
13
votes
5answers
21k views
The located assembly’s manifest definition does not match the assembly reference
I am trying to run some unit tests in a C# winforms application (VS 2005) and I get the following error:
System.IO.FileLoadException: Could not load file or assembly 'Utility, Version=1.2.0.200, …
1
vote
6answers
110 views
Returning a pointer vs. passing a reference to an object to store the answer in C++
I have general question regarding the use of pointers vs. references in this particular scenario.
Let's say that I have a function that is going to do some computation and store the value inside an …
1
vote
1answer
24 views
any readings/books recommended for a beginner mobile qt developers?
ok i'm quite new to this mobile development, just download qt sdk from nokia web sites. My background is rather C,C++ not very familiar with visual/ide kind of stuff. normally do things using …
14
votes
6answers
2k views
Remove unused references (!= “using”)
How can I find and delete unused references in my projects?
I know you can easily remove the using statements in vs 2008, but this doesn't remove the actual reference in your projects. The …
0
votes
1answer
29 views
Error with Web Service reference in NetBeans 6.7.1
I have created a java web project to make a servlet. However, it used to work fine before i reinstalled it. the Web Service reference doesnt not show the operations and gives the following error:
…
-1
votes
1answer
23 views
Adding Reference - Getting tab to show for .NET, COM, etc.
I'm trying to invoke a ActiveX dll on my computer using a Visual C++ Win32 Console app. When attempting to Add a Reference (via Project Properties) only a Project tab is display. How do I add view …
4
votes
12answers
203 views
What are the benefits to passing integral types by const ref
The question: Is there benefit to passing an integral type by const reference as opposed to simply by value.
ie.
void foo(const int& n); // case #1
vs
void foo(int n); // case #2
The answer …
1
vote
2answers
16 views
Get listing of web services referenced in WCF application?
Hi,
Could anyone out there give some pointers on how to go about getting a listing of all the web service references used by a WCF application - the pseudo code I'm envisioning might look something …
0
votes
1answer
31 views
C# - Populate Data Structure At Runtime With References To Buttons Added To TableLayoutPanel At Design Time
Hello folks,
I am using Visual C# 2008 Express edition.
If at design time I have a form [myMainForm],
to which I have added a TabControl [myTabControl],
and myTabControl has a single tabPage …
0
votes
6answers
199 views
Data Destruction In C++
So, for class I'm (constantly re-inventing the wheel) writing a bunch of standard data structures, like Linked Lists and Maps. I've got everything working fine, sort of. Insertion and removal of …
1
vote
3answers
345 views
ASP.NET and Visual Studio - Adding project references vs Bin Folder DLL
I just started a new job yesterday and this is only my second job working in ASP.NET. We were setting up my dev box and were having trouble with some third party components like Telerik, etc. I was …
0
votes
1answer
75 views
Getting a Signature Mismatch Error when Compiling Even though it Matches in VS.NET 2005
I changed a reference in my project from pointing to a specific hard-coded DLL to a project reference and now I'm getting an error telling me that the signature for some event handlers don't match …
2
votes
0answers
45 views
C#: What can you change in an assembly without needing to recompile other assemblies? [closed]
Possible Duplicate:
A definite guide to API-breaking changes in .NET
I assume you can change the inner workings of a method or property, and probably anything private. I also suppose you …
