<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:pingback="http://madskills.com/public/xml/rss/module/pingback/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0">
  <channel>
    <title>BUS ADM 740 Blog</title>
    <link>http://www.531.sba.uwm.edu/740/bjweber/740Blog/</link>
    <description>on MIS Concepts and Languages by Bobbie Weber</description>
    <language>en-us</language>
    <copyright>Bobbie Weber</copyright>
    <lastBuildDate>Tue, 13 May 2008 04:31:32 GMT</lastBuildDate>
    <generator>newtelligence dasBlog 1.8.5223.2</generator>
    <managingEditor>BJWEBER@UWM.EDU</managingEditor>
    <webMaster>BJWEBER@UWM.EDU</webMaster>
    <item>
      <trackback:ping>http://www.531.sba.uwm.edu/740/bjweber/740Blog/Trackback.aspx?guid=37d8390c-9483-40ce-9e16-7ec524a3cf64</trackback:ping>
      <pingback:server>http://www.531.sba.uwm.edu/740/bjweber/740Blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.531.sba.uwm.edu/740/bjweber/740Blog/PermaLink,guid,37d8390c-9483-40ce-9e16-7ec524a3cf64.aspx</pingback:target>
      <dc:creator>BJWEBER@UWM.EDU (ADMIN)</dc:creator>
      <wfw:comment>http://www.531.sba.uwm.edu/740/bjweber/740Blog/CommentView,guid,37d8390c-9483-40ce-9e16-7ec524a3cf64.aspx</wfw:comment>
      <wfw:commentRss>http://www.531.sba.uwm.edu/740/bjweber/740Blog/SyndicationService.asmx/GetEntryCommentsRss?guid=37d8390c-9483-40ce-9e16-7ec524a3cf64</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
      I am having some issues with using the enumerator classes in my project.  For
      my dropdown I am using the suggestion that was posted by prof haines .. adding all
      of the choices to the dropdown then using a case to actually select the TaskType and
      TaskStatus.. However, when I am trying to actually save the information that was entered
      with the AddEmployeeTask method I am uncertain how to get the Task ID for whichever
      task was selected in the drop down. This is the code I am trying to use.  It
      works as long as I code in the case as i did below:
   </p>
        <font color="#0000ff" size="2">
          <p>
      Try
   </p>
          <p>
          </p>
        </font>
        <font color="#0000ff" size="2">Dim</font>
        <font size="2"> thisEmp </font>
        <font color="#0000ff" size="2">As</font>
        <font size="2"> wrefEmployeeManagementService.Employee
   <p></p></font>
        <font color="#0000ff" size="2">Dim</font>
        <font size="2"> thisID </font>
        <font color="#0000ff" size="2">As</font>
        <font size="2">
        </font>
        <font color="#0000ff" size="2">String
   </font>
        <font size="2">
          <p>
          </p>
        </font>
        <font color="#0000ff" size="2">Dim</font>
        <font size="2"> taskID </font>
        <font color="#0000ff" size="2">As</font>
        <font size="2">
        </font>
        <font color="#0000ff" size="2">String
   </font>
        <font size="2">
          <p>
      thisEmp = 
   </p>
        </font>
        <font color="#0000ff" size="2">Me</font>
        <font size="2">.cbxEmployeeName.SelectedValue
   <p>
      thisID = thisEmp.ID
   </p><p>
      thisTask = 
   </p></font>
        <font color="#0000ff" size="2">Me</font>
        <font size="2">.cbxTaskType.SelectedValue
   <p>
      taskID = task.ID
   </p><p></p></font>
        <font color="#008000" size="2">' MessageBox.Show(taskID)
   </font>
        <font size="2">
          <p>
      emptask = 
   </p>
        </font>
        <font color="#0000ff" size="2">New</font>
        <font size="2"> wrefEmployeeManagementService.EmployeeTask
   <p>
      emptask.DateWorked = 
   </p></font>
        <font color="#0000ff" size="2">Me</font>
        <font size="2">.dtCalendar.Value
   <p>
      emptask.HoursWorked = 
   </p></font>
        <font color="#0000ff" size="2">Me</font>
        <font size="2">.txtEmloyeeHours.Text
   <p></p></font>
        <font color="#008000" size="2">' MessageBox.Show(thisEmp.FullName)
   </font>
        <font size="2">
          <p>
      emptask.EmployeeId = thisID
   </p>
          <p>
          </p>
        </font>
        <font color="#008000" size="2">' MessageBox.Show(thisID)
   </font>
        <font size="2">
          <p>
      emptask.ID = Count + 2
   </p>
          <p>
      emptask.TaskId = taskID
   </p>
          <font size="2">
            <p>
      ws.addEmployeeTask(emptask)
   </p>
          </font>
          <font size="2">
            <p>
            </p>
          </font>
          <font color="#0000ff" size="2">Select</font>
          <font size="2">
          </font>
          <font color="#0000ff" size="2">Case</font>
          <font size="2">
          </font>
          <font color="#0000ff" size="2">Me</font>
          <font size="2">.cbxTaskType.SelectedItem
   <p></p></font>
          <font color="#0000ff" size="2">Case</font>
          <font size="2">
          </font>
          <font color="#800000" size="2">"Armaflex"
   </font>
          <font size="2">
            <p>
      thisTask = wrefEmployeeManagementService.TaskType.Armaflex
   </p>
            <p>
      task.TaskName = 
   </p>
          </font>
          <font color="#800000" size="2">"Armaflex"
   </font>
          <font size="2">
            <p>
            </p>
          </font>
          <font color="#0000ff" size="2">If</font>
          <font size="2"> task.TaskStatus
   = wrefEmployeeManagementService.TaskStatus.Completed </font>
          <font color="#0000ff" size="2">Then
   </font>
          <font size="2">
            <p>
      task.ID = 
   </p>
          </font>
          <font color="#800000" size="2">"00011"
   </font>
          <font size="2">
            <p>
            </p>
          </font>
          <font color="#0000ff" size="2">Else
   </font>
          <font size="2">
            <p>
      task.ID = 
   </p>
          </font>
          <font color="#800000" size="2">"00012"
   </font>
          <font size="2">
            <p>
            </p>
          </font>
          <font color="#0000ff" size="2">End</font>
          <font size="2">
          </font>
          <font color="#0000ff" size="2">If
   </font>
          <p>
      Anybody have any suggestions??
   </p>
          <p>
       
   </p>
          <p>
      Thanks!
   </p>
        </font>
        <img width="0" height="0" src="http://www.531.sba.uwm.edu/740/bjweber/740Blog/aggbug.ashx?id=37d8390c-9483-40ce-9e16-7ec524a3cf64" />
      </body>
      <title>Final questions on Project</title>
      <guid>http://www.531.sba.uwm.edu/740/bjweber/740Blog/PermaLink,guid,37d8390c-9483-40ce-9e16-7ec524a3cf64.aspx</guid>
      <link>http://www.531.sba.uwm.edu/740/bjweber/740Blog/PermaLink,guid,37d8390c-9483-40ce-9e16-7ec524a3cf64.aspx</link>
      <pubDate>Tue, 13 May 2008 04:31:32 GMT</pubDate>
      <description>&lt;p&gt;
   I am having some issues with using the enumerator classes in my project.&amp;nbsp; For
   my dropdown I am using the suggestion that was posted by prof haines .. adding all
   of the choices to the dropdown then using a case to actually select the TaskType and
   TaskStatus.. However, when I am trying to actually save the information that was entered
   with the AddEmployeeTask method I am uncertain how to get the Task ID for whichever
   task was selected in the drop down. This is the code I am trying to use.&amp;nbsp; It
   works as long as I code in the case as i did below:
