Posts by Pedro Mapelli • 111 points
10 posts
-
1
votes1
answer96
viewsQ: Asp.Net MVC Enable breakpoint instruction Javascript
When running the system it does not respect breakpoint and displays this message as shown in the image. According to this microsoft documentation should work like this.…
-
0
votes1
answer1053
viewsQ: Using Selenium how to select two different elements that have the same ID?
My attempt with xPath or by ID was unsuccessful. var options = new ChromeOptions(); options.AddArgument("--disable-gpu"); var chromeDriver = new ChromeDriver(options);…
-
0
votes2
answers1366
viewsA: Generate an excel file from a data grid C#
I managed to solve the problem after following all the steps exposed in asking and installing office 2013, I already had 2016, but when installing the previous version the code worked perfectly.…
-
0
votes2
answers1366
viewsQ: Generate an excel file from a data grid C#
I am trying to generate an excel file from a datagrid, and this is generating the following error: An unhandled Exception of type 'System.Invalidcastexception' occurred in Eletronictaxnotes.exe…
-
0
votes2
answers465
viewsQ: Go up to Bitbucket an already created branch
I have a project in Git Local and I want to go up to the bitbucket, but following the instructions: Get Started with command line Step 1: Switch to your Repository’s directory cd /path/to/your/Repo…
-
2
votes1
answer256
viewsQ: Application does not open in windows XP because it does not have administrator permission
I am having a problem, the executable of my program does not run on windows XP because of user permission issues. On other systems, you put it to run as administrator and it works normally.…
-
1
votes1
answer386
viewsQ: Replace is not working C#
I’m replacing one code with another in each row that the code is found on. But replace simply doesn’t work, goes through it and the line continues the same way. As you can see in the image below, if…
-
2
votes1
answer312
viewsQ: Error while trying to read excel file C#
public partial class FrmEditar : Form { private OleDbConnection _olecon; private OleDbCommand _oleCmd; private static string _arquivo = string.Empty; private string _stringConexao = string.Empty;…
-
2
votes7
answers2649
viewsA: Should people’s names be stored in two or just one column?
Giving a possible simpler explanation. Many people have compound names, for example: João Pedro Da Silva Machado. In this case the person’s name is John Peter and not just John. This division of…
-
2
votes2
answers7642
viewsA: How to store information from a SELECT in variables
This link will answer your question. https://code.msdn.microsoft.com/windowsapps/Realizar-select-e-exibir-8d90084c I already give you the example code that demonstrates how to do: public Form1() {…