So I have a Windows Form named Settings.CS
It has nothing.. the code is only this much
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 SteamBot
{
public partial class Settings : Form
{
public Settings()
{
InitializeComponent();
}
}
}
Then I have another CLASS named Bot.CS. What I want to do is, after a specific function, I want the settings form to become visible. In VB it was just Settings.Visible = true
How do I do this in C#? Please help me.