Questions tagged [project]

In software development, a project is a collection of files and resources used in the development of an application or service. Use [ms-project] for Microsoft Project questions.

In software development, a project is a collection of files and resources used in the development of an application or service.

For questions related to Microsoft Project use the tag .

4797 questions
1
vote
1 answer

Where to put python module i need for several projects?

Let's say I have a python module called custom_colors.py in which I create some variables I am using in multiple projects in different working directories. So I am wondering what's the best practice of how to work with such helper files? copy them…
Quastiat
  • 1,164
  • 1
  • 18
  • 37
1
vote
1 answer

SQL03006 error in VS2010 Database Project (SQL Server 2008)

When I try to set up a database project for SQL Server 2008 in VS2010 I keep running into error "SQL03006 - Column xyz contains an unresolved reference to an object. Either the object does not exist or the reference is ambiguous because it could…
Gorgsenegger
  • 7,356
  • 4
  • 51
  • 89
1
vote
0 answers

How do you save project as templates in CLion?

There is a helpful feature in Intellij that allows you to save a project as a template. In CLion, I can only see the options "Save as Live Template" and "Save File as Template" in the tools window. I have searched on YouTrack, but there doesn't seem…
izhang05
  • 744
  • 2
  • 11
  • 26
1
vote
2 answers

How to "combine" two static libraries?

so I know that you can't depend a static library to another one but i was wondering if there is something that lets me combine them together. I am trying to setup a game engine project file in vstudio 2019 and i want to compile it as a static…
user13347932
1
vote
0 answers

How to add data in Excel using GUI Tkinter and Pandas

Hi, I want to add data to excel sheet by clicking on Add Button. I am using tkinter for GUI and pandas to work with excel. I tried get() method to get data from entry field and add it to excel sheet. But I cant see anything in excel sheet. Please…
Nikhil
  • 11
  • 1
1
vote
1 answer

Can anyone point me at a CMakeLists.txt example for a "GNU-style" project

Unfortunately, my Google search only turns up CMake - Wiki - GNU_style_example which has a broken link to the example code. I would like to use this format/structure for my project, but I'd like to see how the CMakeLists.txt files need to be set up…
Will
  • 3,500
  • 4
  • 30
  • 38
1
vote
1 answer

Proper way of avoiding to store the same attachment twice

I'm using the project.task model where delegation creates a parent/child link between both. When delegating I would like the person who gets the delegated task to also have access to the attachments on the original task, how could I avoid to have to…
Red15
  • 755
  • 1
  • 5
  • 17
1
vote
1 answer

Doxygen project brief not including spaces

I am developing a project and using Doxygen for the documentation. In the config file, I have put PROJECT_BRIEF = dynamic and effective, but for some weird reason on the HTML, it is appearing as dynamicandeffictive without spaces in between. Is…
1
vote
1 answer

Using intellij to modify/build/index code base on remote system

I have 2 machines to work upon. One is my macbook pro which I prefer for development purpose and another is a remote machine where I do majority of my testing by building the code base and bootstrapping the application. Is there a way by which I…
gaurav agarwal
  • 411
  • 1
  • 4
  • 7
1
vote
2 answers

How to work together on Android Studio using github

So me and my friend are working on an android project together but as it happens whenever he shares his code with me it takes a lot of time downloading gradles(which i already have downloaded.. don't know if its a diff version). We tried using…
1
vote
1 answer

Should I restart the git repository on breaking technological change?

If I change the framework or one of the major technology (for example React -> Vue) should I restart the repository?
Feralheart
  • 1,881
  • 5
  • 28
  • 59
1
vote
0 answers

VS2010 Database Project Deployment: Database objects build order

Im kinda new to VS2010 Database Project Deployment. So before, using this one, I usually create a deployment script using vbscript where all the database scripts are complied into one file. Using vbscript i can specify which data objects will come…
1
vote
1 answer

How do I run this Python project I found on GitHub?

I am a newbie. This is the project I want to run: https://github.com/app-generator/django-dashboard-atlantis-dark I installed requirements successfully. When I try to: python manage.py makemigrations, nothing happens. I tried to google a solution…
1
vote
1 answer

How would you insert a number in a specific place in an array?

#include class Vector { public: int size; int* contents; int capacity; Vector(); ~Vector(); void PushFront(int value); //void Vector(int initialCapacity); void PushBack(int value); int& At(int…
Ray M
  • 11
  • 1
1
vote
3 answers

How to compile to form a DLL

I have sample project codes. When I compile it inside Visual C++, it produce as EXE. I would like to know, how can I change the final output to DLL form. Means that, when I compile, it become DLL.
karikari
  • 6,627
  • 16
  • 64
  • 79