Hi Gents, my form loses focus.
It was working ok.
Thanks,
It was working ok.
Thanks,
C#:
namespace TestClient
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
}
}
C#:
public Form1()
{
InitializeComponent();
Cursor.Current = Cursors.WaitCursor;
Cursor.Current = Cursors.Default;
//GetValue();
InitTimer();
}
C#:
this.ClientSize = new System.Drawing.Size(993, 388);
this.Controls.Add(this.label5);
this.Controls.Add(this.txtBoxTaskComplete);
this.Controls.Add(this.label4);
this.Controls.Add(this.textBoxTaskReq);
this.Controls.Add(this.txtBoxResponceJson);
this.Controls.Add(this.label3);
this.Controls.Add(this.label2);
this.Controls.Add(this.txtBoxPost);
this.Controls.Add(this.label1);
this.Controls.Add(this.txtBoxResponse);
this.Name = "Form1";
this.Text = "Test Form";
this.ResumeLayout(false);
this.PerformLayout();