46,387 questions
0
votes
1
answer
352
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
1
answer
566
views
Flyway spring boot error : Unable to connect to the database. Configure the url, user and password
Good Morning everyone,
I am creating a backend for my application and I want to migrate my database using Flayway.
I added the required dependancies to my pom.xml
<dependency>
...
0
votes
0
answers
31
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) {
/...
-1
votes
1
answer
58
views
Visual Studio 2010 Resource Editor Dialogs in Quotes [closed]
I need to create a new dialog with some tabs out of some existing dialogs. I hand edited the resource file as I've done in the past and created some new dialogs with new IDD_ tags.
The new dialogs ...
0
votes
1
answer
93
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 ...
0
votes
1
answer
43
views
Time labels in Y Axis in C# chart
I'm trying to show accumulated time in a serie of a column chart. This "time" is given in seconds (int), but for a better understanding, I need to show it in "hh:mm:ss" format.
Is ...
1
vote
1
answer
107
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
155
views
"Installing" Eigen in VS2010
I cannot seem to get Eigen 3.4.0 running in VS2010.
This is supposed to be so easy, but I cannot manage to do it.
I downloaded the latest Eigen library, version 3.4.0, and unpacked the zip file.
I ...
0
votes
0
answers
137
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 ...
1
vote
0
answers
23
views
Saving Image In Access 2016
I am trying to save image in database.
Codes run successfully.
But when I retrieve the image it gives error.
Parameter is not valid on this Line:
pbDatbase.Image = Image.FromStream(msImage)
enter code ...
0
votes
1
answer
136
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
238
views
Visual Studio 2010 Tools for Office Runtime Installation Issue
We have a requirement to install MDS Add in for excel (2019).
URL : https://www.microsoft.com/en-us/download/details.aspx?id=58203
As a pre-requisite it shows that we have to install : "Visual ...
0
votes
0
answers
60
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 ...
0
votes
1
answer
192
views
What are these grey out import?
I am curious.
Why my .vb files have lots of greyed out import and it doesn't seem like I am the one writing it?
What are those?
Do I import that somewhere from some settings?
For example, I wonder ...
2
votes
1
answer
104
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. ...