7,701 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
Advice
0
votes
2
replies
33
views
VS 2019 restrict Git Changes displayed for solution only files in that solution ignoring other root folders in repository with other solution files
I have a GitHub repository, test samples, that contains several folders each with a separate test or exploratory Visual Studio 2019 solution file and it's associated source files. Each of these ...
2
votes
1
answer
105
views
Is it possible to use a SQL query for setting the AllowBlank property of a parameter?
Is it possible to set the AllowBlank property of a parameter in a SSRS report via SQL query?
I want to do this, because I have in the parameters one which is depending on another parameter.
When the ...
-1
votes
1
answer
79
views
Having issues launching Visual Studio 2019 and creating standalone .EXE in Visual Studio 2022 like in Visual Studio 2019 [closed]
My habits have been ruined lately since a windows update (it seems) corrupted a file in .Net Framework, named clr.dll, preventing Visual Studio 2019 from launching (and not only that software). It ...
0
votes
0
answers
74
views
OnDraw() not triggered by OnUpdate() until change from CListView to CView
My question is how is a multiple document MFC application whose view was derived from CListView and was changed to the simpler CView in order to enable OnDraw() affected? Does this introduce problems?
...
2
votes
1
answer
317
views
Turn off warnings and errors in the editor view in Visual Studio 2019 and 2022
When I have a warning or an error in my C++ code, Visual Studio jumps to it and shows a yellow message box in the editor.
I can't find how to disable this feature; it's super annoying. Where do I turn ...
0
votes
0
answers
51
views
SQLite is missing as DataSource in Visual Studio 2019
I used to generate and print reports in Visual Studio 2015 using SQLite databases. Creating reports with RDLC was very easy — I could design them and print directly on A4 paper. ORM use was like ...
0
votes
0
answers
35
views
How to unit test a pipeline in BizTalk 2020? Option to create a New Test is unavailable in VS2019
I'm following the steps in this page to attempt unit testing of one of my custom pipelines. In that article, step 6 says "On the main menu, click Test, and then click New Test."
But in my ...
0
votes
0
answers
48
views
Visual Studio Enterprise 2019 IntelliSense false positives with Python 3.12, fine with 3.8
I have a VS2019 solution with Python projects running on Windows 10. I recently installed Python from 3.12 to upgrade from 3.8. Now I can select either 3.8 or 3.12 in the drop-down menu in my VS2019 ...
0
votes
0
answers
15
views
How to convert a sender object to a ListItens object?
In my code convertion of VB.NET to C#, is error in convertion...
"Cannot implicitly convert type 'object' to 'demoComp.ListControlItem'. An explicit conversion exists (are you missing a cast?)&...
1
vote
1
answer
92
views
Entity Framework 5.0 database first approach unable to update model Visual Studio 2022 due to EntityCommandCompilationException
I am using Entity Framework 5.0 database first approach and I am unable to update model (edmx in Model browser) from database in Visual Studio 2022.
I have 3 models inside my solution and I am able to ...
0
votes
0
answers
47
views
Build error during publishing in MS Visual Studio Professional 2019
I'm getting build error as mentioned below while publishing web project to root directory. Anybody facing same issue?
Publish has encountered an error.
Build failed. Check the Output window for more ...
0
votes
0
answers
102
views
WDK 10.0.26100 in Visual Studio 2019
According to the official documentation, the latest WDK (10.0.26100) only supports Visual Studio 2022.
However, I'm trying to use WDK 10.0.26100 with Visual Studio 2019, and I'm getting the following ...
0
votes
0
answers
44
views
Zumero fails synchronizing a sqlite database with status code 244
I prefear to open a new question, as the old one is a bit outdated and I believe I have new infos.
All the tests have been done on a real device, as I've seen the Android emulator (don't know if it's ...
0
votes
1
answer
61
views
Problems with CurrentUICulture
In my app, I have an odd problem: the thing is that the app should be in Spanish but for some reason in the localizedController when it reaches this line:
var cookie = HttpContext.Request.Cookies[...
0
votes
0
answers
77
views
WCF changing list type to Array, I tried to change in the advanced settings as well but still getting same error which convert List<T> to array []
I have WCF service:
[OperationContract(Name = "GetAllEmployee")]
IList<Employee> GetEmployees(string UserId, string UserPassword);
In ServiceWeb.svc.cs file, I have this code:
public ...