В клиенте доступ предоставляется через сайт, как сделать чтоб доступ предоставлялся всем?
Помогите..
using System;
using System.ComponentModel;
using System.Diagnostics;
using System.Drawing;
using System.Reflection;
using System.Windows.Forms;
namespace NLClient
{
internal class AboutBox : Form
{
private IContainer components = (IContainer) null;
private Label lblVersion;
private Button btnGoHome;
private Button btnCancel;
private Label label1;
public AboutBo
)
{
this.InitializeComponent();
this.lblVersion.Text = "Версия клиента: " + this.AssemblyVersion;
}
public string AssemblyVersion => Assembly.GetExecutingAssembly().GetName().Version.Major.ToString() + "." + (object) Assembly.GetExecutingAssembly().GetName().Version.Minor;
private void btnCancel_Click(object sender, EventArgs e) => this.Close();
private void btnGoHome_Click(object sender, EventArgs e) => Process.Start("
protected override void Dispose(bool disposing)
{
if (disposing && this.components != null)
this.components.Dispose();
base.Dispose(disposing);
}
private void InitializeComponent()
{
this.lblVersion = new Label();
this.btnGoHome = new Button();
this.btnCancel = new Button();
this.label1 = new Label();
this.SuspendLayout();
this.lblVersion.AutoSize = true;
this.lblVersion.Location = new Point(9, 47);
this.lblVersion.Name = "lblVersion";
this.lblVersion.Size = new Size(91, 13);
this.lblVersion.TabIndex = 25;
this.lblVersion.Text = "Версия клиента:";
this.btnGoHome.FlatAppearance.BorderSize = 0;
this.btnGoHome.FlatAppearance.MouseDownBackColor = Color.White;
this.btnGoHome.FlatAppearance.MouseOverBackColor = Color.White;
this.btnGoHome.FlatStyle = FlatStyle.Flat;
this.btnGoHome.ForeColor = Color.Blue;
this.btnGoHome.Location = new Point(12, 75);
Помогите..
using System;
using System.ComponentModel;
using System.Diagnostics;
using System.Drawing;
using System.Reflection;
using System.Windows.Forms;
namespace NLClient
{
internal class AboutBox : Form
{
private IContainer components = (IContainer) null;
private Label lblVersion;
private Button btnGoHome;
private Button btnCancel;
private Label label1;
public AboutBo
{
this.InitializeComponent();
this.lblVersion.Text = "Версия клиента: " + this.AssemblyVersion;
}
public string AssemblyVersion => Assembly.GetExecutingAssembly().GetName().Version.Major.ToString() + "." + (object) Assembly.GetExecutingAssembly().GetName().Version.Minor;
private void btnCancel_Click(object sender, EventArgs e) => this.Close();
private void btnGoHome_Click(object sender, EventArgs e) => Process.Start("
Вам необходимо зарегистрироваться для просмотра ссылок
");protected override void Dispose(bool disposing)
{
if (disposing && this.components != null)
this.components.Dispose();
base.Dispose(disposing);
}
private void InitializeComponent()
{
this.lblVersion = new Label();
this.btnGoHome = new Button();
this.btnCancel = new Button();
this.label1 = new Label();
this.SuspendLayout();
this.lblVersion.AutoSize = true;
this.lblVersion.Location = new Point(9, 47);
this.lblVersion.Name = "lblVersion";
this.lblVersion.Size = new Size(91, 13);
this.lblVersion.TabIndex = 25;
this.lblVersion.Text = "Версия клиента:";
this.btnGoHome.FlatAppearance.BorderSize = 0;
this.btnGoHome.FlatAppearance.MouseDownBackColor = Color.White;
this.btnGoHome.FlatAppearance.MouseOverBackColor = Color.White;
this.btnGoHome.FlatStyle = FlatStyle.Flat;
this.btnGoHome.ForeColor = Color.Blue;
this.btnGoHome.Location = new Point(12, 75);