Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
Ranked #16.0K
Ranked #2K

13 Posted Topics

Member Avatar for semicolon

You might skip the middle step and call the winrar.exe with the parameters straight instead of first instanciating cmd.exe

Member Avatar for nmaillet
0
246
Member Avatar for ppc493

First create your database and then use the database table in the DataGridView, even if that is with empty fields. It saves you much trouble.

Member Avatar for AnnieCalvert
0
197
Member Avatar for shahai.ali

If you can use a free third party tabcontrol then take a look at TabControlEX which does allow you to disable tabpages as well as a few other things you can't usually do.

Member Avatar for AnnieCalvert
0
1K
Member Avatar for semicolon

Yes, the DataTable.Select method supports boolean operators in the same way that you would use them in a "real" SQL statement: DataRow[] results = table.Select("A = 'foo' AND B = 'bar' AND C = 'baz'");

Member Avatar for arunkumars
0
340
Member Avatar for semicolon

To update a DataSet and send those updates back to the database, follow these steps: Open Microsoft Visual Studio .NET. Create a new Console Application in Visual Basic .NET. By default, Visual Studio creates a Static Module and an empty Main() procedure. Make sure that the project contains a reference …

Member Avatar for semicolon
0
145
Member Avatar for bo0ga

To add a check-all functionality in the GridView, simply add a asp:checkbox to the header template of the checkbox column.

Member Avatar for abhishekabhi
0
152
Member Avatar for sai.ayilavarapu

You can pass the gridview1 object as well as rowindex from form1 to form2 while clicking on the button. then after finishing the work in form2, update the gridview1 from form1 for that row, with the help of the gridview1 object and rowindex IN FORM2 itself.

Member Avatar for Rogachev
0
196
Member Avatar for uroz

The Arrays class has a static method called sort which exists in many overloaded versions so you can pass in an array of any primitive type, or pass in an array of Strings or other Objects. Since it is the reference of the array that is passed to the sort …

Member Avatar for AnnieCalvert
0
148
Member Avatar for hiral2cool

That is the main problem of SL and WPF, If you do not know how to create behavior. How to solve a few suggestion: 1. Create staticResource 2. Subscribe the control that placed in side DataTemplate to load event the referent in code.

Member Avatar for AnnieCalvert
0
370
Member Avatar for santhini

cell mouse down- Occurs when the user presses a mouse button while the mouse pointer is within the boundaries of a cell.

Member Avatar for M.Waqas Aslam
0
106
Member Avatar for kimlong2012

Use a DataSource control set to retrieve data using an initial SelectCommand. In Button_click event set a new SelectCommand as you need and Rebind the GridView to show new set of data

Member Avatar for kimlong2012
0
437
Member Avatar for amitkumarmailid

This is useful when the methods/variables of an instance are based on a data file that isn't available until runtime.

Member Avatar for lolafuertes
0
188
Member Avatar for Mikey12345

The header can display columns at their actual width. If overall width of visible columns in a header exceeds size of visible grid area, the grid displays a horizontal scrollbar that supports two modes of work. In the first mode (ColumnScrollType.Optimized) it can display the highest volume of information in …

Member Avatar for Reverend Jim
0
171

The End.