No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
17 Posted Topics
I am using a datagridview in my windows application in VS-2005. How can I convert some cells in a particular textbox column in my datagridview to checkbox cell types. Please provide some suggestions with code (if possible) Thanks in advance | |
Does asp.net complies the dlls into msil every time when an published application is browsed or a windows application exe is run??? How does asp.net minimizes or rather reduces the entire compilation process?? Thanks in advance | |
How to update gridview or datagridview in windows appl.. to database at once. generally what we do is we update database using row by row way either using foreach or for loop But I need something which updates to database at one execution | |
how to create desktop applications in c# using http requests and http response with iis | |
| |
Re: go to main form's properties and set ismdicontainer=true and then for every form's (object when created and called to form.show() before that set the form's mdiparent to the main form) for e.g. form1 obj=new form1(); obj.mdiparent=mainform | |
Re: dataGridView1.Rows[Row].Cells[ColName].Style.SelectionBackColor =your color(Color.Red) for image find this link: [url]http://msdn.microsoft.com/en-us/library/system.windows.forms.datagridview.rowprepaint(VS.80).aspx[/url] | |
I have got 2 problems... 1) How can I find the visible no. of rows in a datagridview and the index of the top row during vertical scroll.I am using visual studio 2005 windows application in c#. 2) How to refresh datagridview's particular no. of rows instead of refreshing the … | |
Re: u can use background worker thread or a progress bar to find ur requirements | |
how to set selected row's border colors in a datagrid view using windows application in c# | |
How do I handle more than one thread to run parallely ? one thread keeps on updating the dataset and binding the grid every 10 seconds whis the timer does. so it cannot be stopped.But I want other events to execute fastly without consuming time such as scrolling the grid … | |
Hi, I am facing a problem with alert message on my web page. When alert message is shown, my current web page which fires events automatically after 3 seconds stops until the alert message is gone.So instead i want to use a div which if shown as alert msg my … | |
Re: Set the tabstop property to false for the controls which are not supposed to work on tab key press. | |
Re: Just set the panel's enabled property to true or false Panel1.Enabled=true; | |
Re: Are you familiar with Ajax control toolkit ? If not then you can find it in google website and get a download of that and add the .dlls to your application and u can use them for any type of control. | |
Re: if ur control is a grid view then the code to capture the selected row's id in a string is: string str = GridView1.SelectedDataKey.Value.Tostring() Note: Set the Datakeyname from the propertiers of the GridView control to your table's id name and then write the above line of code in gridview's … | |
Re: First you create a new class Library from the application by New Project ->Class Library -> give some name to it .and then put your logic into it.Then build the project u created. Now to include the .dll/.exe into another applications go to solution explorer and right click then go … |
The End.