Click here to Skip to main content
15,906,625 members
Home / Discussions / C#
   

C#

 
GeneralRe: I like convert Icon to String Pin
J4amieC14-Mar-05 0:57
J4amieC14-Mar-05 0:57 
Generalbypassing the button event Pin
maheshfour13-Mar-05 20:11
maheshfour13-Mar-05 20:11 
GeneralRe: bypassing the button event Pin
Christian Wikander13-Mar-05 21:26
Christian Wikander13-Mar-05 21:26 
GeneralRe: bypassing the button event Pin
ameto13-Mar-05 23:37
ameto13-Mar-05 23:37 
GeneralRe: bypassing the button event Pin
Christian Wikander13-Mar-05 23:46
Christian Wikander13-Mar-05 23:46 
GeneralRe: bypassing the button event Pin
maheshfour14-Mar-05 0:05
maheshfour14-Mar-05 0:05 
GeneralRe: bypassing the button event Pin
mav.northwind14-Mar-05 0:17
mav.northwind14-Mar-05 0:17 
GeneralRe: bypassing the button event Pin
maheshfour14-Mar-05 0:28
maheshfour14-Mar-05 0:28 
GeneralRe: bypassing the button event Pin
mav.northwind14-Mar-05 0:53
mav.northwind14-Mar-05 0:53 
GeneralRe: bypassing the button event Pin
Pushkar Pathak15-Mar-05 19:22
Pushkar Pathak15-Mar-05 19:22 
GeneralRe: bypassing the button event Pin
Pushkar Pathak15-Mar-05 19:14
Pushkar Pathak15-Mar-05 19:14 
QuestionHow can I embed my application to .NET environment? Pin
Anonymous13-Mar-05 20:09
Anonymous13-Mar-05 20:09 
Generalbypassing the button evet Pin
maheshfour13-Mar-05 20:09
maheshfour13-Mar-05 20:09 
GeneralDelete multi row in datagrid Pin
joy_priyank13-Mar-05 19:18
joy_priyank13-Mar-05 19:18 
GeneralRe: Delete multi row in datagrid Pin
J4amieC13-Mar-05 22:29
J4amieC13-Mar-05 22:29 
GeneralRe: Delete multi row in datagrid Pin
joy_priyank13-Mar-05 23:36
joy_priyank13-Mar-05 23:36 
Generalcurve fitting Pin
bwagz13-Mar-05 13:05
bwagz13-Mar-05 13:05 
GeneralRe: curve fitting Pin
Sean Cundiff13-Mar-05 14:02
Sean Cundiff13-Mar-05 14:02 
GeneralA RichTextBox-related question Pin
Ratty_oTO13-Mar-05 12:49
Ratty_oTO13-Mar-05 12:49 
GeneralDataGrid Pin
Bahadir Cambel13-Mar-05 10:52
Bahadir Cambel13-Mar-05 10:52 
GeneralRe: DataGrid Pin
Kodanda Pani13-Mar-05 18:03
Kodanda Pani13-Mar-05 18:03 
GeneralRe: DataGrid Pin
Bahadir Cambel13-Mar-05 19:54
Bahadir Cambel13-Mar-05 19:54 
thanks for the reply ,
but my problem is to update the datagrid.
I can not update the dataGrid when I change the dataView.
To be more specific
I have a curreny manager which is holding the information about the customers named cm
I have 2 dataTables dt_Orders and dt_Customers for orders and customers
I inserted the update operation into ShowCurrentRecord which is called when CurrenyManager_PositionChanged event..
<code>
		private void cm_PositionChanged(object sender, EventArgs e)
		{
			ShowCurrentRecord();
		}
	private void ShowCurrentRecord()
		{
string CustomerID=ds_Customers.Tables["dt_Customers"].Rows[cm.Position]["CustomerID"].ToString();
for(int i =0 ;i <RowCount ;i++)
{ //If the selected Customer has an Order(s) in dt_Orders, update the dataGrid
<p>if ( ds_Customers.Tables["dt_Orders"].Rows[i]["CustomerID"].ToString()==CustomerID ) 
{<p>myDataView.RowFilter="CustomerID="+CustomerID;</p>
</code>//In this part DataGrid should update itsSelf.Thats my problem..</p>

It turned out to be , I can not set anything into RowFilter..
even if I tried dv.RowFilter="CustomerID"+CustomerID;
dv.AllowEdit();
dv.BeginInit();
When I use Watch the find the value , although CustomerID has its value , watch always shows RowFilter as null string..
Does dataView can be edited in run-time ?
GeneralRe: DataGrid Pin
Bahadir Cambel13-Mar-05 20:58
Bahadir Cambel13-Mar-05 20:58 
GeneralRe: DataGrid Pin
Kodanda Pani13-Mar-05 23:12
Kodanda Pani13-Mar-05 23:12 
GeneralCalendars Pin
Beringer13-Mar-05 10:37
Beringer13-Mar-05 10:37 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.