It is so strange!
Can you guess why label1.Text = "aaa"; not works in my program:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;
namespace WindowsFormsApplication1
{
static class Program
{
///
/// The main entry point for the application.
///
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
}
}
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
label1.Text = "aaa";
}
private void button1_Click(object sender, EventArgs e)
{
}
}
}
DavePosted Jan 6, 2014, 3:03 AM
DavePosted Jan 5, 2014, 10:34 PM
Satyapriya NayakPosted Jan 5, 2014, 10:23 PM
What error you are getting?