&lt;/p&gt;
&lt;font color=#0000ff size=2&gt; 
&lt;p&gt;
   Try
&lt;/p&gt;
&lt;p&gt;
&lt;/font&gt;&lt;font color=#0000ff size=2&gt;Dim&lt;/font&gt;&lt;font size=2&gt; thisEmp &lt;/font&gt;&lt;font color=#0000ff size=2&gt;As&lt;/font&gt;&lt;font size=2&gt; wrefEmployeeManagementService.Employee&gt;
&lt;p&gt;
&lt;/font&gt;&lt;font color=#0000ff size=2&gt;Dim&lt;/font&gt;&lt;font size=2&gt; thisID &lt;/font&gt;&lt;font color=#0000ff size=2&gt;As&lt;/font&gt;&lt;font size=2&gt; &lt;/font&gt;&lt;font color=#0000ff size=2&gt;String&gt;
&lt;/font&gt;&lt;font size=2&gt; 
&lt;p&gt;
&lt;/font&gt;&lt;font color=#0000ff size=2&gt;Dim&lt;/font&gt;&lt;font size=2&gt; taskID &lt;/font&gt;&lt;font color=#0000ff size=2&gt;As&lt;/font&gt;&lt;font size=2&gt; &lt;/font&gt;&lt;font color=#0000ff size=2&gt;String&gt;
&lt;/font&gt;&lt;font size=2&gt; 
&lt;p&gt;
   thisEmp = 
