Changeset 1731 for Scheduling/trunk/cs
- Timestamp:
- Apr 28, 2016, 9:49:25 AM (9 years ago)
- Location:
- Scheduling/trunk/cs/bsdx0200GUISourceCode
- Files:
-
- 16 edited
Legend:
- Unmodified
- Added
- Removed
-
Scheduling/trunk/cs/bsdx0200GUISourceCode/AssemblyInfo.cs
r1728 r1731 28 28 // by using the '*' as shown below: 29 29 30 [assembly: AssemblyVersion("2.0. 0.*")]30 [assembly: AssemblyVersion("2.0.1.*")] 31 31 32 32 // … … 58 58 [assembly: AssemblyKeyFile("")] 59 59 [assembly: AssemblyKeyName("")] 60 [assembly: AssemblyFileVersion("2.0. 0.0")]60 [assembly: AssemblyFileVersion("2.0.1.0")] 61 61 [assembly: ComVisibleAttribute(false)] -
Scheduling/trunk/cs/bsdx0200GUISourceCode/CGDocumentManager.cs
r1728 r1731 390 390 //path = path.Substring(0, path.LastIndexOf('\\')); 391 391 path = path + '\\' + "Putty\\putty.exe"; 392 392 393 if (System.IO.File.Exists(path)) 393 394 { … … 920 921 setProgressDelegate(21); 921 922 _current.RemoteSession.EventServices.Subscribe("BSDX ADMIN SHUTDOWN"); 922 923 _current.RemoteSession.EventServices.EventPollingInterval = 5000; //in milliseconds 924 _current.RemoteSession.EventServices.IsEventPollingEnabled = true; 923 924 string result = _current.RemoteSession.TransmitRPC("VEFA GET BMX POLL INTERVAL",""); 925 bool eventPoolEnabled = false; 926 if (result.Split('^')[0] == "1") 927 { 928 eventPoolEnabled = true; 929 } 930 int eventPoolInterval = Convert.ToInt32(result.Split('^')[1]); 931 _current.RemoteSession.EventServices.EventPollingInterval = (eventPoolInterval * 1000); //in milliseconds 932 _current.RemoteSession.EventServices.IsEventPollingEnabled = eventPoolEnabled; 925 933 926 934 //PORT TODO: No Autofire in BMX 4.0 -
Scheduling/trunk/cs/bsdx0200GUISourceCode/CGView.cs
r1728 r1731 4042 4042 private void mnuRefresh_Click(object sender, EventArgs e) 4043 4043 { 4044 //this.m_DocManager.RemoteSession.EventServices.EventPollingInterval = 50000; 4045 //this.m_DocManager.RemoteSession.EventServices.RefreshEventPoll(); 4046 this.DocManager.RemoteSession.EventServices.IsEventPollingEnabled = true; 4047 this.DocManager.RemoteSession.EventServices.RefreshEventPoll(); 4048 this.DocManager.RemoteSession.EventServices.IsEventPollingEnabled = false; 4044 4049 ForceRefreshGrid(); 4045 4050 } -
Scheduling/trunk/cs/bsdx0200GUISourceCode/ClinicalScheduling.csproj
r1728 r1731 53 53 <UpdateRequired>false</UpdateRequired> 54 54 <MapFileExtensions>true</MapFileExtensions> 55 <ApplicationRevision> 1</ApplicationRevision>56 <ApplicationVersion>2.0. 0.%2a</ApplicationVersion>55 <ApplicationRevision>0</ApplicationRevision> 56 <ApplicationVersion>2.0.1.%2a</ApplicationVersion> 57 57 <UseApplicationTrust>false</UseApplicationTrust> 58 58 <PublishWizardCompleted>true</PublishWizardCompleted> -
Scheduling/trunk/cs/bsdx0200GUISourceCode/ClinicalScheduling.csproj.user
r1728 r1731 37 37 </RemoteDebugMachine> 38 38 <StartAction>Project</StartAction> 39 <StartArguments> 40 </StartArguments> 39 <StartArguments>/s=166.78.184.181 /p=9260 /su=client9260 /sp=not#1sostrong</StartArguments> 41 40 <StartPage> 42 41 </StartPage> -
Scheduling/trunk/cs/bsdx0200GUISourceCode/DManagement.cs
r1513 r1731 112 112 private System.Windows.Forms.Label lblWorkstations; 113 113 private System.Windows.Forms.DataGrid grdWorkStations; 114 private System.Windows.Forms.TextBox txtSendMessage; 114 private TabPage tpConfiguration; 115 private CheckBox chkEventPolling; 116 private Label lblEventPollInterval; 117 private NumericUpDown nudEventPolling; 118 private System.Windows.Forms.TextBox txtSendMessage; 115 119 116 120 #endregion Fields … … 385 389 cboBSDXClinic.ValueMember = "RESOURCEID"; 386 390 387 } 391 string result = docManager.RemoteSession.TransmitRPC("VEFA GET BMX POLL INTERVAL", ""); 392 if (result.Split('^')[0] == "1") 393 { 394 chkEventPolling.Checked = true; 395 nudEventPolling.Enabled = true; 396 nudEventPolling.Value = Convert.ToInt32(result.Split('^')[1]); 397 } 398 } 388 399 389 400 private void DManagement_Load(object sender, System.EventArgs e) 390 401 { 391 402 this.cmdChangeResource.Enabled = false; 392 403 this.cmdRemoveUser.Enabled = false; 393 404 //Select the grid's zeroeth row … … 514 525 this.cmdWorkStationsShutdown = new System.Windows.Forms.Button(); 515 526 this.cmdWorkStationsRefresh = new System.Windows.Forms.Button(); 527 this.tpConfiguration = new System.Windows.Forms.TabPage(); 528 this.nudEventPolling = new System.Windows.Forms.NumericUpDown(); 529 this.lblEventPollInterval = new System.Windows.Forms.Label(); 530 this.chkEventPolling = new System.Windows.Forms.CheckBox(); 516 531 this.pnlPageBottom.SuspendLayout(); 517 532 this.tabMain.SuspendLayout(); … … 546 561 this.groupBox1.SuspendLayout(); 547 562 this.panel1.SuspendLayout(); 563 this.tpConfiguration.SuspendLayout(); 564 ((System.ComponentModel.ISupportInitialize)(this.nudEventPolling)).BeginInit(); 548 565 this.SuspendLayout(); 549 566 // … … 574 591 this.tabMain.Controls.Add(this.tpTransferAppts); 575 592 this.tabMain.Controls.Add(this.tpWorkStations); 593 this.tabMain.Controls.Add(this.tpConfiguration); 576 594 this.tabMain.Dock = System.Windows.Forms.DockStyle.Fill; 577 595 this.tabMain.Location = new System.Drawing.Point(0, 0); … … 831 849 this.label1.TabIndex = 1; 832 850 this.label1.Text = " Use the Access Types panel to define the kinds of access available for schedulin" + 833 834 851 "g at this facility. Common types of access include Walkin, Scheduled, Same Day," + 852 " and Dental Expanded Functions."; 835 853 // 836 854 // pnlAddEditAT … … 1182 1200 this.cmdWorkStationsRefresh.Text = "&Refresh"; 1183 1201 this.cmdWorkStationsRefresh.Click += new System.EventHandler(this.cmdWorkStationsRefresh_Click); 1202 // 1203 // tpConfiguration 1204 // 1205 this.tpConfiguration.BackColor = System.Drawing.SystemColors.Control; 1206 this.tpConfiguration.Controls.Add(this.nudEventPolling); 1207 this.tpConfiguration.Controls.Add(this.lblEventPollInterval); 1208 this.tpConfiguration.Controls.Add(this.chkEventPolling); 1209 this.tpConfiguration.Location = new System.Drawing.Point(4, 22); 1210 this.tpConfiguration.Name = "tpConfiguration"; 1211 this.tpConfiguration.Padding = new System.Windows.Forms.Padding(3); 1212 this.tpConfiguration.Size = new System.Drawing.Size(696, 428); 1213 this.tpConfiguration.TabIndex = 7; 1214 this.tpConfiguration.Text = "Configuration"; 1215 // 1216 // nudEventPolling 1217 // 1218 this.nudEventPolling.Enabled = false; 1219 this.nudEventPolling.Location = new System.Drawing.Point(374, 24); 1220 this.nudEventPolling.Maximum = new decimal(new int[] { 1221 9999999, 1222 0, 1223 0, 1224 0}); 1225 this.nudEventPolling.Minimum = new decimal(new int[] { 1226 5, 1227 0, 1228 0, 1229 0}); 1230 this.nudEventPolling.Name = "nudEventPolling"; 1231 this.nudEventPolling.Size = new System.Drawing.Size(74, 20); 1232 this.nudEventPolling.TabIndex = 11; 1233 this.nudEventPolling.Value = new decimal(new int[] { 1234 5, 1235 0, 1236 0, 1237 0}); 1238 this.nudEventPolling.ValueChanged += new System.EventHandler(this.nudEventPolling_ValueChanged); 1239 // 1240 // lblEventPollInterval 1241 // 1242 this.lblEventPollInterval.AutoSize = true; 1243 this.lblEventPollInterval.Location = new System.Drawing.Point(185, 26); 1244 this.lblEventPollInterval.Name = "lblEventPollInterval"; 1245 this.lblEventPollInterval.Size = new System.Drawing.Size(167, 13); 1246 this.lblEventPollInterval.TabIndex = 9; 1247 this.lblEventPollInterval.Text = "Event Polling Interval (in seconds)"; 1248 // 1249 // chkEventPolling 1250 // 1251 this.chkEventPolling.AutoSize = true; 1252 this.chkEventPolling.Location = new System.Drawing.Point(33, 25); 1253 this.chkEventPolling.Name = "chkEventPolling"; 1254 this.chkEventPolling.Size = new System.Drawing.Size(130, 17); 1255 this.chkEventPolling.TabIndex = 7; 1256 this.chkEventPolling.Text = "Event Polling Enabled"; 1257 this.chkEventPolling.UseVisualStyleBackColor = true; 1258 this.chkEventPolling.CheckedChanged += new System.EventHandler(this.chkEventPolling_CheckedChanged); 1184 1259 // 1185 1260 // DManagement … … 1228 1303 this.panel1.ResumeLayout(false); 1229 1304 this.panel1.PerformLayout(); 1305 this.tpConfiguration.ResumeLayout(false); 1306 this.tpConfiguration.PerformLayout(); 1307 ((System.ComponentModel.ISupportInitialize)(this.nudEventPolling)).EndInit(); 1230 1308 this.ResumeLayout(false); 1231 1309 … … 2402 2480 #endregion Workstations 2403 2481 2482 private void chkEventPolling_CheckedChanged(object sender, EventArgs e) 2483 { 2484 if (chkEventPolling.Checked) 2485 { 2486 nudEventPolling.Enabled = true; 2487 int interval = Convert.ToInt32(nudEventPolling.Value); 2488 string result = this.m_DocManager.RemoteSession.TransmitRPC("VEFA SET BMX POLL INTERVAL", interval.ToString()); 2489 this.m_DocManager.RemoteSession.EventServices.EventPollingInterval = (interval * 1000); 2490 this.m_DocManager.RemoteSession.EventServices.IsEventPollingEnabled = true; 2491 } 2492 else 2493 { 2494 nudEventPolling.Enabled = false; 2495 string result = this.m_DocManager.RemoteSession.TransmitRPC("VEFA SET BMX POLL INTERVAL", "0"); 2496 this.m_DocManager.RemoteSession.EventServices.EventPollingInterval = 5000; 2497 this.m_DocManager.RemoteSession.EventServices.IsEventPollingEnabled = false; 2498 } 2499 } 2500 2501 private void nudEventPolling_ValueChanged(object sender, EventArgs e) 2502 { 2503 string result = this.m_DocManager.RemoteSession.TransmitRPC("VEFA SET BMX POLL INTERVAL", nudEventPolling.Value.ToString()); 2504 this.m_DocManager.RemoteSession.EventServices.IsEventPollingEnabled = false; 2505 this.m_DocManager.RemoteSession.EventServices.EventPollingInterval = (Convert.ToInt32(nudEventPolling.Value) * 1000); 2506 this.m_DocManager.RemoteSession.EventServices.IsEventPollingEnabled = true; 2507 } 2404 2508 } 2405 2509 } -
Scheduling/trunk/cs/bsdx0200GUISourceCode/bin/Release/ClinicalScheduling.application
r1728 r1731 1 1 <?xml version="1.0" encoding="utf-8"?> 2 2 <asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xrml="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2"> 3 <assemblyIdentity name="ClinicalScheduling.application" version="2.0. 0.1" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="msil" xmlns="urn:schemas-microsoft-com:asm.v1" />3 <assemblyIdentity name="ClinicalScheduling.application" version="2.0.1.0" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="msil" xmlns="urn:schemas-microsoft-com:asm.v1" /> 4 4 <description asmv2:publisher="ClinicalScheduling" asmv2:product="ClinicalScheduling" xmlns="urn:schemas-microsoft-com:asm.v1" /> 5 5 <deployment install="true" mapFileExtensions="true" /> … … 9 9 <dependency> 10 10 <dependentAssembly dependencyType="install" codebase="ClinicalScheduling.exe.manifest" size="8350"> 11 <assemblyIdentity name="ClinicalScheduling.exe" version="2.0. 0.1" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="msil" type="win32" />11 <assemblyIdentity name="ClinicalScheduling.exe" version="2.0.1.0" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="msil" type="win32" /> 12 12 <hash> 13 13 <dsig:Transforms> … … 15 15 </dsig:Transforms> 16 16 <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" /> 17 <dsig:DigestValue> j5w40iyHj1z9mmfDIEACj+b+ltk=</dsig:DigestValue>17 <dsig:DigestValue>E9N0YhCSPMvozxYigYswtTijFvY=</dsig:DigestValue> 18 18 </hash> 19 19 </dependentAssembly> -
Scheduling/trunk/cs/bsdx0200GUISourceCode/bin/Release/ClinicalScheduling.exe.config
r1728 r1731 12 12 <add key="userPassword" value="lyhlobkkvvqieebd" /> 13 13 <add key="enableSSL" value="true" /> 14 <add key="enableSMS" value="true" /> 15 <add key="smsHttpService" value="http://api.clickatell.com/http/sendmsg?user=faisalsami&password=cOaCIHXdJNZULQ&api_id=3578792&to={{TO}}&text={{MSG}}" /> 16 <add key="ClientSettingsProvider.ServiceUri" value="" /> 14 17 </appSettings> 18 <system.web> 19 <membership defaultProvider="ClientAuthenticationMembershipProvider"> 20 <providers> 21 <add name="ClientAuthenticationMembershipProvider" type="System.Web.ClientServices.Providers.ClientFormsAuthenticationMembershipProvider, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" serviceUri="" /> 22 </providers> 23 </membership> 24 <roleManager defaultProvider="ClientRoleProvider" enabled="true"> 25 <providers> 26 <add name="ClientRoleProvider" type="System.Web.ClientServices.Providers.ClientRoleProvider, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" serviceUri="" cacheTimeout="86400" /> 27 </providers> 28 </roleManager> 29 </system.web> 15 30 </configuration> -
Scheduling/trunk/cs/bsdx0200GUISourceCode/bin/Release/ClinicalScheduling.exe.manifest
r1728 r1731 1 1 <?xml version="1.0" encoding="utf-8"?> 2 2 <asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2"> 3 <asmv1:assemblyIdentity name="ClinicalScheduling.exe" version="2.0. 0.1" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="msil" type="win32" />3 <asmv1:assemblyIdentity name="ClinicalScheduling.exe" version="2.0.1.0" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="msil" type="win32" /> 4 4 <description asmv2:iconFile="hwIco281.ICO" xmlns="urn:schemas-microsoft-com:asm.v1" /> 5 5 <application /> 6 6 <entryPoint> 7 <assemblyIdentity name="ClinicalScheduling" version="2.0. 0.18765" language="neutral" processorArchitecture="msil" />7 <assemblyIdentity name="ClinicalScheduling" version="2.0.1.36047" language="neutral" processorArchitecture="msil" /> 8 8 <commandLine file="ClinicalScheduling.exe" parameters="" /> 9 9 </entryPoint> … … 44 44 </dependency> 45 45 <dependency> 46 <dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="BMXNET40.dll" size=" 102400">46 <dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="BMXNET40.dll" size="98304"> 47 47 <assemblyIdentity name="BMXNET40" version="4.0.0.1" language="neutral" processorArchitecture="msil" /> 48 48 <hash> … … 51 51 </dsig:Transforms> 52 52 <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" /> 53 <dsig:DigestValue> 87hyS0Cc8g0C25p8lM/YJxDWmS0=</dsig:DigestValue>53 <dsig:DigestValue>BuPNd0YwOUCOVZHLX1mbUngBCRA=</dsig:DigestValue> 54 54 </hash> 55 55 </dependentAssembly> 56 56 </dependency> 57 57 <dependency> 58 <dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="BMXWIN40.dll" size="8 9600">58 <dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="BMXWIN40.dll" size="86528"> 59 59 <assemblyIdentity name="BMXWIN40" version="4.0.0.1" language="neutral" processorArchitecture="msil" /> 60 60 <hash> … … 63 63 </dsig:Transforms> 64 64 <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" /> 65 <dsig:DigestValue> Bat1XLf4HJ6KVnk8jAG0GWO3Btw=</dsig:DigestValue>65 <dsig:DigestValue>GUd/pXlwaLDjoY/43aEkcBkqBKY=</dsig:DigestValue> 66 66 </hash> 67 67 </dependentAssembly> … … 69 69 <dependency> 70 70 <dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="ClinicalScheduling.exe" size="724992"> 71 <assemblyIdentity name="ClinicalScheduling" version="2.0. 0.18765" language="neutral" processorArchitecture="msil" />71 <assemblyIdentity name="ClinicalScheduling" version="2.0.1.36047" language="neutral" processorArchitecture="msil" /> 72 72 <hash> 73 73 <dsig:Transforms> … … 75 75 </dsig:Transforms> 76 76 <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" /> 77 <dsig:DigestValue> kLWcOlE0wrV4llowt87RoKjIMgg=</dsig:DigestValue>77 <dsig:DigestValue>9kNK3139SoUY6RVxrpqC/e+Jrjg=</dsig:DigestValue> 78 78 </hash> 79 79 </dependentAssembly> … … 81 81 <dependency> 82 82 <dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="ar\ClinicalScheduling.resources.dll" size="5120"> 83 <assemblyIdentity name="ClinicalScheduling.resources" version="2.0. 0.18765" language="ar" processorArchitecture="msil" />83 <assemblyIdentity name="ClinicalScheduling.resources" version="2.0.1.36047" language="ar" processorArchitecture="msil" /> 84 84 <hash> 85 85 <dsig:Transforms> … … 87 87 </dsig:Transforms> 88 88 <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" /> 89 <dsig:DigestValue> uGPZoM38EhWW3xqvMljNbIyrwX0=</dsig:DigestValue>89 <dsig:DigestValue>MfE38dsPcWZ3BLKvbiIPDrfZaDo=</dsig:DigestValue> 90 90 </hash> 91 91 </dependentAssembly> … … 103 103 </dependentAssembly> 104 104 </dependency> 105 <file name="ClinicalScheduling.exe.config" size=" 613">105 <file name="ClinicalScheduling.exe.config" size="1672"> 106 106 <hash> 107 107 <dsig:Transforms> … … 109 109 </dsig:Transforms> 110 110 <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" /> 111 <dsig:DigestValue> lEUsBWWQtJix6v4p2Q8lns1f5Vk=</dsig:DigestValue>111 <dsig:DigestValue>BCce4nUOp5hl3qvhPufpWRGw9q4=</dsig:DigestValue> 112 112 </hash> 113 113 </file>
Note:
See TracChangeset
for help on using the changeset viewer.