~alexharrington/xibo/100-rc3-upgrade-fixes

« back to all changes in this revision

Viewing changes to client/dotNET/OptionForm.cs

  • Committer: Alex Harrington
  • Date: 2009-03-14 16:35:04 UTC
  • mfrom: (7.1.12 Xibo)
  • Revision ID: alex@longhill.org.uk-20090314163504-qs3pz8w4d5gufz7u
[server] Merged from lp:~dangarner/xibo/client-100rc3 - Logging improvements in the client, and bug fixes for URL handling

Show diffs side-by-side

added added

removed removed

Lines of Context:
99
99
            if (e.Error != null)
100
100
            {
101
101
                textBoxResults.Text = e.Error.Message;
 
102
 
 
103
                System.Diagnostics.Debug.WriteLine("Error returned from Call to XMDS Register Display.", "xmds1_RegisterDisplayCompleted");
 
104
                System.Diagnostics.Debug.WriteLine(e.Error.Message, "xmds1_RegisterDisplayCompleted");
 
105
                System.Diagnostics.Debug.WriteLine(e.Error.StackTrace, "xmds1_RegisterDisplayCompleted");
102
106
            }
103
107
            else
104
108
            {
132
136
                Properties.Settings.Default.collectInterval = numericUpDownCollect.Value;
133
137
                Properties.Settings.Default.powerpointEnabled = checkBoxPowerPoint.Checked;
134
138
                Properties.Settings.Default.statsEnabled = checkBoxStats.Checked;
135
 
                Properties.Settings.Default.auditEnabled = checkBoxAudit.Checked;
136
139
                Properties.Settings.Default.XiboClient_xmds_xmds = textBoxXmdsUri.Text.TrimEnd('/') + @"/xmds.php";
137
140
                buttonSaveSettings.Enabled = false;
138
141