-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathForm.cs
189 lines (167 loc) · 5.61 KB
/
Form.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
//
// Copyright 2010 Thaddeus L Ryker
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
// Dynamics Nav is a registered trademark of the Microsoft Corporation
//
using System;
using System.Runtime.InteropServices;
using System.Text.RegularExpressions;
using Org.Edgerunner.Dynamics.Nav.CSide.Exceptions;
using Org.Edgerunner.Dynamics.Nav.CSide.Interfaces;
namespace Org.Edgerunner.Dynamics.Nav.CSide
{
/// <summary>
/// Represents a form in a Dynamics Nav client instance.
/// </summary>
public class Form : IDisposable
{
#region Non-Public Fields (2)
private Client _Client;
private INSForm _Form;
#endregion Non-Public Fields
#region Properties (2)
/// <summary>
/// Gets the ID.
/// </summary>
/// <value>The ID.</value>
public int ID
{
get
{
int id;
string idText;
int result = _Form.GetID(out idText);
Regex regex = new Regex(@"\d+",RegexOptions.CultureInvariant);
Match match = regex.Match(idText);
if (!match.Success)
throw new Exception(String.Format("Unexpected form id format returned: {0}", idText));
id = Int32.Parse(match.Value);
return id;
}
}
/// <summary>
/// Gets the language ID.
/// </summary>
/// <value>The language ID.</value>
public int LanguageID
{
get
{
int id;
int result = _Form.GetLanguageID(out id);
if (result != 0)
throw CSideException.GetException(result);
return id;
}
}
#endregion Properties
#region Constructors/Deconstructors (2)
/// <summary>
/// Initializes a new instance of the Form class.
/// </summary>
/// <param name="client"></param>
/// <param name="form"></param>
internal Form(Client client, INSForm form)
{
_Client = client;
_Form = form;
}
/// <summary>
/// Releases unmanaged resources and performs other cleanup operations before the
/// <see cref="Org.Edgerunner.Dynamics.Nav.CSide.Form"/> is reclaimed by garbage collection.
/// </summary>
~Form()
{
Dispose(false);
}
#endregion Constructors/Deconstructors
#region Methods (3)
// Public Methods (3)
/// <summary>
/// Gets the hyperlink that can be used to open this form directly.
/// </summary>
/// <returns>A <see cref="System.String"/> containing a hyperlink</returns>
public string GetHyperlink()
{
string hyperlink;
int result = _Form.GetHyperlink(out hyperlink);
if (result != 0)
throw CSideException.GetException(result);
return hyperlink;
}
/// <summary>
/// Gets the table that the form is based on.
/// </summary>
/// <returns>A <see cref="Org.Edgerunner.Dynamics.Nav.CSide.Table"/></returns>
public Table GetTable()
{
// Fetch INSTable
INSTable backingTable;
Table table;
int result = _Form.GetTable(out backingTable);
if (result != 0)
throw CSideException.GetException(result);
// Now attempt to fetch the name of the table
// first get the ID
int tableID;
result = backingTable.GetID(out tableID);
if (result != 0)
throw CSideException.GetException(result);
// now enumerate by the ID to get the name
CallbackEnumerator cbEnum = new CallbackEnumerator(_Client);
_Client.EnumTables(cbEnum, tableID);
if (cbEnum.Tables.Count != 0)
{
table = cbEnum.Tables[tableID];
table.SetBackingTable(backingTable);
}
else
table = new Table(ID, "[Name Unavailable]", _Client);
return table;
}
/// <summary>
/// Saves the current form record and updates the form to display the latest data.
/// </summary>
public void Update()
{
_Form.Update();
}
#endregion Methods
#region IDisposable Members
/// <summary>
/// Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
/// </summary>
public void Dispose()
{
Dispose(true);
GC.SuppressFinalize(this);
}
/// <summary>
/// Releases unmanaged and - optionally - managed resources
/// </summary>
/// <param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
protected virtual void Dispose(bool disposing)
{
if (disposing)
{
// no managed resources to free
}
// free unmanaged resources
if (_Form != null)
Marshal.ReleaseComObject(_Form);
}
#endregion
}
}