You can install the database on your own computer so that your computer can act as a server.
Other users only need to install this Windows window application and set the database connection string in the configuration file to your IP address.
For example, assume your IP address is 10.10.0.243, the database example is named kaifa, the database is named ftdata, the username is sa, and the password is 123456.
Add the following code under the InitializeComponent(); statement of the form's constructor
this.Location = new System.Drawing.Point(100, 100);
this.Cursor = System.Windows.Forms.Cursors.Hand;
// Defined on the form, the cursor is displayed as a hand
this.Text = "Transparent WinForm form!";
// Define the title name of the form
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
// Define the starting display position of the form to be the middle of the screen
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
// The border of the form is of Fixed3D type
this.ForeColor = System.Drawing.SystemColors.Desktop;
//Use the foreground color of the desktop as the foreground color of the form
this.Font = new System.Drawing.Font("宋体", 9);
// Define font type and size
this.BackColor = System.Drawing.Color.Blue;
// Define the background color to be blue
this.ClientSize = new System.Drawing.Size(440, 170);
//Set the size of the form
//The Opacity attribute sets the transparency level of the form, only valid for Windows 2000
this.Opacity = 0.61;
The above is the detailed content of Please tell me, I want to use vs2010 to write a windows window application. I hope it can achieve. For more information, please follow other related articles on the PHP Chinese website!