project

[Blackberry] NoClassDefFoundError importing a library project

Hi, I'm currently writing a unit test project using the version 4.6.1 (Windows Vista + Eclipse). My project is divided in 3 part: A. Unit test application (type:CLDC application) B. Application to be tested (type:CLDC application) C. A library project (type: library,no .jar file imported) The A project should reference the code prese...

How to access the msbuild command line parameters from within the project file being processed?

I need to get access to the msbuild command line parameters (the specified targets and properties in particular) from within the project file being processed. How can I do this? ...

Determine if a Form from another project is open

My c# WinForm solution contains several projects including an Admin project with several forms and a User project with several forms. I want my user forms to behave differently when specific admin forms are open. How can the user forms tell when admin forms are open? All forms have no 'this.Text' value (all these values are null). W...

What is default settings to reffer to file location in xcode project ?

What is default settings to reffer to file location in xcode project ? i have doubts between them relative to build project relative to project relative to enclosing group relative to source path Absolute path ...

Start a Maven J2Me project in Eclipse and run it

I have a problem setting up my maven j2me project that I created in Eclipse. I have the WTK 2.5.2 & SDK 3.0 installed and associated with Eclipse. I created a project using j2me-simple archetype. Copied the files from my previous J2Me project which was working! but as I see, all the files that I know are missing. the Application descri...

How to add files to a Resx while maintaining original paths?

I've got a folder of files I'd like to add to my project resource file (Resources.resx). Normally, when I add files, they are copied into the project directory. Is there any way I can tell Visual Studio to not copy them, but instead reference them using relative paths? Relative paths work when I edit the resource file manually, but I'd ...

interesting project that I can implement with fuse-python

Hi, I was thinking of improving my python and just recently read an article about the python-fuse library. I'm always interested about filesystem stuff so I thought this would be a good library to hack on. What I can't come up with is an idea of what I should implement with this. Do you guys have any suggestions or ideas that you can ...

How to write a makefile for a C++ project which uses Eigen, the C++ template library for linear algebra?

Hi Guys, I'm making use of Eigen library which promises vectorization of matrix operations. I don't know how to use the files given in Eigen and write a makefile. The source files which make use of Eigen include files as listed below, these are not even header files (They are just some text files)- <Eigen/Core> <Eigen/Dense> <Eigen/Eige...

Scrum Project Planning

Our projects are done in a Scrum way. However, I am always open to find solutions on how to be more efficient. I would like to have input on how you plan a project for creating a product that will be sold to company customers. I would like to keep this discussion quite open and not narrow anything, but of course it should include thing...

How much effort should be assigned to requirement specification within a project?

Assuming the global development effort is known (from a preliminary work structure breakdown), what percentage of that effort should I add in order to allocate enough manpower for requirement definition and refinement? ...

Autogenerated files and VC++ 2008 projects

Hello, all. I was wondering if there's a way to add Autogenerated files to a VC++ 2008 build. It seems like it's a fairly trivial thing to do if you write your own makefile, but I'd prefer to let visual studio construct a makefile from the project (like it does normally), but also tell it to say "include all .cpp's and .h's that are in ...

Why are some Siebel objects read only?

Hi, I want to add some extensions to an existing Siebel application, but the objects which I need to change remain (partially) read only, despite I have locked the respective parent projects. E.g. Add a Menu item to the application main menu. => I can edit existing items, but I cannot add new items (Tool's menu "New record" is disabl...

Automatic parallelization

What is your opinion regarding a project that will try to take a code and split it to threads automatically(maybe compile time, probably in runtime). Take a look at the code below: for(int i=0;i<100;i++) sum1 += rand(100) for(int j=0;j<100;j++) sum2 += rand(100)/2 This kind of code can automatically get split to 2 different thr...

Selecting a software development project

I am currently my software engineering degree and as I am in my second year I need to select a topic for my project. I am totally confused on how to pick a good project topic, which I could use in my final year as well. I have specialization in the following areas, java, vb.net, sql server 2005 as well as artificial intelligence. I ca...

Extend the Visual Studio C++ Build Process

A found an article (Extend the Visual Studio Build Process) that explained how to override build targets in a C# project file. I tested this, and it seems to work well. However, what I really want to do is override a build target in a C++ project (with Visual Studio 2005). The problem is that C++ projects use different XML. Instead o...

Great project ideas for MVC/LINQ/jQUERY

I'm looking for a couple projects to help me learn MVC, LINQ, and maybe a little jQUERY. I've got a couple ideas - the top one is creating a complete bug tracking system or support ticket system. Do any of you have any suggestions regarding what I could try? I would rather have something more advanced and something with actual utility. ...

Determine if the action was "Build" or "Build and Run" in XCode?

I have a custom application which requires a bunch of things to be set up before it is run. I want to add it as a build phase so I can use it when I do "Build and Run" but not when I do "Build". How do I check it in a shell script which is run as a build phase at the end? Please don't ask why ...

Custom Control and Application in Same Project

I want to create a custom control in C# which I will use multiple times in my application, but will not likely use in any other applications. I have seen several websites which explain how to create a custom control and add it to the Visual Studio toolbox. They instruct you to create a project with the custom control which compiles to ...

How to remove file from Subversion (make it 'unversioned') ?

I'm always having this problem and I didn't found the answer yet really. Let's say you setup your partner setups a new project and imports every single file of the it, including those ones related to enviroment configuration which should not be under source control during the development (ie. the database config file). So then I checko...

Opening an Eclipse project already in my workspace

If I have an Eclipse project already in my workspace (say downloaded from version control), how can I open it in Eclipse? ...