Click here to Skip to main content
16,006,709 members
Home / Discussions / C#
   

C#

 
AnswerRe: How to make POPUP window in C#.NET Pin
Abhijit Jana27-Oct-07 1:17
professionalAbhijit Jana27-Oct-07 1:17 
AnswerRe: How to make POPUP window in C#.NET Pin
mav.northwind27-Oct-07 1:24
mav.northwind27-Oct-07 1:24 
AnswerRe: How to make POPUP window in C#.NET Pin
Oshtri Deka27-Oct-07 8:46
professionalOshtri Deka27-Oct-07 8:46 
QuestionPOPUP Windows in C#.NET Pin
D i x y27-Oct-07 0:09
D i x y27-Oct-07 0:09 
AnswerRe: POPUP Windows in C#.NET Pin
Abhijit Jana27-Oct-07 1:23
professionalAbhijit Jana27-Oct-07 1:23 
AnswerRe: POPUP Windows in C#.NET Pin
Paul Conrad27-Oct-07 12:18
professionalPaul Conrad27-Oct-07 12:18 
Questiongridview Pin
Sunil Wise26-Oct-07 23:18
professionalSunil Wise26-Oct-07 23:18 
AnswerRe: gridview Pin
Arindam Tewary26-Oct-07 23:48
professionalArindam Tewary26-Oct-07 23:48 
Following is the pseudocode that you can use for your purpose !!!

In the button click event ...

public void button1_Click(object sender,EventArgs e)
{
string _strSelectedID=cboValues.SelectedItem.Value;
_dgrYourDataGridName.DataSource = GetItemDetails(_strSelectedID)
_dgrYourDataGridName.databind() // this line is needed ONLY in case of your application is an Web Application.
}
public DataTable GetItemDetails(string ItemID)
{
// Get the the details of data grid depending upon the ItemID( it is the value of drop down selected item ) and get it as a DataTable ...
_dTItemDetails = DataBaseValues(...)

return _dTItemDetails

}

Happy Coding !!

Thanks,
Arindam D Tewary

GeneralRe: gridview Pin
Sunil Wise27-Oct-07 1:14
professionalSunil Wise27-Oct-07 1:14 
QuestionMdi Child Which Cant Be Dragged Pin
sindhutiwari26-Oct-07 22:25
sindhutiwari26-Oct-07 22:25 
AnswerRe: Mdi Child Which Cant Be Dragged Pin
kornyjohn29-Oct-07 4:42
kornyjohn29-Oct-07 4:42 
Questioncan we deploy console .net application inside IIS? Pin
dhami_naresh26-Oct-07 22:02
dhami_naresh26-Oct-07 22:02 
AnswerRe: can we deploy console .net application inside IIS? Pin
N a v a n e e t h26-Oct-07 22:34
N a v a n e e t h26-Oct-07 22:34 
GeneralRe: can we deploy console .net application inside IIS? Pin
dhami_naresh27-Oct-07 7:56
dhami_naresh27-Oct-07 7:56 
GeneralRe: can we deploy console .net application inside IIS? Pin
dhami_naresh27-Oct-07 7:59
dhami_naresh27-Oct-07 7:59 
QuestionConvert vb code to c# Pin
tahir_makhdoom26-Oct-07 21:53
tahir_makhdoom26-Oct-07 21:53 
AnswerRe: Convert vb code to c# Pin
N a v a n e e t h26-Oct-07 22:01
N a v a n e e t h26-Oct-07 22:01 
GeneralRe: Convert vb code to c# Pin
tahir_makhdoom27-Oct-07 0:48
tahir_makhdoom27-Oct-07 0:48 
GeneralRe: Convert vb code to c# Pin
mav.northwind27-Oct-07 1:20
mav.northwind27-Oct-07 1:20 
GeneralRe: Convert vb code to c# Pin
tahir_makhdoom27-Oct-07 1:29
tahir_makhdoom27-Oct-07 1:29 
GeneralRe: Convert vb code to c# Pin
karthick.n.mca27-Oct-07 2:23
karthick.n.mca27-Oct-07 2:23 
AnswerRe: Convert vb code to c# Pin
Paul Conrad27-Oct-07 12:19
professionalPaul Conrad27-Oct-07 12:19 
Question*** Problem in Accesing Webservice through Pakcet PC appli**** Pin
D.Madhav26-Oct-07 21:22
D.Madhav26-Oct-07 21:22 
QuestionEnding an Asynchronous call Pin
zafersavas26-Oct-07 21:04
zafersavas26-Oct-07 21:04 
AnswerRe: Ending an Asynchronous call Pin
TJoe27-Oct-07 13:44
TJoe27-Oct-07 13:44 

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.