46,408 questions
0
votes
1
answer
278
views
This statement is not recognized in this context when build action is none
I got this script in my database project in Visual Studio
IF EXISTS (SELECT * FROM INFORMATION_SCHEMA.COLUMNS
WHERE TABLE_NAME = 'SystemTableLogs')
BEGIN
UPDATE [SystemTableLogs]
...
0
votes
0
answers
26
views
How can I replace VC2010 default runtime calloc with my own implementation of calloc?
I am trying to replace VC2010 default runtime calloc with my own implementation of calloc
I tried this code but my program still uses the default VC2010 calloc
void* calloc(size_t num, size_t size) {
/...
0
votes
1
answer
91
views
Winforms window loses focus when called from WPF
I have a WPF .Net Framework application, which calls a Winforms window (DLL).
When this new Winforms window is shown, it is then sent to the back of the WPF application.
As if the new window loses ...
1
vote
1
answer
97
views
trying to work with MPI but it outputs 'The batch file cannot be found' in cmd when I debug the file in Visual studio 2010
I am trying to install MPI on ms visual studio 2010 (our professor forced us to use 2010 version specifically probably for the privileges it offers that newer version don't idk) and it's driving me ...
0
votes
0
answers
129
views
Linking flag exe to dll in c++ mfc
I have two C++ projects: one is an executable (EXE), and the other is a dynamic link library (DLL). In the EXE project, I am using a flag corresponding to a checkbox, and I need to access the value of ...
0
votes
1
answer
127
views
Why are my preprocessor-macros slower or faster than manual writing seemingly random?
Yesterday at work, my colleague claimed that preprocessor macros were slower than writing variables and functions manually. The context is that we have a class in which member variables are sometimes ...
0
votes
0
answers
47
views
Visual Studio 2010 Windows SDK override with latest version
There's default macro with $(WindowsSdkDir) used by Visual Studio. This is Microsoft SDKs with version 7.0A.
I want to use new Window 11 SDK with new API, how can I override $(WindowsSdkDir) in ...
2
votes
1
answer
97
views
Jenkins devenv build not finishing because next command starts
I've been trying to setup a Jenkins build machine that uses Visual Studio 2010 building tool to build a C++ app. The build stops a minute after it started and Jenkins goes ahead with the next command. ...
0
votes
1
answer
464
views
How to Run, Develop and Deploy Legacy ASP.NET Project On New Windows 11?
I have the original source code for the project and am trying to get it up and running locally on Windows 11, but I'm not sure what tools(and versions) I need.
Additional Information:
The project was ...
0
votes
0
answers
98
views
Localization resources with Win10 and Two output file names resolved to the same output path
I have a C# project, which builds fine on Win7. I am now attempting to build the project on Win10, as DigiCert no longer supports Win7 for code signing certificates. The project is complicated enough ...
0
votes
1
answer
78
views
how do i stop system stack overflow in visual basic?
I'm working on an application designed to convert between different number systems. Its operation involves users inputting a value in one base number system, after which the remaining three text boxes ...
0
votes
1
answer
287
views
DevOps 2022 Server not connecting on VS 2012 and VS 2010
We are migrating our TFS server 2017 to DevOps Server 2022 but when we migrate our databases to the devops server our connection from visual studio 2012 and 2010 is not working while on Visual studio ...
0
votes
1
answer
59
views
I commit from my Microsoft Visual Studio, however, I am now seeing that i now have two versions of two files
I have issues with my commit, two files in my repo are being duplicated. My Logics.cs and Constants.cs were duplicated. I really do not know why that happened, I made the commit from my Microsoft ...
0
votes
0
answers
69
views
C++ vector subscript out of range : Monotone Interpolation
#include <iostream>
#include <vector>
#include <algorithm>
// Function declarations
std::vector<double> wiki_mon_spline(const std::vector<double>& x, const std::...
1
vote
0
answers
58
views
IloEnv env ; don't work in the dbug and it can access to it
i run a code in c++ in debug version step by step (F11) using visual studio2010 linked with cplex 12.4, so i obtained this error and message at the line where i declare IloEnv env ; it don't work , ...
0
votes
1
answer
979
views
Warning: Module "openssl" is already loaded in Unknown on line 0
When I write PHP artisan serve in Laravel 10,
This error always write in console. How to resolve this issue?
PS C:\xampp\htdocs\Laravel\test_proj> php artisan serve
*PHP Warning: Module "...
-1
votes
3
answers
191
views
C# and the Unity Engine
I'm trying to complete a tutorial video about some piece of code that should prevent players to jump continuosly after they die at some point(when they collide with an obstacle).We assigned gameOver ...
0
votes
1
answer
754
views
In Visual Studio how to remove a class
I am learning C#. I had a class under a namespace and it works fine. After adding another class, it says that there are multiple entry points. So I want to delete the other class. Even after deleting ...
-1
votes
1
answer
63
views
Unable to create a Java project in Visual Studio
enter image description here
I want to create a Java Project in Visual Studio but I am not able to find Java language in the list of languages given under Create a project
also I tried creating a java ...
0
votes
0
answers
41
views
"Dynamics CRM Destination" does not have a value for the ID property
While using the KingwaySoft tool for data migration from Dynamics CRM to another CRM table, I encountered an error message stating: 'The 'Dynamics CRM Destination.Connections[DynamicsCRM]' in the ...
-1
votes
1
answer
40
views
play file RM audio c#
How to play an RA audio file in C#
RA audio file
Make WindowsMediaPlayer support the ra file or play a single file in another
files ra not play in WindowsMediaPlayer
code c# play in WindowsMediaPlayer
...
0
votes
0
answers
132
views
I can't install Visual Studio 2010 on Windows 10 these errors appear while installation
When I tried to install VS 2010 on Windows 10, the installation ends with errors as shown in this screenshot:
I tried to download another copy of VS 2010 but the same errors appeared.
I stopped the ...
1
vote
0
answers
32
views
how to make a CNN so that my program can tell the difference between a photo and a drawing?
i have a folder full of over 12,000 images. i'd like to make a program to redirect drawings to the drawing folder and photos to the photo folder. I'm in my 1st year of engineering school and I don't ...
0
votes
1
answer
404
views
I am getting an error in django saying it might be an issue with circular import but I am not sure how to fix. I think my code is correct
I am very new to coding so I will explain what I did step by step.
I created a virtual environment in command prompt and then I installed django in that. Then, I opened the project in vs code and ...
0
votes
0
answers
205
views
Convert LPSTR to CString
I'm on an old VS2010 project using CString which I'm really not well acquainted with.
I need to retrieve the %TEMP% path so I thought about using GetTempPath() function.
The issue is that I can't make ...