Questions tagged as 'visual-studio'

1
answer

Optimizing codes with VC ++ and NASM / MASM

Good evening. I often use NASM in VC ++ on x86 and am learning how to use MASM in x64. Is there any way to specify where each argument goes and the return of an assembly function in such a way that the compiler manages to leave the data there...
asked by 12.07.2017 / 03:18
0
answers

Debugging .net core application in docker on windows 7

I need to generate an application in a docker container, but my computer is running windows 7 OS. I installed Docker Toolbox, and inside its own bash I run the hello world container, but visual studio 2017 does not recognize that docker is in...
asked by 19.07.2017 / 17:36
0
answers

I can not make a reference to a project

Hello, I have a solution in MVC divided into 4 projects: Model, Persistence, Contoller and View Persistence has a reference to Model Controller has 2 references for Model and Persistence I'm trying to put a reference to View for Control...
asked by 01.07.2017 / 21:34
1
answer

Error trying to compile .h files in c ++

The code is this: #include "stdafx.h" #include "classeID.h" #include <iostream> #include <string> using namespace std; int main() { id label("default", 0); cout << "Nome: " << label.getName() << "\n";...
asked by 06.07.2017 / 03:39
0
answers

VB: DataGridView

Good morning. I have the problem of the design of the table not updating. The Design: Private Sub DataGridClientsDesign() 'Procedimento que contem o novo estilo da datagrid Me.tabelaprocurar.DataMember = "Empregados" 'Nome da tabela...
asked by 09.06.2017 / 10:22
0
answers

MySQL - VB - Connection Error

I have an error, when trying to connect to MySQL in a report accompanied by a ReportViewer is giving me the following error .. I have tried to create a user with all accesses in Workbench in the previous error but now I come across this o...
asked by 16.06.2017 / 23:09
2
answers

dataGridView1_CellDoubleClick does not work!

I have the simplest function in the world and I can not make it work. When giving 2 clicks on any cell in my datagridview I want it to display the message "1" but it is not working! What's wrong? See my code: private void dataGridView1_...
asked by 16.06.2016 / 01:27
0
answers

Visual Studio 2015 restarts while creating a Report file

Whenever I try to create a Report file in my project, Visual Studio 2015 displays the following messages: How could I fix this?     
asked by 08.06.2017 / 15:38
1
answer

Normalize encoding of an entire solution

I was working with GitLab and noticed that it serves all the files on your front end with UTF-8. I have a solution that has source files with several encodings. Files in UTF-8 are displayed correctly in GitLab. However there are files with en...
asked by 03.05.2017 / 20:28
0
answers

Error when using a c ++ dll in a C #

I created a dll with a code in C ++, when I went to use it gave an error. function within the dll that I tried to use extern "C" __declspec(dllexport) void ClickLeftMouse(int x, int y){ POINT cursorPos; cursorPos.x = x; cursorPos.y = y; HWN...
asked by 25.04.2017 / 20:01