Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~1K People Reached
Favorite Forums
Favorite Tags
Member Avatar for pirat4e

**I have a table with 4 columns = a(ID),b,c and d.By using LINQ, how can I calculate 'd'* 'b' / 'c' while changing 'a' with a combobox?And would it make any difference if it is a VIEW? is it a fair question? and do you need more information? **

Member Avatar for pritaeas
0
181
Member Avatar for pirat4e

![2c915acada1248ef9a1127460f5c34c5](/attachments/small/4/2c915acada1248ef9a1127460f5c34c5.png "align-left") ![163de4b108e6016cbbd130f16496ce47](/attachments/small/4/163de4b108e6016cbbd130f16496ce47.png "align-right") Well, im a beginner and im having some problems with the code. On the display it shows System.Data.Objects.ObjectQuery 1[System.String](on the left). Im trying to merge two diferent tabels by taking Naziv from a different table and adding it to the grid.Another table for the combo(three tables, …

Member Avatar for pirat4e
0
389
Member Avatar for pirat4e

Well, im a beginner and im having some problems with the code. On the display it shows System.Data.Objects.ObjectQuery 1[System.String]. Im stuck. I will be grateful for your help. private void grdProdukti_CellValidating(object sender, DataGridViewCellValidatingEventArgs e) { if (e.ColumnIndex == 1) { int PID = int.Parse( e.FormattedValue.ToString()) ; grdProdukti.CurrentRow.Cells["Produkt"].Value = from tretmanProdukt …

Member Avatar for pirat4e
0
336
Member Avatar for pirat4e

using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace interfejsi interface Figura { String Plostina (); String Perimeter (); } } using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace interfejsi { class Kvadar : Figura { int a,b,c; public String Perimetar(int a, int b, int c) { return (a …

Member Avatar for pirat4e
0
324