Click here to Skip to main content
15,918,275 members
Home / Discussions / C#
   

C#

 
Questioncrystal reports in C# Pin
Alamzeb khan25-Jun-06 18:44
Alamzeb khan25-Jun-06 18:44 
Questionsendind file via c# Pin
vamsimohan2125-Jun-06 18:18
vamsimohan2125-Jun-06 18:18 
AnswerRe: sendind file via c# Pin
leppie25-Jun-06 20:13
leppie25-Jun-06 20:13 
QuestionHow to incorporate a DLL from visual C++ inside a sample C# .NET IM project. Pin
NoobNooberNoobest25-Jun-06 15:36
NoobNooberNoobest25-Jun-06 15:36 
QuestionRe: How to incorporate a DLL from visual C++ inside a sample C# .NET IM project. Pin
Jun Du25-Jun-06 16:18
Jun Du25-Jun-06 16:18 
AnswerRe: How to incorporate a DLL from visual C++ inside a sample C# .NET IM project. Pin
NoobNooberNoobest25-Jun-06 16:30
NoobNooberNoobest25-Jun-06 16:30 
GeneralRe: How to incorporate a DLL from visual C++ inside a sample C# .NET IM project. Pin
Nader Elshehabi25-Jun-06 23:50
Nader Elshehabi25-Jun-06 23:50 
QuestionHelp me plz!!!! Pin
longlh25-Jun-06 15:34
longlh25-Jun-06 15:34 
My problem is: i have a dropdownlist1, a button1, lable1, label2; when i click into dropdownlist1 and select a number that i want, the page will re-draw dynamic TextBoxes, these TextBoxes allow u type data into. when i click button1, data in these TextBoxes is saved.
my code:
public class WebForm1 : System.Web.UI.Page
{
protected System.Web.UI.WebControls.DropDownList DropDownList1;
protected System.Web.UI.WebControls.Label Label1;
protected System.Web.UI.WebControls.Label Label2;
protected System.Web.UI.WebControls.Button Button1;

Label[] lb = new Label[7];
TextBox[] te = new TextBox[7];
string[] s={"a", "b", "c", "d","e","f", "g", "h"};
protected System.Web.UI.WebControls.Panel Panel1;
int so=0;
private void Page_Load(object sender, System.EventArgs e)
{
Panel1.Width = 300;
}
#region Web Form Designer generated code
override protected void OnInit(EventArgs e)
{
//
// CODEGEN: This call is required by the ASP.NET Web Form Designer.
//
InitializeComponent();
base.OnInit(e);
}

///
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
///

private void InitializeComponent()
{
this.DropDownList1.SelectedIndexChanged += new System.EventHandler(this.DropDownList1_SelectedIndexChanged);
this.Button1.Click += new System.EventHandler(this.Button1_Click);
this.Load += new System.EventHandler(this.Page_Load);

}
#endregion
private void DropDownList1_SelectedIndexChanged(object sender, System.EventArgs e)
{
so=Convert.ToInt32(DropDownList1.SelectedValue);
for(int i=0;i
Questionmatrix Pin
haytham_mohammad25-Jun-06 14:42
haytham_mohammad25-Jun-06 14:42 
AnswerRe: matrix Pin
Jun Du25-Jun-06 15:55
Jun Du25-Jun-06 15:55 
GeneralRe: matrix Pin
haytham_mohammad25-Jun-06 16:04
haytham_mohammad25-Jun-06 16:04 
GeneralRe: matrix Pin
Jun Du25-Jun-06 16:09
Jun Du25-Jun-06 16:09 
Questionprinting url [modified] Pin
toink toink25-Jun-06 12:48
toink toink25-Jun-06 12:48 
AnswerRe: printing url Pin
Nader Elshehabi25-Jun-06 23:59
Nader Elshehabi25-Jun-06 23:59 
Questionhow to encrypt/decrypt data on the fly ? Pin
hdv21225-Jun-06 12:13
hdv21225-Jun-06 12:13 
AnswerRe: how to encrypt/decrypt data on the fly ? Pin
Ed.Poore25-Jun-06 12:15
Ed.Poore25-Jun-06 12:15 
QuestionHow to make my application more cool Pin
ZHENG.YANG.POINTER25-Jun-06 10:17
professionalZHENG.YANG.POINTER25-Jun-06 10:17 
AnswerRe: How to make my application more cool Pin
Nader Elshehabi25-Jun-06 10:47
Nader Elshehabi25-Jun-06 10:47 
GeneralRe: How to make my application more cool Pin
Jun Du25-Jun-06 12:58
Jun Du25-Jun-06 12:58 
GeneralRe: How to make my application more cool Pin
Nader Elshehabi25-Jun-06 16:19
Nader Elshehabi25-Jun-06 16:19 
AnswerRe: Pinvoke CreateRemoteThread Pin
led mike25-Jun-06 8:36
led mike25-Jun-06 8:36 
GeneralRe: Pinvoke CreateRemoteThread Pin
Colin Angus Mackay25-Jun-06 23:06
Colin Angus Mackay25-Jun-06 23:06 
GeneralRe: Pinvoke CreateRemoteThread Pin
led mike26-Jun-06 5:41
led mike26-Jun-06 5:41 
QuestionRegular Expression to convert from PHP to C# Pin
AngryC25-Jun-06 7:09
AngryC25-Jun-06 7:09 
AnswerRe: Regular Expression to convert from PHP to C# Pin
User 665825-Jun-06 7:26
User 665825-Jun-06 7:26 

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.