Tagged Questions

4
votes
3answers
98 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 ha …
1
vote
1answer
20 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 t …
4
votes
12answers
199 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); // …
0
votes
1answer
23 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 f …
1
vote
3answers
265 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 Te …
0
votes
6answers
198 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. Insertio …
149
votes
61answers
8k views

What are the best RSS feeds for programmers/developers?

I am looking for a breakdown of some really good RSS feeds. I have quite a few subscriptions with Google Reader, but lack many very good development/programming feeds. Would love …
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 mi …
2
votes
5answers
126 views

C# - Get number of references to object.

I'm trying to write a simple Resource Manager for the little hobby game I'm writing. One of the tasks that this resource manager needs to do is unloading unused resources. I can th …
-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. H …
0
votes
1answer
24 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 si …
5
votes
4answers
278 views

What’s the low-level difference between a pointer an a reference?

If we have this code: int foo=100; int& reference = foo; int* pointer = &reference; There's no actual binary difference in the reference's data and the pointer's data. ( …
2
votes
0answers
44 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 a …
4
votes
7answers
159 views

Teaching References in C#

In a couple of weeks, I'll be teaching a class of first-year engineers the salient points of references in C# as part of their first-year programming course. Most of them have nev …
2
votes
2answers
40 views

vb.net: Get to resources of a referenced project

I have a project which contains all custom controls and images; we'll call it projectBase. Now I have created a windows forms project (project1) that references projectBase. I ne …

1 2 3 4 5 16 next
15 30 50 per page