No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
7 Posted Topics
put all the text box contents into an array of string contents item.Text=contents[0]; item.SubItems.Add(contents[1]); item.SubItems.Add(contents[2]); item.SubItems.Add(contents[3]); listView1.Items.Add(item);
i have designed a windows forms which has a textbox in it,in that textbox i will enter path and on click of button i will bind that data to database(mysql) and i am done with it.but if the entered path contains ''(escape character) it will be ignored while binding for …
hi all, i have designed a form which contains few controls,i want to do validation upon button click, i used errorprovider to set error if that field is empty i used the following code [CODE]bool No_Error = true; if(OfficeNameComboBox.Text == "") { OffNameErrorProvider.SetError(OfficeNameComboBox,"Invalid Input"); return No_Error=false; }[/CODE] i dont want …
hi all, i need to develop windows applications(c#,mysql)as i have started to develop applications recently i need some examples to refer(which includes almost all controls) may be like customer maintenance or order placement form etc..so can any one help me out.. thanks a lot,
i have a listview in my windows application,i am able to edit particular column in listview and place textbox in that position, now i want to add the textbox text into the listview edited column, No databinding involved in this application.and my code is below.. void ListView1MouseDoubleClick(object sender, MouseEventArgs e) …
AssemblyName urassemblyname= AssemblyName.GetAssemblyName("path or dll name");
I have a ListView in my application with four columns. I want to edit two of them, one is text field and other one is date field. The other two should not be edited. And I want to write code in EditToolStripMenuItemClick event, or any other event (possibly). Can it …
The End.
girishsp