Posts by Felipe Cavalcante • 179 points
9 posts
-
0
votes1
answer478
viewsQ: Export Listview to Excel (.xls) from a list populated by LINQ, WPF project (C#)?
Good... I need to export the Listview data populated by the LINQ method of an SQL database... I’m not getting the Column Headers in Excel... Anyone can help? Reference:…
-
3
votes1
answer349
viewsQ: How Popular a Listview, and her Popular another Listview by Primary Key?
I have two Listviews that I need popular using LINQ to SQL (C#, WPF project) from a search field. When typing in the field(textbox) the Keydown event will popular the first Listview (1), as the…
-
6
votes1
answer283
viewsQ: How to edit data (just numbers) and calculate their values on a Datagrid?
I need a Datagrid column to receive from users only numbers in rows (cells) and that after clicking the button, multiplication calculations are performed between cells of the same row and different…
-
2
votes2
answers379
viewsA: Listview with an empty and editable column
Got it that way personally... XMAL: <GridViewColumn Header="Quantidade" Width="Auto"> <GridViewColumn.CellTemplate> <DataTemplate> <TextBox Text="{Binding Path=Quantidade}"…
-
0
votes2
answers379
viewsQ: Listview with an empty and editable column
People wanted to have empty and editable cells in a column of a Listview that pulls from the SQL Server Database information to my project. To pull the information I use LINQ and I can list all the…
-
3
votes1
answer127
viewsQ: Format Combobox value pulled from SQL database (LINQ) in C# Project (WPF)
I need some help with the code below... I need to make the Float value pulled from the SQL Database in the Brazilian format of the Real Number Set in a C# (WPF) project in a Combobox (as Double).…
-
1
votes2
answers2252
viewsA: Selecting a value from a Listview row/column populated by LINQ to SQL
Good night. I found the solution: private void Select_Item(object sender, MouseButtonEventArgs e) { if (listView_tabProduto.SelectedItem != null) { tabProduto id =…
-
0
votes0
answers44
viewsQ: Only numbers in Textbox in C# (with Num Lock, WPF Project)
In this command below only the numbers between the quotes (") and the minus (-) of the keyboard work when the user type in a Textbox. I need it to work as well when Num Lock is enabled on the…
-
7
votes2
answers2252
viewsQ: Selecting a value from a Listview row/column populated by LINQ to SQL
Through the double click event I need to pull a value from a row/column in a Listvview populated by LINQ to SQL. For example, when the user needs to select a value from a row/column of this…