&lt;/font&gt;&lt;font color=#0000ff size=2&gt;Me&lt;/font&gt;&lt;font size=2&gt;.cbxEmployeeName.SelectedValue&gt;
&lt;p&gt;
   thisID = thisEmp.ID
&lt;/p&gt;
&lt;p&gt;
   thisTask = 
&lt;/font&gt;&lt;font color=#0000ff size=2&gt;Me&lt;/font&gt;&lt;font size=2&gt;.cbxTaskType.SelectedValue&gt;
&lt;p&gt;
   taskID = task.ID
&lt;/p&gt;
&lt;p&gt;
&lt;/font&gt;&lt;font color=#008000 size=2&gt;' MessageBox.Show(taskID)&gt;
&lt;/font&gt;&lt;font size=2&gt; 
&lt;p&gt;
   emptask = 
&lt;/font&gt;&lt;font color=#0000ff size=2&gt;New&lt;/font&gt;&lt;font size=2&gt; wrefEmployeeManagementService.EmployeeTask&gt;
&lt;p&gt;
   emptask.DateWorked = 
&lt;/font&gt;&lt;font color=#0000ff size=2&gt;Me&lt;/font&gt;&lt;font size=2&gt;.dtCalendar.Value&gt;
&lt;p&gt;
   emptask.HoursWorked = 
&lt;/font&gt;&lt;font color=#0000ff size=2&gt;Me&lt;/font&gt;&lt;font size=2&gt;.txtEmloyeeHours.Text&gt;
&lt;p&gt;
&lt;/font&gt;&lt;font color=#008000 size=2&gt;' MessageBox.Show(thisEmp.FullName)&gt;
&lt;/font&gt;&lt;font size=2&gt; 
&lt;p&gt;
   emptask.EmployeeId = thisID
&lt;/p&gt;
&lt;p&gt;
&lt;/font&gt;&lt;font color=#008000 size=2&gt;' MessageBox.Show(thisID)&gt;
&lt;/font&gt;&lt;font size=2&gt; 
&lt;p&gt;
   emptask.ID = Count + 2
&lt;/p&gt;
&lt;p&gt;
   emptask.TaskId = taskID
&lt;/p&gt;
&lt;font size=2&gt; 
&lt;p&gt;
   ws.addEmployeeTask(emptask)
&lt;/p&gt;
&lt;/font&gt;&lt;font size=2&gt; 
&lt;p&gt;
&lt;/font&gt;&lt;font color=#0000ff size=2&gt;Select&lt;/font&gt;&lt;font size=2&gt; &lt;/font&gt;&lt;font color=#0000ff size=2&gt;Case&lt;/font&gt;&lt;font size=2&gt; &lt;/font&gt;&lt;font color=#0000ff size=2&gt;Me&lt;/font&gt;&lt;font size=2&gt;.cbxTaskType.SelectedItem&gt;
&lt;p&gt;
&lt;/font&gt;&lt;font color=#0000ff size=2&gt;Case&lt;/font&gt;&lt;font size=2&gt; &lt;/font&gt;&lt;font color=#800000 size=2&gt;"Armaflex"&gt;
&lt;/font&gt;&lt;font size=2&gt; 
&lt;p&gt;
   thisTask = wrefEmployeeManagementService.TaskType.Armaflex
&lt;/p&gt;
&lt;p&gt;
   task.TaskName = 
&lt;/font&gt;&lt;font color=#800000 size=2&gt;"Armaflex"&gt;
&lt;/font&gt;&lt;font size=2&gt; 
&lt;p&gt;
&lt;/font&gt;&lt;font color=#0000ff size=2&gt;If&lt;/font&gt;&lt;font size=2&gt; task.TaskStatus = wrefEmployeeManagementService.TaskStatus.Completed &lt;/font&gt;&lt;font color=#0000ff size=2&gt;Then&gt;
&lt;/font&gt;&lt;font size=2&gt; 
&lt;p&gt;
   task.ID = 
&lt;/font&gt;&lt;font color=#800000 size=2&gt;"00011"&gt;
&lt;/font&gt;&lt;font size=2&gt; 
&lt;p&gt;
&lt;/font&gt;&lt;font color=#0000ff size=2&gt;Else&gt;
&lt;/font&gt;&lt;font size=2&gt; 
&lt;p&gt;
   task.ID = 
