Additional Paragraphs in our Research Project MS word 2003 & 2007

[INTRODUCTION]Discuss why you proposed to study this topic.

The reason why we want to study this topic is because, we computer users make use of word processors most of the time, now that there is a newer version of the MS word 2003, we want to know if the latest version can go beyond the capabilities of  MS word 2003 and also if it is more reliable and easier to handle for users whether they are IT proficient or not. With this study we can help the public and give them information that would assist them to decide whether to upgrade to a newer version or not, which implies saving their time and money.

 

 

 

Transaction Code on our Project

<cfif IsDefined(’Session.PERSONID’)>
<h2>Transaction</h2>
<form name="s" method="get"  action="transaction.cfm#" >
    <table width="308" border="1">

          <tr>
            <td width="128">Receipt Number </td>
            <td width="164"><input type="text" name="or"/></td>
          </tr>
        <tr>
            <td width="128">Transacty </td>
            <td width="164"><input type="text" name="transacty"/></td>
          </tr>
        <tr>
            <td width="128">Transaction type </td>
            <td width="164"><select name = "transtype">
            <option value = ‘IN’>IN</option>
            <option value = ‘OUT’>OUT</option>
            </select></td>
          </tr>
       
        <tr>
            <td width="128">&nbsp; </td>
            <td width="164"><input type="submit" name="gg" value="Submit" /></td>
          </tr>
        </form>
    </table>
<div id="result"></div>
<cfelse>
<cflocation url = "login.cfm" addtoken="no">
</cfif>

ICE MAN at Philippines

champion Chuck Liddell has probably seen it all when it comes to fan adulation. Well, at least until he arrived in the Philippines with UFC owner Lorenzo Fertitta on Sunday and saw 4,000 fans waiting to see his open workout at the Mall of Asia in Pasay City.

“I was really surprised,” said the ‘Iceman’ of the reception he received at the third largest shopping mall in the world. “It was kinda shocking how many people actually showed up to watch me work out for an hour. It’s crazy. I didn’t expect it to be that big here. I thought it was a new market for us.”

You may think the Philippines is a new market for the UFC - and technically it is - but with the organization’s relationship with the ABS-CBN network and nationwide media coverage, it has taken over the country in a way that has even stunned Fertitta.

“We’ve always had high ambitions and high expectations for what we’re doing with growing the UFC, but it’s kind of cool now to see it actually happening and unfolding right before our eyes,” said Fertitta, who is on the last leg of a trip that has seen him spread the UFC gospel in the United Kingdom, Dublin, France, Germany, and now the Philippines, over the last week. “I think to some extent we’ve underestimated ourselves over the past couple of years. If you go to a lot of these countries, we’re very well known.”

Fertitta first got a taste of the UFC’s international potential during a trip with Liddell and UFC President Dana White to Ibiza, an island off the coast of Spain, in 2005.

“People knew Chuck when he was walking down the street, and that was before we were on TV,” said Fertitta.

Nothing could have prepared him for Sunday’s reception though, as some fans waited up to three hours to see the mixed martial arts icon.

“Chuck is a rock star over here,” he said. “He walks in the hotel and there are people all over him, and then we ended up doing a public training session and over 4,000 people showed up at the Mall of Asia just to see him. It was very interesting, even at times a little bit scary because there were so many people there.”

“I talked to bunch of people there, but it was really hard because if I got too close to the line, people started piling over security,” added Liddell. “It was an interesting thing, how fanatical the fans are. But it’s great having the fans behind you, and that they understand that this is a sport and not having that negative look at it. It’s always good to have people appreciate you for what you do and the things you’ve done.”

Even a task as mundane as checking into their hotel turned into a big event.

“When we came to the hotel, we checked in about 6:30 in the morning and there were about 20 photographers waiting for us. Then we held a press conference at nine and there were multiple TV stations and reporters. It’s beyond the imagination. They have a full day of press for us tomorrow, and I’ve got to be honest, I knew that we were growing internationally, but I don’t think I really had an appreciation for the amount of momentum we truly have until I came over here and saw it for myself.”

