Opět zdravím. Chtěl jsem se pokusit udělat takovou menší "registrace" a mám problém s tím že program proběhne v pořádku, ale žádný soubor s údaji se nevytvoří.
Zde je kód registračního formu:
using System;
using System.Drawing;
using System.Windows.Forms;
using System.IO;
namespace login_register
{
/// <summary>
/// Description of regform.
/// </summary>
public partial class regform : Form
{
public regform()
{
InitializeComponent();
}
void RegsClick(object sender, EventArgs e)
{
string cesta = Directory.GetCurrentDirectory();
string uloz = cesta + "@user.pgg";
StreamWriter sw = new StreamWriter(uloz, true);
sw.WriteLine(user.Text + "\n" + pass.Text + "\n" + mail.Text);
sw.Close();
MessageBox.Show("You're registred now!");
this.Hide();
}
}
}
Za odpovědi předem děkuji.