&lt;/font&gt;&lt;font color=#800000 size=2&gt;"00012"&gt;
&lt;/font&gt;&lt;font size=2&gt; 
&lt;p&gt;
&lt;/font&gt;&lt;font color=#0000ff size=2&gt;End&lt;/font&gt;&lt;font size=2&gt; &lt;/font&gt;&lt;font color=#0000ff size=2&gt;If&gt;
&lt;/font&gt; 
&lt;p&gt;
   Anybody have any suggestions??
&lt;/p&gt;
&lt;p&gt;
   &amp;nbsp;
&lt;/p&gt;
&lt;p&gt;
   Thanks!
&lt;/p&gt;
&lt;/font&gt;&lt;img width="0" height="0" src="http://www.531.sba.uwm.edu/740/bjweber/740Blog/aggbug.ashx?id=37d8390c-9483-40ce-9e16-7ec524a3cf64" /&gt;</description>
      <comments>http://www.531.sba.uwm.edu/740/bjweber/740Blog/CommentView,guid,37d8390c-9483-40ce-9e16-7ec524a3cf64.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://www.531.sba.uwm.edu/740/bjweber/740Blog/Trackback.aspx?guid=bea0cc20-5b21-4555-9d9e-67227a943532</trackback:ping>
      <pingback:server>http://www.531.sba.uwm.edu/740/bjweber/740Blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.531.sba.uwm.edu/740/bjweber/740Blog/PermaLink,guid,bea0cc20-5b21-4555-9d9e-67227a943532.aspx</pingback:target>
      <dc:creator>BJWEBER@UWM.EDU (ADMIN)</dc:creator>
      <wfw:comment>http://www.531.sba.uwm.edu/740/bjweber/740Blog/CommentView,guid,bea0cc20-5b21-4555-9d9e-67227a943532.aspx</wfw:comment>
      <wfw:commentRss>http://www.531.sba.uwm.edu/740/bjweber/740Blog/SyndicationService.asmx/GetEntryCommentsRss?guid=bea0cc20-5b21-4555-9d9e-67227a943532</wfw:commentRss>
      <slash:comments>1</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
      Is anybody else completely frustrated with this project?  I am very frustrated
      and am just at a loss of what to do right now regarding actually adding "dummy" data
      into the webservice for me to use for testing purposes.  Grr!  
   </p>
        <img width="0" height="0" src="http://www.531.sba.uwm.edu/740/bjweber/740Blog/aggbug.ashx?id=bea0cc20-5b21-4555-9d9e-67227a943532" />
      </body>
      <title>Project</title>
      <guid>http://www.531.sba.uwm.edu/740/bjweber/740Blog/PermaLink,guid,bea0cc20-5b21-4555-9d9e-67227a943532.aspx</guid>
      <link>http://www.531.sba.uwm.edu/740/bjweber/740Blog/PermaLink,guid,bea0cc20-5b21-4555-9d9e-67227a943532.aspx</link>
      <pubDate>Sun, 04 May 2008 22:41:42 GMT</pubDate>
      <description>&lt;p&gt;
   Is anybody else completely frustrated with this project?&amp;nbsp; I am very frustrated
   and am just at a loss of what to do right now regarding actually adding "dummy" data
   into the webservice for me to use for testing purposes.&amp;nbsp; Grr!&amp;nbsp; 
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.531.sba.uwm.edu/740/bjweber/740Blog/aggbug.ashx?id=bea0cc20-5b21-4555-9d9e-67227a943532" /&gt;</description>
      <comments>http://www.531.sba.uwm.edu/740/bjweber/740Blog/CommentView,guid,bea0cc20-5b21-4555-9d9e-67227a943532.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://www.531.sba.uwm.edu/740/bjweber/740Blog/Trackback.aspx?guid=4aa0bceb-bbc1-4d4e-ad6d-9522dbbafbca</trackback:ping>
      <pingback:server>http://www.531.sba.uwm.edu/740/bjweber/740Blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.531.sba.uwm.edu/740/bjweber/740Blog/PermaLink,guid,4aa0bceb-bbc1-4d4e-ad6d-9522dbbafbca.aspx</pingback:target>
      <dc:creator>BJWEBER@UWM.EDU (ADMIN)</dc:creator>
      <wfw:comment>http://www.531.sba.uwm.edu/740/bjweber/740Blog/CommentView,guid,4aa0bceb-bbc1-4d4e-ad6d-9522dbbafbca.aspx</wfw:comment>
      <wfw:commentRss>http://www.531.sba.uwm.edu/740/bjweber/740Blog/SyndicationService.asmx/GetEntryCommentsRss?guid=4aa0bceb-bbc1-4d4e-ad6d-9522dbbafbca</wfw:commentRss>
      <slash:comments>1</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
      I am having an issue with Assignment 4.  I got the data to save locally
      to an xml file with the code still similar to Lab 4 where the form populates
      with all of the information from the webservice when first opened.  Then I changed the
      code to load either locally from the "patient.xml" file or from the Webservice when
      you click on the load menu button.  However, once everything populates using
      the Load feature, it will not work using the Save feature to save the data to
      xml.  It gives me the following error: The process cannot access the file '\patients.xml'
      because it is being used by another process.  It gives me this pop up whether
      I am connected and loaded the data from the webservice or if I am not connected and
      loaded the data locally from patients.xml.  Anyone have suggestions on what I
      am doing incorrectly? 
   </p>
        <p>
          <font face="Verdana" color="#003300" size="2">Thanks!</font>
          <font face="sans-serif" size="2">
            <br />
          </font>
        </p>
        <img width="0" height="0" src="http://www.531.sba.uwm.edu/740/bjweber/740Blog/aggbug.ashx?id=4aa0bceb-bbc1-4d4e-ad6d-9522dbbafbca" />
      </body>
      <title>Assignment 4</title>
      <guid>http://www.531.sba.uwm.edu/740/bjweber/740Blog/PermaLink,guid,4aa0bceb-bbc1-4d4e-ad6d-9522dbbafbca.aspx</guid>
      <link>http://www.531.sba.uwm.edu/740/bjweber/740Blog/PermaLink,guid,4aa0bceb-bbc1-4d4e-ad6d-9522dbbafbca.aspx</link>
      <pubDate>Tue, 22 Apr 2008 00:18:28 GMT</pubDate>
      <description>&lt;p&gt;
   I am having an issue with Assignment 4.&amp;nbsp; I got the data to save&amp;nbsp;locally
   to an xml file&amp;nbsp;with the code still similar to Lab 4 where the form&amp;nbsp;populates
   with all of the information from the webservice when first opened.&amp;nbsp; Then I changed&amp;nbsp;the
   code to load either locally from the "patient.xml" file or from the Webservice when
   you click on the load menu button.&amp;nbsp; However,&amp;nbsp;once everything populates using
   the Load feature, it will not work using the Save feature to save&amp;nbsp;the data to
   xml.&amp;nbsp; It gives me the following error: The process cannot access the file '\patients.xml'
   because it is being used by another process.&amp;nbsp; It gives me this pop up whether
   I am connected and loaded the data from the webservice or if I am not connected and
   loaded the data locally from patients.xml.&amp;nbsp; Anyone have suggestions on what I
   am doing incorrectly? 
