Posts by Alex Nunes • 105 points
9 posts
-
0
votes1
answer15
viewsA: Automatic Excel caption (empty series)
I solved via VBA ActiveSheet.ChartObjects("Gráfico 39").Activate Dim cht As Chart Dim ser As Series Dim i, j As String Dim wshtA As Worksheet Dim EGCD As Double 'Formata a séries e cria o rótulos…
-
0
votes1
answer15
viewsQ: Automatic Excel caption (empty series)
In my spreadsheet I have a chart that currently receives 46 series. All series are linked to databases that depend on a single variable, so when choosing the variable some of the series return #N/D,…
-
-1
votes2
answers345
viewsA: How does the rounding of the string format work?
In my opinion you could use Console.WriteLine("Result is = " + Format(myValue, "#.##0,0#")); This way you would keep it original value, without making changes and keep the real value. As a financial…
-
2
votes2
answers486
viewsA: Reference microsoft.office.Interop.word not listed in Visual Studio
It is very likely that you will have to import this Assemble, see here for more information: Information about Assemblies https://msdn.microsoft.com/library/15s06t57(v=vs.100). aspx#pialist Download…
-
1
votes1
answer77
viewsA: Error while trying to update Visual Studio 2015 / Framework to version 4.6.1
Try downloading the Development Package: https://www.microsoft.com/pt-br/download/details.aspx?id=49978…
-
1
votes1
answer445
viewsA: Messagebox appears twice
The message was appearing twice because the quoted code was executed within a function after clicking on the application button, the problem was that I did not notice that the same button called…
-
-3
votes1
answer445
viewsQ: Messagebox appears twice
I have the following code which is triggered by Handles Button1.Click. Dim X, Cf As Double Dim A, B, C, D, J As String A = TextBox2.Text B = TextBox3.Text C = TextBox4.Text D = TextBox9.Text J =…
-
1
votes1
answer382
viewsA: Datagridview VB Celulas Editaveis
Try to add the line: DataGridview1.ReadOnly = False After your DGV is populated. On the basis this will allow it to be edited.
vb.netanswered Alex Nunes 105 -
3
votes1
answer246
viewsQ: Create second column in Datatable
I have a DataTable where with the code: DT.Column.Add("1ª", gettype(int32)) For I = 1 To 30 DT.Rows.Add(I) Next(I) This For lists column 1 from 1 to 30. 'DT is declared with a new DataTable, in this…