Hi there,
Is anyone aware of any documented Student-Project allocation algorithms (similar to the Hospitals-Residents problem, which is a subset of a two-sided matching problem)?
After I clean a project in eclipse I don't see the class files generated in the output folder "bin" although there's no build error, what can I do to make it regenerate the class files?
thanks
Whenever I open Visual Studio 2005, it opens correctly and without any errors.
But when I load my project and try opening it in the design view it does not load.
Actually, I get the error "Visual Studio 2005 (not responding)."
What should I do to fix this error?
If I have 6 modules in my project is it possible to build only one out of six ? without commenting out others ?
EDIT
Submodule will not work itselft because or parent tags. I need to install the parent first to make it build. how can I do it without installing parent
How to change the Windows Application's default icon with other one in C# desktop application. I am trying to change it in Setup Project but it is not. I want to show my own icon with Application's shortcut rather then windows default icon
I having an XML file and that file is under the Documents folder.
If I actually give the entire path in C# then I am able to retrieve the XML values, but if I give the project path then it is not getting the values.
For example:
string fileNamePath=ConfigurationManager.AppSettings["XMLDocPath"].ToString() + fileName;
m_xmld.Load(fileNamePath);
It is throwing a runtime error.
It is possible to add include paths and libraries to all C projects. In others words who can I make them global or copy one C project build setting to an other one
i am a computer science student and have just entered in my final year. i wanna do a project on something new and exciting in the field of networking dbms os or ai.
i am proficient in java c, oracle and am improving my linux skills..
please give me some suggestions for hot topics..
you should be able to merge the assemblies... but just wondering if you had a VB.net web app, and then had a C# project, how would you merge the aspx pages?
can it be done?
Hi!
When im working with Netbeans is there a way i can see my changed XSLT in the browser without building again my project? I have to change my XSLT very often to see the results and If i build my projects too many times the system hangs. Im working with ubuntu 10.04.
I was trying to get fresh copy of my project from github using tortoise svn client. But I am getting following exception.
The PROPFIND request returned invalid XML in the response: XML parse
error at line 1: no element found
(Checkout from https://github.com/anoopchaurasia/JavaScript-File-Manager.git)
When I tried to checkout using subeclipse on Eclipse, it saying "Folder does not exist.".
I am able to checkout same repository on my other system.
E.g. what "Use Core Data for storage" checkbox option means when creating new Window or Navigation based project?
How to add Core Data for Tab Bar Application?
How to initialize managedObjectModel, managedObjectContext, persistentStoreCoordinator?
I added a bunch of images as project resources.
Now i want to use them in my WPF application using the image control.
How can I assign the resource to the source of the image control?
I have installed xcode 3.2 with iphone SDK. (without Mac OS 10.4 SDK). WHen i create new project i only got these options for Mac OS
-- Application
-- Framework and Library
-- Application plugin
-- System plugin
--Other
But a book named: Programming Object C 2.0. From which i am learning object C. Its showing XCode with these templates for Mac OS
--Application
--Audio Units
--Automater actions
--Bundles
--Command Line Utility
--dynamic library
--Framework
--Java
--Kernal Extensions
--Standard Apple plugin
--Static Library
--Other
I need the Command Line Utility template so that can create sample projects mentioned in book.
hi,
i have made a project using c# .net windows application .
i deployed it also bt wen i install n run it it throws an exception
database not faund plz help me
Hi,
I would like to know following: I added the folder "Graphics" into my project and placed one BMP to it. Now I would like to load the image from my code, but I cannot figure out how. I know its simple with resources but is there a way without adding the image into resources? Thanks
What's the best practice of making a variable that would be accessible by almost all classes in a Grails project? Is there a config file that I can use for storage of that data (i.e. application.properties)?
Thanks.
I create a C# Windows servive project, then I want to run a .bat file, but I find that it does not run
Process pInfo = new Process();
pInfo.StartInfo.UseShellExecute=false;
pInfo.StartInfo.CreateNoWindow=true;
pInfo.StartInfo.FileName =bat file name ;
pInfo.StartInfo.RedirectStandardOutput = true;
pInfo.Start();
Could anyone help me ?
Hello.
I like the VS option of Add Class that creates .cpp and .h file for me with a class template in it. But currently i am storing my source files in other folder than project file. Is there a way to to tell VS that i want to create those .cpp and .h files in a specific folder?
I already have a solid knowledge of Object-oriented PHP as well as HTML/Javascript/MySQL plus a basis in Java.
Now I would like to implement my projects in an efficient way, whether it is a web project in PHP or an Android application.
My problem is once my code gets bigger I start messing error handling, with form validation etc, and I guess its because of my poor basis in software architecture.
Thanks.
I have a Java Swing project for my class. I would like put it on my website so people can use it. However I'm not sure if there is a way to turn it into a servlet. Or do I need to know JavaScript? I'm confused. Is there a way to make my swing application into a servlet automatically?
I want to add a few drawing functions to an iPhone project for drawing things. Something like drawTile(x,y,len,wid); which would call openGL to draw a box somewhere. I should just be able to write a procedural C file to do this but the openGL libraries are objective C and I'm getting weird errors. Do I have to make a class for all of my drawing commands and call class methods?
I'm trying to deploy a war file onto my server which is tomcat 6 and it run on a linux machine. My project run if i give the url with the port number eg: http://192.168.1.8:8080/uctc but it fails to run if i run it without the port number eg ://192.168.1.8/uctc ...can anyone tell me how to run my website without the port number??