Browsing archives for 'Programming'

See Sharp Test

Programming 24 May 2009 | 0 Comments

if (filename == null || filename == “”) { SaveFileDialog saveTournament = new SaveFileDialog(); saveTournament.Filter = “Tournament file (*.trn)|*.trn”; if (saveTournament.ShowDialog() == DialogResult.OK) { filename = saveTournament.FileName; } else return false; } This is just a test. I’m going to start posting about a project I’m working on and I wanted to make sure that [...]