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
~674 People Reached
Favorite Forums
Favorite Tags
c++ x 1
Member Avatar for disjes

Hi, i've got a list with nodes with this structure: private: char namefield[30]; char tam[3]; char type[1]; }; i want to find and element with the find function from alghorithm class but i want to do it with the namefield property of the item, the find function has an item …

Member Avatar for ravenous
0
136
Member Avatar for disjes

Hi i nedd to update a datatable binded in a gridview here is the code: protected void GridView1_RowUpdating(object sender, GridViewUpdateEventArgs e) { ds.Tables[0].Rows[e.RowIndex]["n1"] = Convert.ToInt32(((TextBox)(this.GridView1.Rows[e.RowIndex].Cells[3].Controls[0])).Text); this.GridView1.DataBind(); GridView1.EditIndex = -1; GridView1.DataSource = ds.Tables[0]; GridView1.DataBind(); } The problem is that when i change a value in the cell 3 and i click …

Member Avatar for tinstaafl
0
255
Member Avatar for disjes

Hi, I have a field in my table called foto it saves the url on disk of a picture and i'm trying to bind it like this.. pictureBox2.DataBindings.Add("ImageLocation", tabla.DefaultView, "foto"); tabla is a datatable.. the field saves an url like this: C:\Users\Public\Pictures\Sample Pictures\Hortensias.jpg but it doesn't work, picturebox show a …

Member Avatar for disjes
0
134
Member Avatar for disjes

Hi Here's my problem.. I'm working in Vs2010 C# with Tabcontrols and shapes from the VbPowerPack, so when i try to drop any textbox above the shape in the tab 2 it goes to the tab 1, i already tried selecting the 2nd tab before drop it and nothing, same …

Member Avatar for disjes
0
149