Posts by Denis • 944 points
68 posts
-
0
votes1
answer114
viewsA: How to insert float value by arraylist - C#?
I am working with access and save the decimal values in a text column (Examples: 21275 | 47404,95 | 66295,9), I do the processing to display through the string. Format and to manipulate in the…
-
1
votes1
answer104
viewsA: Wpf Modern UI Metro Chart Update Chart
Apparently change the order of the following lines works: Of: series.ItemsSource = ListaDcEvolucaoDiaria; chtEvolucaoDiaria.Series.Add(series); To: chtEvolucaoDiaria.Series.Add(series);…
-
1
votes1
answer104
viewsQ: Wpf Modern UI Metro Chart Update Chart
I have the chart below where the first load works normally, but when I do a search and change the list it continues with the previous series. Ex: in the first load I have 8 items in the list and it…
-
0
votes3
answers266
viewsA: WPF - Datagrid - Exclusion
If I didn’t get it wrong... MainGrid.SelectedIndex
-
1
votes1
answer57
viewsA: Change column width Modern UI Metrochart for WPF
I’ve been racking my brain about it for a week looking in forums and here in the OR and now I’ve gone to take a wild look at the site itself and found the answer. I will not delete the question as…
-
0
votes1
answer57
viewsQ: Change column width Modern UI Metrochart for WPF
Good morning, everyone. I’m using the Metrochart (https://modernuicharts.codeplex.com/) for graphics generation, everything is working fine, however I would like to change the style of the columns /…
-
0
votes1
answer331
viewsQ: WPF Checkbox Combobox direct click on button after selection
I have some comboxboxes I fill with checkboxes. After selecting the items click on search, but the first click is used to compress the combo and then click again to trigger the button. Is there any…
-
2
votes1
answer52
viewsA: Wpf C# Oledbparameters Update Where select
I ended up doing it in two steps: cmd = new OleDbCommand("SELECT TOP 1 P.pendenciaId " + " FROM tblPendencia P " + " WHERE P.Contrato = @contrato" + " AND P.PendenciaNivel = @pendenciaNivel" + " AND…
-
2
votes1
answer52
viewsQ: Wpf C# Oledbparameters Update Where select
I’m trying to change a query to use Parameters but when running using Parameter I get the "Data type Mismatch in criteria Expression" error. Without Parameters works normally. Follow the two…
-
2
votes2
answers1251
viewsQ: WPF C# String Format
I have a usercontrol with the following configuration: <UserControl x:Class="PainelPendencias.View.PendenciaConsulta" x:Name="uCPendenciaConsulta"…
-
2
votes1
answer35
viewsA: Microsoft access Update Datediff
After some help... UPDATE tblPendencia SET tblPendencia.Diaspendents = (DATEDIFF(’d', tblPendencia.Aberturadata, Now())) WHERE tblPendencia.Pendenciaorigin = 'PM'"
-
1
votes1
answer35
viewsQ: Microsoft access Update Datediff
I need to do a simple update where I update the "Days" column with the current date value minus the "Opening Date" column". "UPDATE tblPendencia SET DiasPendentes = (DATEDIFF(day, DATAABERTURA,…
-
3
votes1
answer143
viewsQ: c# Microsoft Access converting data
I am having problems with INSERT and UPDATE because on my machine the dates are being converted automatically, but on users' machines not. Ex: OleDbCommand cmd = new OleDbCommand("UPDATE…
-
3
votes1
answer335
viewsQ: WPF Xaml Stringformat
Good afternoon guys, I’m having a problem kind of ridiculous, but I can’t find the solution. I’m trying some stringFormat as StringFormat={}{0:#,#.00}} and StringFormat=N2}, besides…
-
0
votes2
answers535
viewsA: Import a list to another Form C#
public partial class FrmCadastrarProduto : Form { List<Produtos> oRetorno = new List<Produtos>(); List<Fornecedores> ListaFornecedores = new…
-
1
votes2
answers67
viewsA: Posting of a website
If you want to make the site itself, there are hundreds of possibilities, free domains, etc. If you simply want to make an eccomerce there are enabling platforms like the Wix. My cousin pays R$29 /…
-
11
votes2
answers359
views -
0
votes1
answer276
viewsQ: Where is pom.xml?
I’m starting in Java and according to the booklet there should be a file called pom.xml in the project, but I cannot find.…