Click here to Skip to main content
15,898,588 members
Home / Discussions / C#
   

C#

 
GeneralRe: Any freeware event calendar develop in .NET 1.1 ???? Pin
mimimimilaw18-Mar-10 22:36
mimimimilaw18-Mar-10 22:36 
GeneralRe: Any freeware event calendar develop in .NET 1.1 ???? Pin
Alex Manolescu20-Mar-10 5:41
Alex Manolescu20-Mar-10 5:41 
QuestionDisplay variable value in Crystal Report Text Box Pin
mjawadkhatri18-Mar-10 20:43
mjawadkhatri18-Mar-10 20:43 
AnswerRe: Display variable value in Crystal Report Text Box Pin
Anubhava Dimri18-Mar-10 21:51
Anubhava Dimri18-Mar-10 21:51 
QuestionMessage Removed Pin
18-Mar-10 20:40
zafax_18-Mar-10 20:40 
AnswerRe: search items inside datagridview Pin
clfalh18-Mar-10 22:44
clfalh18-Mar-10 22:44 
GeneralRe: search items inside datagridview Pin
zafax_19-Mar-10 1:03
zafax_19-Mar-10 1:03 
GeneralRe: search items inside datagridview Pin
clfalh19-Mar-10 15:47
clfalh19-Mar-10 15:47 
when user types a code number in the code Column...... description and price is automatically displayed
let me see.yes ,i do not understand the message .
Two kinds of situations
1: add a new textbox to input the code ,when the textbox change,the information display in the datagridview.of course,you said you want search the datagridview,so the datagridview is be filled at firt.datagridview's datasource usuall is datatable .
you can write the code like this
DataTable dt = ds.Table[0];
DataView dv = dt.DefaultView;
dv.RowFilter = "ID = '"+textBox1.Text+"'";   //
 dataGridView1.DataSource = dv;

2:I am a real jerk.I don't understand what you mean.If this is true.i am very sorry,but you could laugh whit me at my poor english.
GeneralRe: search items inside datagridview Pin
zafax_19-Mar-10 19:34
zafax_19-Mar-10 19:34 
QuestionProblem to add new type to external assembly via System.Reflection.Emit Pin
hdv21218-Mar-10 20:38
hdv21218-Mar-10 20:38 
QuestionHow to run a process forever Pin
Xelalem18-Mar-10 20:20
Xelalem18-Mar-10 20:20 
AnswerRe: How to run a process forever Pin
Calla18-Mar-10 20:50
Calla18-Mar-10 20:50 
GeneralRe: How to run a process forever Pin
Xelalem18-Mar-10 22:36
Xelalem18-Mar-10 22:36 
GeneralRe: How to run a process forever Pin
Mirko198018-Mar-10 22:50
Mirko198018-Mar-10 22:50 
GeneralRe: How to run a process forever Pin
Calla18-Mar-10 22:56
Calla18-Mar-10 22:56 
AnswerRe: How to run a process forever Pin
Anubhava Dimri18-Mar-10 21:54
Anubhava Dimri18-Mar-10 21:54 
GeneralRe: How to run a process forever Pin
Xelalem18-Mar-10 22:38
Xelalem18-Mar-10 22:38 
GeneralRe: How to run a process forever Pin
Richard MacCutchan18-Mar-10 22:45
mveRichard MacCutchan18-Mar-10 22:45 
GeneralRe: How to run a process forever Pin
Xelalem19-Mar-10 0:16
Xelalem19-Mar-10 0:16 
GeneralRe: How to run a process forever Pin
Keith Barrow19-Mar-10 0:54
professionalKeith Barrow19-Mar-10 0:54 
GeneralRe: How to run a process forever Pin
Anubhava Dimri18-Mar-10 23:15
Anubhava Dimri18-Mar-10 23:15 
AnswerRe: How to run a process forever Pin
Dave Kreskowiak19-Mar-10 2:05
mveDave Kreskowiak19-Mar-10 2:05 
GeneralRe: How to run a process forever Pin
Xelalem19-Mar-10 2:39
Xelalem19-Mar-10 2:39 
GeneralRe: How to run a process forever Pin
Dave Kreskowiak19-Mar-10 2:54
mveDave Kreskowiak19-Mar-10 2:54 
GeneralRe: How to run a process forever Pin
Xelalem19-Mar-10 3:51
Xelalem19-Mar-10 3:51 

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.