Changeset 794


Ignore:
Timestamp:
Jun 10, 2010, 5:20:08 PM (14 years ago)
Author:
Sam Habiel
Message:

CGView: Added various shortcuts keys for menus; removed extra overbook prompt after booking if doing an overbook. You already get one before booking.
CGDocumentManager: Mickey mouse connection check to prevent prompting for access and verify if there's no connection to VISTA.
CGDocumentManager: Test SQL statement to retrieve Hospital Locations and default providers associated with them.
Remove garbage file {85FE etc}.rpt

Location:
Scheduling/trunk/cs/bsdx0200GUISourceCode
Files:
1 deleted
5 edited

Legend:

Unmodified
Added
Removed
  • Scheduling/trunk/cs/bsdx0200GUISourceCode/CGDocumentManager.cs

    r788 r794  
    240240                m_ds.Refresh();
    241241                                bool bRetry = true;
     242
     243                //Try to connect using supplied values for Server and Port
     244                //Why am I doing this? The library BMX net uses prompts for access and verify code
     245                //whether you can connect or not. Not good. So I test first whether
     246                //we can connect at all by doing a simple connection and disconnect.
     247                //TODO: Make this more robust by sending a TCPConnect message and seeing if you get a response.
     248
     249                if (m_Server != "" && m_Port != 0)
     250                {
     251                    System.Net.Sockets.TcpClient tcpClient = new System.Net.Sockets.TcpClient();
     252                    try
     253                    {
     254                        tcpClient.Connect(m_Server, m_Port); // open it
     255                        tcpClient.Close();                  // then close it
     256                    }
     257                    catch (System.Net.Sockets.SocketException ex)
     258                    {
     259                        throw ex;
     260                    }
     261                }
    242262                                do
    243263                                {
    244                                         try
    245                                         {
    246                                                 if (bReLogin == true)
    247                                                 {
    248                                                         //Prompt for Access and Verify codes
    249                                                         _current.m_ConnectInfo.LoadConnectInfo("", "");
    250                                                 }
    251                                                 else
    252                                                 {
     264                    try
     265                    {
     266                        if (bReLogin == true)
     267                        {
     268                            //Prompt for Access and Verify codes
     269                            _current.m_ConnectInfo.LoadConnectInfo("", "");
     270                        }
     271                        else
     272                        {
    253273                            if (m_Server != String.Empty && m_Port != 0 && m_AccessCode != String.Empty
    254274                                && m_VerifyCode != String.Empty)
     275                            {
    255276                                m_ConnectInfo.LoadConnectInfo(m_Server, m_Port, m_AccessCode, m_VerifyCode);
     277                            }
    256278                            else if (m_Server != String.Empty && m_Port != 0)
    257279                                m_ConnectInfo.LoadConnectInfo(m_Server, m_Port, "", "");
     
    259281                                m_ConnectInfo.LoadConnectInfo();
    260282                        }
    261                                                 bRetry = false;
    262                                         }
    263                                         catch (Exception ex)
    264                                         {
    265                                                 m_ds.Close();
    266                                                 if (MessageBox.Show("Unable to connect to VistA.  " + ex.Message , "Clinical Scheduling", MessageBoxButtons.RetryCancel) == DialogResult.Retry)
    267                                                 {
    268                                                         bRetry = true;
    269                                                         _current.m_ConnectInfo.ChangeServerInfo();
    270                                                 }
    271                                                 else
    272                                                 {
    273                                                         bRetry = false;
    274                                                         throw ex;
    275                                                 }
    276                                         }
     283                        bRetry = false;
     284                    }
     285                    catch (System.Net.Sockets.SocketException)
     286                    {
     287                        MessageBox.Show("Cannot connect to VistA. ");
     288                    }
     289                    catch (Exception ex)
     290                    {
     291                        m_ds.Close();
     292                        if (MessageBox.Show("Unable to connect to VistA.  " + ex.Message, "Clinical Scheduling", MessageBoxButtons.RetryCancel) == DialogResult.Retry)
     293                        {
     294                            bRetry = true;
     295                            _current.m_ConnectInfo.ChangeServerInfo();
     296                        }
     297                        else
     298                        {
     299                            bRetry = false;
     300                            throw ex;
     301                        }
     302                    }
    277303                                }while (bRetry == true);
    278304
     
    415441                }
    416442
     443        //TODO:REMOVE THIS
    417444                public void LoadClinicSetupTable()
    418445                {
     
    613640
    614641                        //Build active provider table
    615                         sCommandText = "SELECT BMXIEN, NAME FROM NEW_PERSON WHERE INACTIVE_DATE = '' AND INTERNAL[PROVIDER_CLASS] > 0";
     642                        sCommandText = "SELECT BMXIEN, NAME FROM NEW_PERSON WHERE INACTIVE_DATE = ''";
    616643                        ConnectInfo.RPMSDataTable(sCommandText, "Provider", m_dsGlobal);
    617644                        Debug.Write("LoadGlobalRecordsets -- Provider loaded\n");
     
    626653                        sCommandText = "SELECT NAME, DATE FROM HOLIDAY WHERE DATE > '" + DateTime.Today.ToShortDateString() + "'";
    627654                        ConnectInfo.RPMSDataTable(sCommandText, "HOLIDAY", m_dsGlobal);
     655            Debug.Write("LoadingGlobalRecordsets -- Holidays loaded\n");
     656
     657            sCommandText = @"SELECT HOSPITAL_LOCATION.BMXIEN 'BMXIEN', HOSPITAL_LOCATION.PROVIDER.PROVIDER 'PROVIDER', HOSPITAL_LOCATION.PROVIDER.DEFAULT_PROVIDER 'DEFAULT' FROM HOSPITAL_LOCATION";
     658            ConnectInfo.RPMSDataTable(sCommandText, "ClinicProviders", m_dsGlobal);
     659            Debug.Write("LoadingGlobalRecordsets -- ClinicProviders loaded\n");
    628660
    629661                        //Save the xml schema
  • Scheduling/trunk/cs/bsdx0200GUISourceCode/CGView.cs

    r789 r794  
    266266            this.lblResource = new System.Windows.Forms.Label();
    267267            this.panelCenter = new System.Windows.Forms.Panel();
     268            this.calendarGrid1 = new IndianHealthService.ClinicalScheduling.CalendarGrid();
    268269            this.ctxCalendarGrid = new System.Windows.Forms.ContextMenu();
    269270            this.ctxCalGridAdd = new System.Windows.Forms.MenuItem();
     
    280281            this.splitter1 = new System.Windows.Forms.Splitter();
    281282            this.splitter2 = new System.Windows.Forms.Splitter();
    282             this.calendarGrid1 = new IndianHealthService.ClinicalScheduling.CalendarGrid();
    283283            this.panelRight.SuspendLayout();
    284284            this.panelClip.SuspendLayout();
     
    331331            //
    332332            this.mnuOpenMultipleSchedules.Index = 1;
     333            this.mnuOpenMultipleSchedules.Shortcut = System.Windows.Forms.Shortcut.CtrlM;
    333334            this.mnuOpenMultipleSchedules.Text = "Open M&ultiple Schedules";
    334335            this.mnuOpenMultipleSchedules.Click += new System.EventHandler(this.mnuOpenMultipleSchedules_Click);
     
    533534            //
    534535            this.mnu1Day.Index = 1;
     536            this.mnu1Day.Shortcut = System.Windows.Forms.Shortcut.Ctrl1;
    535537            this.mnu1Day.Text = "&1-Day View";
    536538            this.mnu1Day.Click += new System.EventHandler(this.mnu1Day_Click);
     
    539541            //
    540542            this.mnu5Day.Index = 2;
     543            this.mnu5Day.Shortcut = System.Windows.Forms.Shortcut.Ctrl5;
    541544            this.mnu5Day.Text = "&5-Day View";
    542545            this.mnu5Day.Click += new System.EventHandler(this.mnu5Day_Click);
     
    545548            //
    546549            this.mnu7Day.Index = 3;
     550            this.mnu7Day.Shortcut = System.Windows.Forms.Shortcut.Ctrl7;
    547551            this.mnu7Day.Text = "&7-Day View";
    548552            this.mnu7Day.Click += new System.EventHandler(this.mnu7Day_Click);
     
    566570            //
    567571            this.mnu10Minute.Index = 0;
     572            this.mnu10Minute.Shortcut = System.Windows.Forms.Shortcut.Ctrl0;
    568573            this.mnu10Minute.Text = "&10-Minute";
    569574            this.mnu10Minute.Click += new System.EventHandler(this.mnu10Minute_Click);
     
    572577            //
    573578            this.mnu15Minute.Index = 1;
     579            this.mnu15Minute.Shortcut = System.Windows.Forms.Shortcut.Ctrl4;
    574580            this.mnu15Minute.Text = "1&5-Minute";
    575581            this.mnu15Minute.Click += new System.EventHandler(this.mnu15Minute_Click);
     
    578584            //
    579585            this.mnu20Minute.Index = 2;
     586            this.mnu20Minute.Shortcut = System.Windows.Forms.Shortcut.Ctrl3;
    580587            this.mnu20Minute.Text = "&20-Minute";
    581588            this.mnu20Minute.Click += new System.EventHandler(this.mnu20Minute_Click);
     
    584591            //
    585592            this.mnu30Minute.Index = 3;
     593            this.mnu30Minute.Shortcut = System.Windows.Forms.Shortcut.Ctrl2;
    586594            this.mnu30Minute.Text = "&30-Minute";
    587595            this.mnu30Minute.Click += new System.EventHandler(this.mnu30Minute_Click);
     
    635643            this.tvSchedules.Location = new System.Drawing.Point(0, 0);
    636644            this.tvSchedules.Name = "tvSchedules";
    637             this.tvSchedules.Size = new System.Drawing.Size(128, 410);
     645            this.tvSchedules.Size = new System.Drawing.Size(128, 422);
    638646            this.tvSchedules.Sorted = true;
    639647            this.tvSchedules.TabIndex = 1;
     
    681689            this.panelRight.Controls.Add(this.panelClip);
    682690            this.panelRight.Dock = System.Windows.Forms.DockStyle.Right;
    683             this.panelRight.Location = new System.Drawing.Point(676, 0);
     691            this.panelRight.Location = new System.Drawing.Point(807, 0);
    684692            this.panelRight.Name = "panelRight";
    685             this.panelRight.Size = new System.Drawing.Size(128, 410);
     693            this.panelRight.Size = new System.Drawing.Size(128, 422);
    686694            this.panelRight.TabIndex = 3;
    687695            this.panelRight.Visible = false;
     
    749757            this.panelTop.Location = new System.Drawing.Point(128, 0);
    750758            this.panelTop.Name = "panelTop";
    751             this.panelTop.Size = new System.Drawing.Size(548, 24);
     759            this.panelTop.Size = new System.Drawing.Size(679, 24);
    752760            this.panelTop.TabIndex = 6;
    753761            //
     
    757765            this.dateTimePicker1.DropDownAlign = System.Windows.Forms.LeftRightAlignment.Right;
    758766            this.dateTimePicker1.Format = System.Windows.Forms.DateTimePickerFormat.Short;
    759             this.dateTimePicker1.Location = new System.Drawing.Point(420, 0);
     767            this.dateTimePicker1.Location = new System.Drawing.Point(551, 0);
    760768            this.dateTimePicker1.Name = "dateTimePicker1";
    761769            this.dateTimePicker1.Size = new System.Drawing.Size(128, 20);
     
    779787            this.panelCenter.Location = new System.Drawing.Point(136, 24);
    780788            this.panelCenter.Name = "panelCenter";
    781             this.panelCenter.Size = new System.Drawing.Size(537, 362);
     789            this.panelCenter.Size = new System.Drawing.Size(668, 374);
    782790            this.panelCenter.TabIndex = 7;
    783             //
    784             // ctxCalendarGrid
    785             //
    786             this.ctxCalendarGrid.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
    787             this.ctxCalGridAdd,
    788             this.ctxCalGridEdit,
    789             this.ctxCalGridDelete,
    790             this.ctxCalGridCheckIn,
    791             this.menuItem2,
    792             this.ctxCalGridNoShow,
    793             this.ctxCalGridNoShowUndo,
    794             this.menuItem9,
    795             this.ctxCalGridWalkin});
    796             this.ctxCalendarGrid.Popup += new System.EventHandler(this.ctxCalendarGrid_Popup);
    797             //
    798             // ctxCalGridAdd
    799             //
    800             this.ctxCalGridAdd.Index = 0;
    801             this.ctxCalGridAdd.Text = "Add Appointment";
    802             this.ctxCalGridAdd.Click += new System.EventHandler(this.ctxCalGridAdd_Click);
    803             //
    804             // ctxCalGridEdit
    805             //
    806             this.ctxCalGridEdit.Index = 1;
    807             this.ctxCalGridEdit.Text = "Edit Appointment";
    808             this.ctxCalGridEdit.Click += new System.EventHandler(this.ctxCalGridEdit_Click);
    809             //
    810             // ctxCalGridDelete
    811             //
    812             this.ctxCalGridDelete.Index = 2;
    813             this.ctxCalGridDelete.Text = "Cancel Appointment";
    814             this.ctxCalGridDelete.Click += new System.EventHandler(this.ctxCalGridDelete_Click);
    815             //
    816             // ctxCalGridCheckIn
    817             //
    818             this.ctxCalGridCheckIn.Index = 3;
    819             this.ctxCalGridCheckIn.Text = "Check In Patient";
    820             this.ctxCalGridCheckIn.Click += new System.EventHandler(this.ctxCalGridCheckIn_Click);
    821             //
    822             // menuItem2
    823             //
    824             this.menuItem2.Index = 4;
    825             this.menuItem2.Text = "-";
    826             //
    827             // ctxCalGridNoShow
    828             //
    829             this.ctxCalGridNoShow.Index = 5;
    830             this.ctxCalGridNoShow.Text = "Mark as No Show";
    831             this.ctxCalGridNoShow.Click += new System.EventHandler(this.ctxCalGridNoShow_Click);
    832             //
    833             // ctxCalGridNoShowUndo
    834             //
    835             this.ctxCalGridNoShowUndo.Index = 6;
    836             this.ctxCalGridNoShowUndo.Text = "Undo NoShow";
    837             this.ctxCalGridNoShowUndo.Click += new System.EventHandler(this.ctxCalGridNoShowUndo_Click);
    838             //
    839             // menuItem9
    840             //
    841             this.menuItem9.Index = 7;
    842             this.menuItem9.Text = "-";
    843             //
    844             // ctxCalGridWalkin
    845             //
    846             this.ctxCalGridWalkin.Index = 8;
    847             this.ctxCalGridWalkin.Text = "Create Wal&k-In Appointment";
    848             this.ctxCalGridWalkin.Click += new System.EventHandler(this.ctxCalGridWalkin_Click);
    849             //
    850             // panelBottom
    851             //
    852             this.panelBottom.Controls.Add(this.statusBar1);
    853             this.panelBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
    854             this.panelBottom.Location = new System.Drawing.Point(136, 386);
    855             this.panelBottom.Name = "panelBottom";
    856             this.panelBottom.Size = new System.Drawing.Size(537, 24);
    857             this.panelBottom.TabIndex = 8;
    858             //
    859             // statusBar1
    860             //
    861             this.statusBar1.Dock = System.Windows.Forms.DockStyle.Fill;
    862             this.statusBar1.Location = new System.Drawing.Point(0, 0);
    863             this.statusBar1.Name = "statusBar1";
    864             this.statusBar1.Size = new System.Drawing.Size(537, 24);
    865             this.statusBar1.SizingGrip = false;
    866             this.statusBar1.TabIndex = 0;
    867             //
    868             // splitter1
    869             //
    870             this.splitter1.Location = new System.Drawing.Point(128, 24);
    871             this.splitter1.Name = "splitter1";
    872             this.splitter1.Size = new System.Drawing.Size(8, 386);
    873             this.splitter1.TabIndex = 9;
    874             this.splitter1.TabStop = false;
    875             //
    876             // splitter2
    877             //
    878             this.splitter2.Dock = System.Windows.Forms.DockStyle.Right;
    879             this.splitter2.Location = new System.Drawing.Point(673, 24);
    880             this.splitter2.Name = "splitter2";
    881             this.splitter2.Size = new System.Drawing.Size(3, 386);
    882             this.splitter2.TabIndex = 10;
    883             this.splitter2.TabStop = false;
    884791            //
    885792            // calendarGrid1
     
    902809            this.calendarGrid1.Resources = ((System.Collections.ArrayList)(resources.GetObject("calendarGrid1.Resources")));
    903810            this.calendarGrid1.SelectedAppointment = 0;
    904             this.calendarGrid1.Size = new System.Drawing.Size(537, 362);
     811            this.calendarGrid1.Size = new System.Drawing.Size(668, 374);
    905812            this.calendarGrid1.StartDate = new System.DateTime(2003, 1, 27, 0, 0, 0, 0);
    906813            this.calendarGrid1.TabIndex = 0;
     
    911818            this.calendarGrid1.CGAppointmentAdded += new IndianHealthService.ClinicalScheduling.CGAppointmentChangedHandler(this.calendarGrid1_CGAppointmentAdded);
    912819            //
     820            // ctxCalendarGrid
     821            //
     822            this.ctxCalendarGrid.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
     823            this.ctxCalGridAdd,
     824            this.ctxCalGridEdit,
     825            this.ctxCalGridDelete,
     826            this.ctxCalGridCheckIn,
     827            this.menuItem2,
     828            this.ctxCalGridNoShow,
     829            this.ctxCalGridNoShowUndo,
     830            this.menuItem9,
     831            this.ctxCalGridWalkin});
     832            this.ctxCalendarGrid.Popup += new System.EventHandler(this.ctxCalendarGrid_Popup);
     833            //
     834            // ctxCalGridAdd
     835            //
     836            this.ctxCalGridAdd.Index = 0;
     837            this.ctxCalGridAdd.Text = "Add Appointment";
     838            this.ctxCalGridAdd.Click += new System.EventHandler(this.ctxCalGridAdd_Click);
     839            //
     840            // ctxCalGridEdit
     841            //
     842            this.ctxCalGridEdit.Index = 1;
     843            this.ctxCalGridEdit.Text = "Edit Appointment";
     844            this.ctxCalGridEdit.Click += new System.EventHandler(this.ctxCalGridEdit_Click);
     845            //
     846            // ctxCalGridDelete
     847            //
     848            this.ctxCalGridDelete.Index = 2;
     849            this.ctxCalGridDelete.Text = "Cancel Appointment";
     850            this.ctxCalGridDelete.Click += new System.EventHandler(this.ctxCalGridDelete_Click);
     851            //
     852            // ctxCalGridCheckIn
     853            //
     854            this.ctxCalGridCheckIn.Index = 3;
     855            this.ctxCalGridCheckIn.Text = "Check In Patient";
     856            this.ctxCalGridCheckIn.Click += new System.EventHandler(this.ctxCalGridCheckIn_Click);
     857            //
     858            // menuItem2
     859            //
     860            this.menuItem2.Index = 4;
     861            this.menuItem2.Text = "-";
     862            //
     863            // ctxCalGridNoShow
     864            //
     865            this.ctxCalGridNoShow.Index = 5;
     866            this.ctxCalGridNoShow.Text = "Mark as No Show";
     867            this.ctxCalGridNoShow.Click += new System.EventHandler(this.ctxCalGridNoShow_Click);
     868            //
     869            // ctxCalGridNoShowUndo
     870            //
     871            this.ctxCalGridNoShowUndo.Index = 6;
     872            this.ctxCalGridNoShowUndo.Text = "Undo NoShow";
     873            this.ctxCalGridNoShowUndo.Click += new System.EventHandler(this.ctxCalGridNoShowUndo_Click);
     874            //
     875            // menuItem9
     876            //
     877            this.menuItem9.Index = 7;
     878            this.menuItem9.Text = "-";
     879            //
     880            // ctxCalGridWalkin
     881            //
     882            this.ctxCalGridWalkin.Index = 8;
     883            this.ctxCalGridWalkin.Text = "Create Wal&k-In Appointment";
     884            this.ctxCalGridWalkin.Click += new System.EventHandler(this.ctxCalGridWalkin_Click);
     885            //
     886            // panelBottom
     887            //
     888            this.panelBottom.Controls.Add(this.statusBar1);
     889            this.panelBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     890            this.panelBottom.Location = new System.Drawing.Point(136, 398);
     891            this.panelBottom.Name = "panelBottom";
     892            this.panelBottom.Size = new System.Drawing.Size(668, 24);
     893            this.panelBottom.TabIndex = 8;
     894            //
     895            // statusBar1
     896            //
     897            this.statusBar1.Dock = System.Windows.Forms.DockStyle.Fill;
     898            this.statusBar1.Location = new System.Drawing.Point(0, 0);
     899            this.statusBar1.Name = "statusBar1";
     900            this.statusBar1.Size = new System.Drawing.Size(668, 24);
     901            this.statusBar1.SizingGrip = false;
     902            this.statusBar1.TabIndex = 0;
     903            //
     904            // splitter1
     905            //
     906            this.splitter1.Location = new System.Drawing.Point(128, 24);
     907            this.splitter1.Name = "splitter1";
     908            this.splitter1.Size = new System.Drawing.Size(8, 398);
     909            this.splitter1.TabIndex = 9;
     910            this.splitter1.TabStop = false;
     911            //
     912            // splitter2
     913            //
     914            this.splitter2.Dock = System.Windows.Forms.DockStyle.Right;
     915            this.splitter2.Location = new System.Drawing.Point(804, 24);
     916            this.splitter2.Name = "splitter2";
     917            this.splitter2.Size = new System.Drawing.Size(3, 398);
     918            this.splitter2.TabIndex = 10;
     919            this.splitter2.TabStop = false;
     920            //
    913921            // CGView
    914922            //
    915923            this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
    916             this.ClientSize = new System.Drawing.Size(804, 410);
     924            this.ClientSize = new System.Drawing.Size(935, 422);
    917925            this.Controls.Add(this.panelCenter);
    918926            this.Controls.Add(this.panelBottom);
     
    19501958                                        sStopCode = drHL["STOP_CODE_NUMBER"].ToString();
    19511959
    1952                                         DataRow[] draCS = drHL.GetChildRows(m_DocManager.GlobalDataSet.Relations["HospitalLocationClinic"]);
     1960                                       
     1961                    //TODO: Remove this. This doesn't exist in VISTA.
     1962                    DataRow[] draCS = drHL.GetChildRows(m_DocManager.GlobalDataSet.Relations["HospitalLocationClinic"]);
    19531963                                        if (draCS.GetLength(0) > 0)
    19541964                                        {
     
    21512161                                Debug.Assert(nDuration > 0);
    21522162
    2153                                 /*
    2154                                  * 7-19-05 Added overbook prompt
    2155                                  * 8-10-05 Copied code block prior to patient selection
    2156                                 */
    21572163                                this.Document.RefreshDocument();
    21582164                                string sAccessType = "";
     
    22022208                                appt.AccessTypeID = nAccessTypeID;
    22032209
    2204                                 /*
    2205                                  * 7-19-05 Added overbook prompt
    2206                                  * 8-10-05 Copied code block prior to patient selection
    2207                                 */
    2208                                 this.Document.RefreshDocument();
    2209                                 m_nSlots = m_Document.SlotsAvailable(dStart, dEnd, sResource, out sAccessType, out sAvailabilityMessage);
    2210 
    2211                                 if (m_nSlots < 1)
    2212                                 {
    2213                                         DialogResult dr = MessageBox.Show(this, "There are no slots available at the selected time.  Do you want to overbook this appointment?", "Clinical Scheduling",MessageBoxButtons.YesNo);
    2214                                         if (dr != DialogResult.Yes)
    2215                                         {
    2216                                                 return;
    2217                                         }
    2218                                 }
    2219 
    22202210                                //Call Document to add a new appointment
    22212211                                this.Document.CreateAppointment(appt);
     2212                this.Document.RefreshDocument();
     2213
    22222214                        }
    22232215                        catch (Exception ex)
  • Scheduling/trunk/cs/bsdx0200GUISourceCode/ClinicalScheduling.csproj.user

    r788 r794  
    3636    </RemoteDebugMachine>
    3737    <StartAction>Project</StartAction>
    38     <StartArguments>/s=192.168.254.129 /p=9260 /a=shabiel12 /v=catdog.44</StartArguments>
     38    <StartArguments>/s=s0110.sequencemanagers.com /p=8110 /a=wizard.11 /v=storm.11</StartArguments>
    3939    <StartPage>
    4040    </StartPage>
     
    5555    </RemoteDebugMachine>
    5656    <StartAction>Project</StartAction>
    57     <StartArguments>/s=192.168.254.129 /p=9260 /a=shabiel12 /v=catdog.44</StartArguments>
     57    <StartArguments>/s=s0110.sequencemanagers.com /p=8110 /a=wizard.11 /v=storm.11</StartArguments>
    5858    <StartPage>
    5959    </StartPage>
Note: See TracChangeset for help on using the changeset viewer.