Advertisement
Advertisement
| 06.25.2008 at 04:20AM PDT, ID: 23514013 |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 65: 66: 67: 68: 69: 70: 71: 72: 73: 74: 75: 76: 77: 78: 79: 80: 81: 82: 83: |
try
{
//Populate the Collection DataGridView
string conString = @"Provider=Microsoft.ACE.OLEDB.12.0;Data Source=" + Environment.CurrentDirectory + @"\DB.accdb;Jet OLEDB:Database Password=xxxx;";
// create an open the connection
OleDbConnection conn = new OleDbConnection(conString);
OleDbCommand command = new OleDbCommand();
command = conn.CreateCommand();
// create the DataSet
DataSet ds = new DataSet();
// run the query
command.CommandText = "SELECT ID AS [#], CTitle AS [Title], CType AS [Type], CValue AS [Value] FROM Table1 WHERE Tab = 'Tab1';";
OleDbDataAdapter adapter = new OleDbDataAdapter();
adapter = new OleDbDataAdapter(command);
adapter.Fill(ds);
// close the connection
conn.Close();
bindingSource.DataSource = ds.Tables[0];
dataGridView1.DataSource = bindingSource;
//Set Value Column Format to Currency
dataGridView1.Columns["Value"].DefaultCellStyle.Format = "c";
//Count the number of rows
try
{
int CountString;
CountString = bindingSource.Count;
Label1.Text = CountString + "";
}
catch
{
}
//Total the value of results
try
{
String valueString = ds.Tables[0].Compute("Sum(Value)", String.Empty).ToString();
decimal valueString2 = Convert.ToDecimal(valueString);
String valueString3 = String.Format("{0:C}", valueString2);
if (valueString != "")
{
Label2.Text = valueString3;
}
}
catch
{
}
// set the size of the dataGridView Columns
this.dataGridView1.Columns[0].Width = 50;
this.dataGridView1.Columns[1].Visible = false;
this.dataGridView1.Columns[2].Width = 311;
this.dataGridView1.Columns[3].Width = 50;
this.dataGridView1.Columns[4].Width = 50;
this.dataGridView1.Columns[5].Width = 100;
this.dataGridView1.Columns[6].Width = 100;
this.dataGridView1.Columns[7].Width = 100;
this.dataGridView1.Columns[8].Width = 100;
this.dataGridView1.Columns[9].Width = 100;
//Sort on the Title Column
DataGridViewColumn sortColumn = dataGridView1.Columns[2];
ListSortDirection direction;
direction = ListSortDirection.Ascending;
dataGridView1.Sort(sortColumn, direction);
//Set the Selected Property of the First Row to False
dataGridView1.Rows[0].Selected = false;
//Clear selection in dataGridView
dataGridView1.ClearSelection();
dataGridView1.CurrentCell = null;
}
catch
{
}
|