Posts by Emerson Brito • 301 points
10 posts
-
0
votes0
answers82
viewsQ: Broken page when debugging in Chrome
When I do the debug of a project ASP.NET MVC in the Visual Studio directing to the browser Chrome, it already opens the broken page: This only happens when the browser is closed. When it already has…
-
4
votes0
answers853
viewsQ: Post Office - PLP XML
In the Postal web service there is a process of sending plp (pre-mailing list), which contains information of the postal objects. I’m sending this plp by the method fechaPlpVariosServicos. But when…
-
1
votes1
answer206
viewsQ: Argument data type xml is invalid for argument 1 of Len Function
I am mapping a property to the xml database using Migrations. public string Xml { get; set; } this.Property(t => t.Xml).HasColumnName("Xml").HasColumnType("xml"); However, when consulting the…
-
1
votes2
answers608
viewsQ: Web Service Mail Test - SSL Error
Has anyone ever had this problem referencing web service for testing and implementations of the post office. I need to perform some validations but I can’t execute any method without SSL errors.…
-
2
votes2
answers445
viewsA: Update Text linked to a Databinding
Here is an example of the solution I found. Thanks ! @Maiconcarraro. using System; using System.ComponentModel; using System.Drawing; using System.Text; using System.Windows.Forms; using…
-
4
votes2
answers445
viewsQ: Update Text linked to a Databinding
I have the following property linked to a label, where the value of this property appears in the text field. Like this: this.labelPedidosHoje.DataBindings.Add("Text", pedidosIntegrados,…
-
2
votes1
answer115
viewsQ: Progress within a Task
How can I modify the values of an interface control within a separate task from the main thread? Example: private void button1_Click(object sender, EventArgs e) { Task task = new Task(Processar);…
-
3
votes1
answer1363
viewsQ: How to load Datatable on a Datagrid?
I have a DataTable loaded with information in a WPF application. I’d like to take that DataTable and carry it on a DataGrid. How can I do this the easy way ? DataGrid in the XAML: <Grid>…
-
1
votes1
answer806
viewsQ: Process does not close in task manager
I have the following code snippet to close my winform application: private void frmAgent_FormClosing(object sender, FormClosingEventArgs e){ if (MessageBox.Show("Deseja realmente fechar o sistema?",…
-
1
votes2
answers196
viewsQ: Error closing Forms
I have the following code snippet to close my application. private void frmAgent_FormClosing(object sender, FormClosingEventArgs e) { if (MessageBox.Show("Deseja realmente fechar o sistema?",…