A key part of the UFC’s success in the Philippines can be traced to the aforementioned relationship with the ABS-CBN network.

“This happens to be one of the best partnerships we have, with ABS-CBN, the largest media company in the Philippines,” said Fertitta. “They have really gotten behind us and we’re the number one rated program on their sports network, so it’s carried over very well and the UFC brand is very strong here. We’re talking

document.write(’
to them about the possibility of bringing a live event to Manila as part of our international expansion.”

A show in the Philippines, the home of boxing superstar and national icon Manny Pacquiao, is a no-brainer for the diehard fight fans of the nation, whom Fertitta describes as having “a deep understanding of the sport.” Summer of 2009 is being projected for the UFC’s initial foray into Southeast Asia, with the plan not only to showcase the company’s established stars, but to also give the event a local flavor.

“It will be a combination of bringing over some of our stars and then hopefully having some local Filipino fighters, and maybe bringing in some of the guys from Japan and South Korea,” said Fertitta, who believes the UFC’s success in the country can be boiled down to a couple key elements.

“First of all, based upon our popularity and success in the United States, that helps in a lot of these international markets,” he said. “Entertainment is one of the number one exports that we have in America, and a lot of these countries like to follow what is big and what is happening in the US, and we’ve built a strong brand. But beyond that, I think it has to do with the fact that we have a great partner in ABS-CBN. We’re broadcast in every home, they’re really getting behind it and really promoting it. I think that makes a big difference.”

It also doesn’t hurt that as Fertitta points out, “We’re probably more mainstream in the Philippines than we are in the US.”

The UFC owner says all this at 6pm local time on Sunday, and as he looks to the television, what does he see? UFC programming. It’s a long way from the dark ages of mixed martial arts, and Fertitta only sees bright days ahead – not only in the United States, but around the world.

“The plans are all coming into place,” said Fertitta. “We’re going to be moving the show around the world, and we’re creating the UFC global footprint.”

Coldfusion (CFM) - Updating to Database using Stored Procedure + session

<cfif IsDefined(’Session.PERSONID’)>
<cfif IsDefined(’FORM.Submit’)>
    <cfquery datasource="webfillers">
    
            EXEC sp_update_product @PRODUCTID = #URL.productID#,
            @DESCRIPTIONS = ‘#FORM.descriptions#’,
            @BRANDNAME = ‘#FORM.brandname#’,
            @BRANDMODEL = ‘#FORM.brandmodel#’,
            @STOCK = #FORM.stock#,
            @UNITCOST = #FORM.unitcost#,
            @UNITPRICE = #FORM.unitprice#,
            @PRODUCTCATEGID = #FORM.category#
            
        
    </cfquery>
    <cfoutput>
        <ul>
          <li><strong>#FORM.brandmodel#, #FORM.brandname# has been successfully updated….</strong></li>
      </ul>
    </cfoutput>
</cfif>
<h2>Update Product</h2>
<cfquery name="qProd" datasource="webfillers">
        EXEC sp_get_productID @productID = #URL.productID#
</cfquery>

<form method="post">
    <cfoutput>
    <table width="308" border="1">
            <input type="hidden" name="productID" value="#qProd.PRODUCTID#"/>
          <tr>
          <td width="128"><div align="right">Product ID : </div></td>        
        <td width="164"><input type="text" name="productID" value = "#qProd.PRODUCTID#" disabled/></td>
 
          </tr>
          <tr>
            <td><div align="right">Description : </div></td>
            <td><input type="text" name="descriptions" value="#qProd.DESCRIPTIONS#"/></td>
          </tr>
          <tr>
            <td><div align="right">Brand Name : </div></td>
            <td><input type="text" name="brandname" value="#qProd.BRANDNAME#"/></td>
          </tr>
          <tr>
            <td><div align="right">Brand Model : </div></td>
            <td><input type="text" name="brandmodel" value="#qProd.BRANDMODEL#"/></td>
          </tr>
          <tr>
            <td><div align="right">Stock : </div></td>
            <td><input type="text" name="stock" value="#qProd.STOCK#"/></td>
          </tr>
                  <tr>
            <td><div align="right">Unit Cost : </div></td>
            <td><input type="text" name="unitcost" value="#qProd.UNITCOST#"/></td>
          </tr>
                  <tr>
            <td><div align="right">Unit Price : </div></td>
            <td><input type="text" name="unitprice" value="#qProd.UNITPRICE#"/></td>
          </tr>
          <tr>
            <td><div align="right">Category : </div></td>
            <td>
                <select name="category">
                    <cfquery name="qCateg" datasource="webfillers">
                    sp_show_category
                    </cfquery>
                    <option value="#qCateg.PRODUCTCATEGID#">#URL.CATEGORYNAME#</option>
                    <cfloop query="qCateg">
                    <option value="#qCateg.PRODUCTCATEGID#">#qCateg.CATEGORY#</option>
                    </cfloop>
                </select>
            </td>
          </tr>
           <tr>
            <td>&nbsp;</td>
            <td><input type="submit" name="Submit"/></td>
          </tr>
    </table>
    </cfoutput>
    <a href="searchproduct.cfm">Search Product</a>
</form>
<cfelse>
<cflocation url = "login.cfm" addtoken="no">
</cfif>

Coldfusion (CFM) - Searching A Product on our Project

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Advanced Search</title>
</head>
<body>
<h2>Advanced Search Form</h2>
<form method="post">
    Enter keyword : <input type="text" name="keyword" /> <br />
    Search in : <input type="radio" name="name" value="BRANDNAME" checked="checked" /> Brandname
                <input type="radio" name="name" value="BRANDMODEL" /> Brandmodel <br />

  Category <select name = "productcategID">
  <cfquery name = "qCateg" datasource="webfillers">
  EXEC sp_show_category
  </cfquery>
  <option value="">Any Category</option>
  <cfoutput query = "qCateg">
  <option value = ‘#qCateg.CATEGORY#’>#qCateg.CATEGORY#</option>
  </cfoutput></select>
  <br /><br />
   <input type="submit" value="Search" name="Search" />        
</form>
<cfif IsDefined(’FORM.Search’)>
    <cfquery name = "qProd" datasource="webfillers">
    
      EXEC sp_get_product @name = ‘#FORM.name#’, @keyword = ‘#FORM.keyword#’,
    @productcategID = ‘#FORM.productcategID#’

    </cfquery>
    <table>
    <tr>
        <td width="18" bgcolor="#0066FF">&nbsp;</td>
        <td width="138" bgcolor="#0066FF"><div align="center"><strong>PRODUCTID</strong></div></td>
        <td width="204" bgcolor="#0066FF"><div align="center"><strong>DESCRIPTIONS</strong></div></td>
      <td width="279" bgcolor="#0066FF"><div align="center"><strong>CATEGORY</strong></div></td>
      <td width="96" bgcolor="#0066FF"><div align="center"><strong>BRANDNAME</strong></div></td>
      <td width="129" bgcolor="#0066FF"><div align="center"><strong>BRANDMODEL</strong></div></td>
      <td width="129" bgcolor="#0066FF"><div align="center"><strong>STOCK</strong></div></td>
      <td width="129" bgcolor="#0066FF"><div align="center"><strong>UNITCOST</strong></div></td>
      <td width="129" bgcolor="#0066FF"><div align="center"><strong>UNITPRICE</strong></div></td>
      <td width="129" bgcolor="#0066FF"><div align="center"><strong>ACTION</strong></div></td>
    </tr>
    <cfset i = 1>
    <cfloop query="qProd">
    <cfoutput>
    <tr>
        <td>#i#</td>
        <td><div align="center">#qProd.PRODUCTID#</div></td>
        <td>#qProd.DESCRIPTIONS#</td>
        <td>#qProd.CATEGORYNAME#</td>
        <td>#qProd.BRANDNAME#</td>
        <td>#qProd.BRANDMODEL#</td>
        <td>#qProd.STOCK#</td>
        <td>#qProd.UNITCOST#</td>
        <td>#qProd.UNITPRICE#</td>
        <td><a href="updateproduct.cfm?productID=#qProd.PRODUCTID#&categoryname=#qProd.CATEGORYNAME#">Update</a>
        <a href="deleteproduct.cfm?productID=#qProd.PRODUCTID#">Delete</a></td>
    
    </tr>
    </cfoutput>
    <cfset i = i + 1>
    </cfloop>
    </table>
</cfif>
</body>
</html>

Add Product Code on our Project

<title>Add Product</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">

<body>

<cfif IsDefined(’FORM.submit’)>
<cfquery  datasource="webfillers">
INSERT TB_PRODUCTS(DESCRIPTIONS, PRODUCTCATEGID, BRANDNAME, BRANDMODEL, STOCK, UNITCOST, UNITPRICE)
VALUES(’#FORM.descriptions#’, #FORM.productcategID#, ‘#FORM.brandname#’ , ‘#FORM.brandmodel#’ , #FORM.stock# , #FORM.unitcost#, #FORM.unitprice#)
</cfquery>
<cfoutput>#FORM.brandname# Has Been Successfully Added….</cfoutput>
</cfif>

<form name = "addproduct" method="post" action="">
  <table width="47%" height="264" border="1">
    <tr>
      <td>Description</td>
      <td><input name="descriptions" type="text"></td>
    </tr>
    <tr>
        <tr>
      <td>Product Category ID</td>
       <td> <select name = "productcategID">
  <cfquery name = "qCateg" datasource="webfillers">
  SELECT PRODUCTCATEGID, CATEGORY
  From TB_PROD_CATEGORIES
  ORDER BY CATEGORY
  </cfquery>
  <cfoutput query = "qCateg">
  <option value = ‘#qCateg.PRODUCTCATEGID#’>#qCateg.CATEGORY#</option>
  </cfoutput></select>  </td>
    </tr>
    <tr>
      <td>Brand Name</td>
      <td><input name="brandname" type="text"></td>
    </tr>
    <tr>
      <td>Brand Model</td>
      <td><input name="brandmodel" type="text"></td>
    </tr>
    <tr>
      <td>Stock</td>
      <td><input name="stock" type="text"></td>
    </tr>
    <tr>
      <td>Unit Cost</td>
      <td><input name="unitcost" type="text"></td>
    </tr>
    <tr>
      <td>Unit Price</td>
      <td><input name="unitprice" type="text"></td>
    </tr>
    <tr>
      <td>&nbsp;</td>
      <td><input name="submit" type="submit" value="Submit"></td>
    </tr>
  </table>
</form>

</body>
</html>
</body>
</html>

Urbandub

Hi! I would like to introduce you Urbandub. They apparently are one of the best musicians/band in the Phil. What can I say, I’m a big fan. I’ve listened to their songs since they’ve been playing underground. Well, I wont let you wait no more.

Urbandub

Urbandub is a Filipino rock band from Cebu, Philippines. Since its inception in 2000, the band’s line-up has consisted of Gabby Alipe (lead vocals, guitar), John Dinopol (lead guitar, vocals), Lalay Lim (bass, vocals). The band’s current drummer is JanJan Mendoza, who has been with the band since 2003. Since their emergence, they have come out with a completely infectious and original blend of dynamic song structures and hurricane-force rhythms that made them a sure thing to break out of the pack, but even the band could not have imagined how far.

 

urbandub

My top pick from their album would be the - EVIDENCE

This song really rocks! The music video and the lyrics is pretty awesome. You can watch this on youtube

Time has a way of healing, or so they say
So why am I still left here cryin’?
Caught in these ways of emotions as people stare
I find there’s no real place for me to hide
Well I’ve been trying in vain
Was only fooling myself
With each passing day
The pain still stays the same
Caught you in the arms of another
I’ve been dying everyday since then
Caught you in the arms of another
I’ve found out about you
Caught you in the arms of another
I’ve been dying everyday since then
Caught you in the arms of another
I’ve found out about you
What more is it that you need
Right now clearly it’s not me
With every minute that I gave to you
The punches that I took from you
Why was there no warning love?
What more is it that you need
Right now clearly it’s not me
Despite everything I did for you
Excused if i’m surprised
was the moment that I found out that we were through
Caught you in the arms of another
I’ve been dying everyday since then
Caught you in the arms of another
I’ve found out about you
Caught you in the arms of another
I’ve been dying everyday since then
Caught you in the arms of another
I’ve found out about you
When everything seemed alright
You turn and break my heart
Didn’t I deserve your love?
It kills me inside to think of his arms
Wrapped around you now,
Is he a better lover than I?
Well I’ve been trying in vain
Was only fooling myself
With each passing day
The pain still stays the same
Caught you in the arms of another
I’ve been dying everyday since then
Caught you in the arms of another
I’ve found out about you
Caught you in the arms of another
I’ve found out about you
Caught you in the arms of another
I’ve found out about you
Caught you in the arms of another
I’ve found out about you
Caught you in the arms of another
I’ve found out about you
Time has a way of healing, or so they say
So why am I still left here?

 

I don’t want Cancer!

The best way to protect yourself is to cover up your skin.

In the summer wear:

-A loose, white cotton shirt with long you cool while keeping your skin safe.

-long, light-colored cotton pants.

-A big floppy hat in a light color. This can be a fabulous fashoin statement and it will keep the sun off the top of your head, ears, neck, and nose.

 

In the winter: When your out playing in the snow, make sure you cover your face with a scarf to block reflected UV rays or use a sunscreen and wear sunglasses if it’s sunny or warm.

If you absolutely MUST show some skin, then slop on sunblock lotion. Grab a lotion with an SPF more than 15 and cober every spot! PABA-free will give you the best skin protection. Don’t forget your ears. If you wear sandals, smear it all over the tops of your feet - you don’t want lobster toes!

RRS on our Research

The following are taken from the study of micsrosft entitled Developer Overview of the User Interface for the 2007 Microsoft Office System (March, 2006)

In the design of the 2007 release, the Microsoft Office User Experience team reevaluated the way our customers interact with Microsoft Office programs. Informed by vast quantities of usability data and taking into account recent advancements in hardware and software, the 2007 Microsoft Office release delivers the most significant update to the user interface (UI) in more than a decade. The result is the Microsoft Office Fluent UI system, a comprehensive set of controls that work together to help users be more productive and efficient while using Microsoft Office programs to create documents that are more effective.

This document describes the underlying philosophy and the goals that directed the design of the Microsoft Office Fluent UI system in the 2007 Office release. It presents an overview of the individual system components—including graphics of major UI features—and describes how these components deliver an enhanced user experience that enables users to more easily find and use the rich functionality of Microsoft Office programs in their daily work.

 

The 2007 release of the Microsoft Office system introduces an extensibility model for the Ribbon that allows you to integrate seamlessly and add functionality to Microsoft Office applications. The new model supports adding functionality to existing Ribbon tabs, adding new tabs, groups, and controls to the Ribbon, and replacing the existing Ribbon.

The extensibility model introduces a consistent way to modify the UI and persist the modifications across the core Microsoft Office programs. The 2007 release of the Microsoft Office system exposes richer controls, such as big buttons and split buttons, so that you can communicate priority and hierarchy in a manner consistent with the UI system. It is also easier for you to reuse built-in graphics and images when creating controls. An updated identification scheme for UI elements makes it much easier to reference built in controls and to localize add-ins and custom solutions.

This section presents the fundamental principles of results-oriented design. These principles guided and informed the design of the Office Fluent UI. To ensure a consistent user experience and to empower workers to create better documents by efficiently accessing the core strengths of Microsoft Office tools, when building solutions based on the Microsoft Office system, you should embrace the following principles:

·         Focus. The user’s attention should be on the content, not on the UI. The results-oriented approach allows the user to perform sophisticated formatting and advanced tasks without diverting their attention from the document or content on which they are working.

·         Context. The contextualization of as many commands and properties as possible is crucial. Increase the user’s sense of mastery by reducing the number of choices presented at any given time. Reduce the command space by eliminating redundant or seldom-used features.

·         Efficiency. Focus on efficiency rather than scope. Users must be able to find the most powerful features for the task quickly and easily. A small gain in the scope of features used is not worth a significant loss in the efficient use of the features.

·         Consistency. A results-oriented user experience is best accomplished by clearly providing intuitive ways to solve different problems. When applying tools to tasks, flexible consistency is desirable; homogeneity is not.

·         Permanence. Clearly defined access to tools ensures better usability. Ambiguity is reduced by establishing permanent homes for groups of features. A consistent-location UI is favored over a "smart" UI.

·         Predictability. The Microsoft Office applications offer a long and rich legacy of acceptance, upon which you can build successful UI innovation. Straight-forward design ensures continued user comfort and maximized results. Favor the predictable over the novel.

The 2007 Office release introduces an innovative model that developers can use to enhance the user experience. A new extensibility model enables you to add new functionality to Microsoft Office applications and to expose entry points in the Office Fluent UI in a more integrated way, and with a much larger control set, than in any previous release. The Office Fluent UI addresses many issues developers have identified with the current Command Bars object model, making it easier to accomplish common developer scenarios.

For existing solutions, the 2007 release ensures compatibility by revealing UI changes made to the legacy menu and toolbar set. This ensures that third-party add-ins and custom solutions developed for previous releases will work in the 2007 release without requiring modification.

The following sections address compatibility of existing Microsoft Office application customizations and Office-based solutions with the 2007 release, and they provide guidance for developing solutions using the Office Fluent UI system. Sources of detailed information about the extensibility model for the 2007 release of the Microsoft Office system are listed under Additional Resources.

 

Conclusion

The Office Fluent UI offers both business users and organizations an opportunity to take information worker productivity to a new level. As users achieve a new level of mastery over Microsoft Office programs, the UI in the 2007 release of the Microsoft Office system helps them harness their full power to create rich and stunning documents. For developers who build solutions based on the Microsoft Office system, the flexibility and ease of customization of the Office Fluent UI, along with the improved functional organization, helps create a powerful but responsive user experience, enabling both beginners and advanced users to achieve sophisticated results with much less effort.

The introduction of a new, XML-based development model, optimized for common developer scenarios and applied consistently across the core Microsoft Office applications, streamlines the development of rich solutions and helps ensure that custom solutions can realize the benefits of results-oriented UI design.

 

Slam Dunk

How far would you go to impress the girl of your dreams? Would you foolishly sign up for the varsity basketball team even though you knew absolutely nothing about the sport? If so, then you and Hanamichi Sakuragi would get along just fine.

Hanamichi
 

Hanamichi Sakuragi, a freshman at Shohoku High is the hero of Slam Dunk, the unforgettable sports-comedy manga from Japanese creator Inoue Takehiko. Hanamichi has been rejected by 50! girl, the last one passing him up for a basketball plater named Oda. This gives Hanamichi a strong animosity twards the sport. But when Hanamichi meets Haruko Akagi, a sweet girl who actually pays attencion to him, he learns that Haruko is crazy about basketball! Determided to get it right this time, he decides to try our for the school team despite tha fact that he’s more accustomed by butting heads than playing clan. To the surprise of everyone including himself, Hanamichi seems to be a natural at the game, beating even the captain of the team in a furious match.

 

If you enjoyed the anime, you’ll definitely want to collect the manga, since this is where it all began! There are many differences between the two, and it’s interesting to see how things change from one to another. So hurry and check out the funny foul-ups of rookie Hanamichi, the self-proclaimed genius, along with the rest of the Shohoku High basketball team as they strive to become basketball champions!

 

If you want to read the whole story, here’s the link : http://www.onemanga.com/Slam_Dunk/