Questions tagged [projects]
318 questions
1
vote
6 answers
Is there a faster way to write this strings
What happens is that if a user clicks on the 'Get Session Id' button. It displays a random string which will represent the sessionId. This works fine. My problem is that at moment I have 5 strings which are "AAA", "AAB", "AAC", "AAD" and "AAE". Now…

BruceyBandit
- 3,978
- 19
- 72
- 144
1
vote
1 answer
How do Visual Studio 2010 projects work together under the same solution? I'm trying to combine my first four simple projects
Good Day All,
I’m new to programming. I’m using Visual Studio 2010. I’m taking into two introduction classes, VB and C# with .Net.
I'm searching for example code of different project forms under the same solution working together at least at my…

William
- 15
- 3
- 8
1
vote
3 answers
Improving and publishing an application. Need some advice
Last term (August - December 2008) me and some class mates wrote an application in C++. Nothing spectacular, it is an ORM for Sqlite3. We implemented some stuff like reflection to make it work and release the end user from the ugly stuff.…

Tom
- 43,810
- 29
- 138
- 169
1
vote
2 answers
Maven pom error
I have example projects from spring core training courses I've been on. They did work on their machines, not on mine though. I am not really expert with maven, but .pom file inside gives this error. I really appreciate any monkey-alike-instructions,…

Aubergine
- 5,862
- 19
- 66
- 110
1
vote
2 answers
How to link two or more projects in Eclipse?
I am trying to develop my application in different Eclipse Java projects where each will contain a certain feature. Then I want to combine them in one complete Java project.
However, I have a problem when linking the sources.
The sub-projects can…

Petar
- 2,241
- 1
- 24
- 38
1
vote
5 answers
How can I read data from a textbox with no web server, then save it in an XML file?
I am studying computer science and we have to do a programming project which must be strongly related to XML and using XSD and XSLT or XQuery/XPath at least. Because I like C# I'd like to do it in this language, but I could use another if anyone has…

codymanix
- 28,510
- 21
- 92
- 151
1
vote
1 answer
Multiple Projects from one Project with different ressource and config files
I have one Project let us say pattern project. There are all sources and layouts for the different versions of the other projects. Without the drawables, because the other projects have different.
There are also 2 projects which use this pattern…

user952403
- 13
- 2
1
vote
0 answers
Sharing projects in visual studio
Hello again StackOverflow. I am getting back into developing in XNA/C# with a few buddies of mine across the states. I have setup a server on my computer, installed TFS and Sharepoint, but neither of these seems to have the exact solution that im…

Shaun
- 5,483
- 10
- 40
- 49
1
vote
5 answers
android eclipse driving me mad?
I've quite new to Android development and specially Eclipse.
I'm busy on a project called, say 'HelloEclipse'. I've had some major changes ahead, in which I had to some very big changes.
So I made a zip file of c:\workspace\HelloEclipse, placed…

Dennis
- 1,528
- 2
- 16
- 31
1
vote
1 answer
What would be a good VCS repository to read/help?
I've been writing code, mostly proprietary, for a long time; spaghetti code and the like. I took a few years out of the industry though and feel like I missed something enormous. I've spent some time studying books but I want to get my hands a…
user69602
1
vote
1 answer
Cruisecontrol Group Projects
Is it possible to group projects in CruiseControl?
(I know it is possible to group them using the same prefixes... but is it possible to really group them?).

Lieven Cardoen
- 25,140
- 52
- 153
- 244
1
vote
3 answers
.NET Sample Project Design Patterns Fowler
Are there sample ASP.NET projects around using the patterns discussed in the book by Martin Fowler (Patterns of Enterprise Application Architecture)?
I have downloaded the Northwind starters kit and Dinner Now, which are very good. Are there others…

Lieven Cardoen
- 25,140
- 52
- 153
- 244
1
vote
1 answer
Android proguard having trouble running an APK with linked project libraries
I am trying to export an android application that uses a couple different libraries. Two of the libraries are jar files but the other libraries are linked projects. For instance one of the libraries is a mapview balloon view. To use the library, I…

kevin78925
- 15
- 2
- 5
1
vote
2 answers
Practical Django Projects - Pages 183 and 184
On pages 183 and 184 there is the following code :
def edit_snippet(request, snippet_id):
snippet = get_object_or_404(Snippet, pk=snippet_id)
if request.user.id != snippet.author.id:
return HttpResponseForbidden()
if…

Peter
- 13
- 2
1
vote
5 answers
What's the best way to structure a project?
I was wondering about how I should structured my projects.
We have some projects that are (re)use in other projects.
I mean, our data project and model project are use in one-to-many other projects.
What I really what to know is how to structure…

Melursus
- 10,328
- 19
- 69
- 103