&lt;/p&gt;
&lt;p&gt;
   &lt;font face=Verdana color=#003300 size=2&gt;Thanks!&lt;/font&gt;&lt;font face=sans-serif size=2&gt;
   &lt;br&gt;
   &lt;/font&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.531.sba.uwm.edu/740/bjweber/740Blog/aggbug.ashx?id=4aa0bceb-bbc1-4d4e-ad6d-9522dbbafbca" /&gt;</description>
      <comments>http://www.531.sba.uwm.edu/740/bjweber/740Blog/CommentView,guid,4aa0bceb-bbc1-4d4e-ad6d-9522dbbafbca.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://www.531.sba.uwm.edu/740/bjweber/740Blog/Trackback.aspx?guid=2b412e36-a445-42e6-86bd-1b0507d1a7e4</trackback:ping>
      <pingback:server>http://www.531.sba.uwm.edu/740/bjweber/740Blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.531.sba.uwm.edu/740/bjweber/740Blog/PermaLink,guid,2b412e36-a445-42e6-86bd-1b0507d1a7e4.aspx</pingback:target>
      <dc:creator>BJWEBER@UWM.EDU (ADMIN)</dc:creator>
      <wfw:comment>http://www.531.sba.uwm.edu/740/bjweber/740Blog/CommentView,guid,2b412e36-a445-42e6-86bd-1b0507d1a7e4.aspx</wfw:comment>
      <wfw:commentRss>http://www.531.sba.uwm.edu/740/bjweber/740Blog/SyndicationService.asmx/GetEntryCommentsRss?guid=2b412e36-a445-42e6-86bd-1b0507d1a7e4</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
      For my project I am working on creating a database that hopefully in the future will
      be able to be used by my boyfriend who works in the construction industry.  I
      am working on building a database to track employee hours on a daily basis, along
      with which site the employee is working at.  Currently employee hours are tracked
      in a notepad by the construction site foremen (yes a little antiquated!!).  So
      hopefully my attempt at building a database can be useful to the company he works
      for and be used to track employees' time while onsite.
   </p>
        <img width="0" height="0" src="http://www.531.sba.uwm.edu/740/bjweber/740Blog/aggbug.ashx?id=2b412e36-a445-42e6-86bd-1b0507d1a7e4" />
      </body>
      <title>Project</title>
      <guid>http://www.531.sba.uwm.edu/740/bjweber/740Blog/PermaLink,guid,2b412e36-a445-42e6-86bd-1b0507d1a7e4.aspx</guid>
      <link>http://www.531.sba.uwm.edu/740/bjweber/740Blog/PermaLink,guid,2b412e36-a445-42e6-86bd-1b0507d1a7e4.aspx</link>
      <pubDate>Tue, 15 Apr 2008 02:37:54 GMT</pubDate>
      <description>&lt;p&gt;
   For my project I am working on creating a database that hopefully in the future will
   be able to be used by my boyfriend who works in the construction industry.&amp;nbsp; I
   am working on building a database to track employee hours on a daily basis, along
   with which site the employee is working at.&amp;nbsp; Currently employee hours are tracked
   in a notepad by the construction site foremen (yes a little antiquated!!).&amp;nbsp; So
   hopefully my attempt at building a database can be useful to the company he works
   for and be used to track employees' time while onsite.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.531.sba.uwm.edu/740/bjweber/740Blog/aggbug.ashx?id=2b412e36-a445-42e6-86bd-1b0507d1a7e4" /&gt;</description>
      <comments>http://www.531.sba.uwm.edu/740/bjweber/740Blog/CommentView,guid,2b412e36-a445-42e6-86bd-1b0507d1a7e4.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://www.531.sba.uwm.edu/740/bjweber/740Blog/Trackback.aspx?guid=83ff0950-f0fe-4e55-9fa3-e6a278ef9d11</trackback:ping>
      <pingback:server>http://www.531.sba.uwm.edu/740/bjweber/740Blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.531.sba.uwm.edu/740/bjweber/740Blog/PermaLink,guid,83ff0950-f0fe-4e55-9fa3-e6a278ef9d11.aspx</pingback:target>
      <dc:creator>BJWEBER@UWM.EDU (ADMIN)</dc:creator>
      <wfw:comment>http://www.531.sba.uwm.edu/740/bjweber/740Blog/CommentView,guid,83ff0950-f0fe-4e55-9fa3-e6a278ef9d11.aspx</wfw:comment>
      <wfw:commentRss>http://www.531.sba.uwm.edu/740/bjweber/740Blog/SyndicationService.asmx/GetEntryCommentsRss?guid=83ff0950-f0fe-4e55-9fa3-e6a278ef9d11</wfw:commentRss>
      <slash:comments>1</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
      I was unable to make it to class today due to illness.  I really wanted to make
      it considering we have our first exam next week, however, I just was not feeling good
      enough to even get out of bed.  Could anyone give me any insight to what took
      place in class tonight.  I have printed out the powerpoint notes but if there
      were any other important announcements please share them with me.  I noticed
      on the course website that our exam is going to be online.  Do we still have
      class next Tuesday (the 4th)?  Thank you in advance for any responses.
   </p>
        <img width="0" height="0" src="http://www.531.sba.uwm.edu/740/bjweber/740Blog/aggbug.ashx?id=83ff0950-f0fe-4e55-9fa3-e6a278ef9d11" />
      </body>
      <title>Class Today</title>
      <guid>http://www.531.sba.uwm.edu/740/bjweber/740Blog/PermaLink,guid,83ff0950-f0fe-4e55-9fa3-e6a278ef9d11.aspx</guid>
      <link>http://www.531.sba.uwm.edu/740/bjweber/740Blog/PermaLink,guid,83ff0950-f0fe-4e55-9fa3-e6a278ef9d11.aspx</link>
      <pubDate>Wed, 27 Feb 2008 02:10:20 GMT</pubDate>
      <description>&lt;p&gt;
   I was unable to make it to class today due to illness.&amp;nbsp; I really wanted to make
   it considering we have our first exam next week, however, I just was not feeling good
   enough to even get out of bed.&amp;nbsp; Could anyone give me any insight to what took
   place in class tonight.&amp;nbsp; I have printed out the powerpoint notes but if there
   were any other important announcements please share them with me.&amp;nbsp; I noticed
   on the course website that our exam is going to be online.&amp;nbsp; Do we still have
   class next Tuesday (the 4th)?&amp;nbsp; Thank you in advance for any responses.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.531.sba.uwm.edu/740/bjweber/740Blog/aggbug.ashx?id=83ff0950-f0fe-4e55-9fa3-e6a278ef9d11" /&gt;</description>
      <comments>http://www.531.sba.uwm.edu/740/bjweber/740Blog/CommentView,guid,83ff0950-f0fe-4e55-9fa3-e6a278ef9d11.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://www.531.sba.uwm.edu/740/bjweber/740Blog/Trackback.aspx?guid=e684a9fb-352f-4ac1-ac5e-e98c017cfc2a</trackback:ping>
      <pingback:server>http://www.531.sba.uwm.edu/740/bjweber/740Blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.531.sba.uwm.edu/740/bjweber/740Blog/PermaLink,guid,e684a9fb-352f-4ac1-ac5e-e98c017cfc2a.aspx</pingback:target>
      <dc:creator>BJWEBER@UWM.EDU (ADMIN)</dc:creator>
      <wfw:comment>http://www.531.sba.uwm.edu/740/bjweber/740Blog/CommentView,guid,e684a9fb-352f-4ac1-ac5e-e98c017cfc2a.aspx</wfw:comment>
      <wfw:commentRss>http://www.531.sba.uwm.edu/740/bjweber/740Blog/SyndicationService.asmx/GetEntryCommentsRss?guid=e684a9fb-352f-4ac1-ac5e-e98c017cfc2a</wfw:commentRss>
      <slash:comments>1</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
      Has anyone tried to download the Visual Studio 2005 Professional Edition CD1 and CD2? 
      If so were you successful?  I've downloaded the two and have burned them to CD
      but I do not know how to go about opening them?  It still is just the .iso file
      on the CD's.  Any ideas anyone?
   </p>
        <img width="0" height="0" src="http://www.531.sba.uwm.edu/740/bjweber/740Blog/aggbug.ashx?id=e684a9fb-352f-4ac1-ac5e-e98c017cfc2a" />
      </body>
      <title>Visual Studio</title>
      <guid>http://www.531.sba.uwm.edu/740/bjweber/740Blog/PermaLink,guid,e684a9fb-352f-4ac1-ac5e-e98c017cfc2a.aspx</guid>
      <link>http://www.531.sba.uwm.edu/740/bjweber/740Blog/PermaLink,guid,e684a9fb-352f-4ac1-ac5e-e98c017cfc2a.aspx</link>
      <pubDate>Sun, 03 Feb 2008 23:13:26 GMT</pubDate>
      <description>&lt;p&gt;
   Has anyone tried to download the Visual Studio 2005 Professional Edition CD1 and CD2?&amp;nbsp;
   If so were you successful?&amp;nbsp; I've downloaded the two and have burned them to CD
   but I do not know how to go about opening them?&amp;nbsp; It still is just the .iso file
   on the CD's.&amp;nbsp; Any ideas anyone?
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.531.sba.uwm.edu/740/bjweber/740Blog/aggbug.ashx?id=e684a9fb-352f-4ac1-ac5e-e98c017cfc2a" /&gt;</description>
      <comments>http://www.531.sba.uwm.edu/740/bjweber/740Blog/CommentView,guid,e684a9fb-352f-4ac1-ac5e-e98c017cfc2a.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://www.531.sba.uwm.edu/740/bjweber/740Blog/Trackback.aspx?guid=e6664fa6-747a-466b-a74f-49989a464bb6</trackback:ping>
      <pingback:server>http://www.531.sba.uwm.edu/740/bjweber/740Blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.531.sba.uwm.edu/740/bjweber/740Blog/PermaLink,guid,e6664fa6-747a-466b-a74f-49989a464bb6.aspx</pingback:target>
      <dc:creator>BJWEBER@UWM.EDU (ADMIN)</dc:creator>
      <wfw:comment>http://www.531.sba.uwm.edu/740/bjweber/740Blog/CommentView,guid,e6664fa6-747a-466b-a74f-49989a464bb6.aspx</wfw:comment>
      <wfw:commentRss>http://www.531.sba.uwm.edu/740/bjweber/740Blog/SyndicationService.asmx/GetEntryCommentsRss?guid=e6664fa6-747a-466b-a74f-49989a464bb6</wfw:commentRss>
      <slash:comments>1</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
      I'm trying to download the 90-day trial Visual Studio and I am having trouble. 
      I downloaded the Visual Studio 2005 but then it asks what program I should run this
      with.  Are there other components to download also?   
   </p>
        <img width="0" height="0" src="http://www.531.sba.uwm.edu/740/bjweber/740Blog/aggbug.ashx?id=e6664fa6-747a-466b-a74f-49989a464bb6" />
      </body>
      <title>Visual Studio</title>
      <guid>http://www.531.sba.uwm.edu/740/bjweber/740Blog/PermaLink,guid,e6664fa6-747a-466b-a74f-49989a464bb6.aspx</guid>
      <link>http://www.531.sba.uwm.edu/740/bjweber/740Blog/PermaLink,guid,e6664fa6-747a-466b-a74f-49989a464bb6.aspx</link>
      <pubDate>Sat, 02 Feb 2008 17:46:28 GMT</pubDate>
      <description>&lt;p&gt;
   I'm trying to download&amp;nbsp;the 90-day trial Visual Studio and I am having trouble.&amp;nbsp;
   I downloaded the Visual Studio 2005 but then it asks what program I should run this
   with.&amp;nbsp; Are there&amp;nbsp;other components to download also?&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.531.sba.uwm.edu/740/bjweber/740Blog/aggbug.ashx?id=e6664fa6-747a-466b-a74f-49989a464bb6" /&gt;</description>
      <comments>http://www.531.sba.uwm.edu/740/bjweber/740Blog/CommentView,guid,e6664fa6-747a-466b-a74f-49989a464bb6.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://www.531.sba.uwm.edu/740/bjweber/740Blog/Trackback.aspx?guid=fb667b6b-7232-4145-b636-cb8a2c387ba6</trackback:ping>
      <pingback:server>http://www.531.sba.uwm.edu/740/bjweber/740Blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.531.sba.uwm.edu/740/bjweber/740Blog/PermaLink,guid,fb667b6b-7232-4145-b636-cb8a2c387ba6.aspx</pingback:target>
      <dc:creator>BJWEBER@UWM.EDU (ADMIN)</dc:creator>
      <wfw:comment>http://www.531.sba.uwm.edu/740/bjweber/740Blog/CommentView,guid,fb667b6b-7232-4145-b636-cb8a2c387ba6.aspx</wfw:comment>
      <wfw:commentRss>http://www.531.sba.uwm.edu/740/bjweber/740Blog/SyndicationService.asmx/GetEntryCommentsRss?guid=fb667b6b-7232-4145-b636-cb8a2c387ba6</wfw:commentRss>
      <slash:comments>2</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
      Tom,
   </p>
        <p>
      If you go to the website they sent us, log in and click on Software.  If you
      click on the dropdown instead of clicking on the of the icons below the dropdown,
      it gives you the option to select Visual Studio 2005 Professional Edition CD1
      and Visual Studio 2005 Professional Edition CD2.  These are able to be downloaded
      to your computer for free.  I have downloaded them but still can't figure out
      how to run the program!
   </p>
        <p>
      Bobbie Jo
   </p>
        <img width="0" height="0" src="http://www.531.sba.uwm.edu/740/bjweber/740Blog/aggbug.ashx?id=fb667b6b-7232-4145-b636-cb8a2c387ba6" />
      </body>
      <title>Visual Studio CD Download</title>
      <guid>http://www.531.sba.uwm.edu/740/bjweber/740Blog/PermaLink,guid,fb667b6b-7232-4145-b636-cb8a2c387ba6.aspx</guid>
      <link>http://www.531.sba.uwm.edu/740/bjweber/740Blog/PermaLink,guid,fb667b6b-7232-4145-b636-cb8a2c387ba6.aspx</link>
      <pubDate>Sun, 04 Feb 2007 01:55:42 GMT</pubDate>
      <description>&lt;p&gt;
   Tom,
&lt;/p&gt;
&lt;p&gt;
   If you go to the website they sent us, log in and click on Software.&amp;nbsp; If you
   click on the dropdown instead of clicking on the of the icons below the dropdown,
   it gives you the option to select&amp;nbsp;Visual Studio 2005 Professional Edition CD1
   and Visual Studio 2005 Professional Edition CD2.&amp;nbsp; These are able to be downloaded
   to your computer for free.&amp;nbsp; I have downloaded them but still can't figure out
   how to run the program!
&lt;/p&gt;
&lt;p&gt;
   Bobbie Jo
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.531.sba.uwm.edu/740/bjweber/740Blog/aggbug.ashx?id=fb667b6b-7232-4145-b636-cb8a2c387ba6" /&gt;</description>
      <comments>http://www.531.sba.uwm.edu/740/bjweber/740Blog/CommentView,guid,fb667b6b-7232-4145-b636-cb8a2c387ba6.aspx</comments>
    </item>
  </channel>
</rss>