Thread: Visual Studio
View Single Post
  #10  
Old 08-09-2020, 08:44 AM
Guest001 is offline Guest001
Registered User

Join Date: Aug 2008
Posts: 4,971

Hey there me again - seeing you folks are on the subject of C# here I was hoping you'd have a go at this question for me?


The problem is getting GSPincGames to display not the url.

The code below is where I've left it, still functioning but not as I'd like it.


Code:
namespace Editor
{
	partial class AboutBox
	{

		string GSPincGames = "www.gspincgames.com";

		#region

		private void InitializeComponent()
		{
	
		// labelLink
			this.labelLink.Name = "labelLink";
			labelLink.TabIndex = 2;
			labelLink.Text = GSPincGames;
		}

		#endregion

		private System.Windows.Forms.LinkLabel labelLink;
	}
}
Reply With Quote