Software Information



Articles Main Page | Main Site Home Page





Text Ad's by TextAdPro.com
Make Money For Real doing nothing - 3 ways to profit - EZmatic.com.

ThatsNeato.com - That's Neato!

Home Business Money Making - How to make money on the net.

2coolhair.com - Over 5,000 Hairstyles Pitcures.



Corel WordPerfect 7 Macro Programming Example


Case study:
A secretary using Corel WordPerfect 7 is often required to carry out calculations and insert the values into invoices or other documents.

She does this by entering calculations into either a real calculator and transcribing the answer, or the Microsoft calculator and copying then pasting the result into the document. Doing this affects her productivity as this process increases the time taken to complete work and wastes time in correcting inevitable errors that occur.

Proposal:
A secretary has asked for software to be written which enables her to do calculations and, if required, convert standard numbers to values of currency as a simple operation within Corel WordPerfect 7.

Feasibility study:
Having analysed the problem outlined above this operation is ideally suited for automation. A solution based on a macro would be advisable to the existing methods in place. The saving in time and increased productivity makes the proposed system a practical and effective alternative to the current manual system.

User Requirements:
The user needs to enter calculations into a new or existing document at different stages throughout the creation of the text. The user also requires that the macro does not change the formatting of the document in any way.

The user requires the ability to select the following options for formatting the output:1) Displaying a sum in standard numbers or currency.
2) Displaying a sum using a minus sign or brackets to show negative figures.
3) Optional use of commas where required.

Specification:
Applications software to be used: Corel WordPerfect 7.

Purposes of using macro: Calculate the sum of any numerical data specified by the user.

Data to be embedded in macro: Any numerical data entered by the user.

Use of macro: Accelerate processing of data therefore increasing productivity, by cutting out the additional keystrokes needed to run the calculation manually.

Solution:
A macro that uses the table feature in Corel WordPerfect 7 to carry out the required mathematical operations then insert the result in place of a calculation entered as a formula. This solution will take between one to three seconds to complete any operation, running on a correctly configured and fully operational system of the description specified below.

Design of the system
Taking into consideration the needs of the user and the resources available in the execution of the macro in this environment. I have derived an algorithm that meets all the requirements outlined above. The specification for the stand alone programmable system needed is as follows:

Typical configurations required:
16 Megabytes of RAM.
Microsoft compatible mouse.
Corel WordPerfect 7.
The macro file.
155 MHZ Pentium processor.
1 Gbyte hard disk capacity or Windows 98.
Microsoft compatible keyboard.
DOS 6.0 or better.
Windows 95

Method of input:
Keyboard, numerical characters or key pad.Capture method: Transfer to clipboard.Input data:Any numerical data entered by the user.Output data:The sum of a calculation in numerical form.

Method of output:To VDU at the point of input data.

Using this specification I have written an algorithm that makes effective use of the resources available in Corel WordPerfect 7.

Algorithm for applications software macro:
[1] Check for input.
[a] Exit if none found.
[2] Select formula.
[3] Create a one cell table.
[4] Insert an equals sign before the formula.
[5] Calculate the table.
[6] Verify that result is not invade.
[a] Exit if error found (=5+6e).
[7] Request user input (formatting).
[a] Exit at user request (presses cancel).
[b] Revert operations & clean up.
[8] Format the output:
[a] Standard numeric.
[b] Currency.
[c] Use commas.
[d] Use negative format.
[8] Delete the table leaving the solution in place of the originally entered formula.Software development

The solution to the algorithm stated above in the form of a macro that meets all the requirements identified in the analysis is as follows:

Macro script:
// Macro: Automath.wcm// Written in: Perfect Script// Purpose: Calculate the sum of numerical data // Compiled: 5/09/04// © 1998 Michael Hart//=================================================// Identify compiler, application to useApplication (A1; "WordPerfect"; Default; "UK")

If (?DocBlank) Condition executed if document blank // Go to subroutine oninput go(oninput) endif

// Select data block left of insertion pointSelectwordprevious ()// Condition executed if no data foundIf (?SelectedText="") // Go to subroutine error go(error) endif // Convert selected data block to a tableTableconvertfrom (type: tabularcolumns!)// Set default table styleTableCellNumberFormat (FormatType: General!)// Turn off Update associated charts optionTableupdateassociatedcharts (state: off!)// Insert an equal sign left of data blockType (text: "=") Tablecalculate () // Calculate formula values in the table

// If formula syntax is invalid go to elseIf(?CellFormula) // Display menu dialog box DialogShow(5001;"WordPerfect") // Condition executed if user presses cancel If(MacroDialogResult = 2) // Revert the last operations Undo(1) // Move insertion point to end of data bock PosWordNext () // Go to subroutine end Go(end) Endif

// Condition executed if currency is definedIf(currency) // Specify format data as currency [£00.00] TableCellNumberFormat (FormatType: Currency!) TableCellNumberNegativeNumber (NegDisplayType: Minus!)Endif

// Condition executed if negatives definedIf(negatives) // Specify negative format [(9)] Tablecellnumbernegativenumber (negdisplaytype: parentheses!)Endif

// Specify commas are not usedTableCellNumberUseCommas (State: No!)

// Condition executed if commas definedIf(commas) // Specify format data using commas [2,000] TableCellNumberUseCommas (State: Yes!)Endif

// Select the table. Tableselecton (selectionmode: table!)// Select all cells in the current tableSelecttable ()// Delete table convert contents to documentTabledeletetable (delwhat: converttotabs!)// Move insertion point to end of data bockPosWordNext ()// Go to subroutine end Go(end)// If formula syntax is invalid thenElseendif

// Identify the subroutine errorLabel(error) // Display error message box in event of invalid formula MessageBox (; "AUTOMATH UNABLE TO COMPLY";"Invalid data exists in formula. Sequence terminated."; IconStop!)// Delete table convert contents to documentTabledeletetable (delwhat: converttotabs!)// Delete character right of the insertion pointDeleteCharNext () // Go to subroutine endGo(end)

// Identify subroutine oninput.Label(oninput) // Display error message box in event of blank documentMessageBox (; "AUTOMATH UNABLE TO COMPLY"; "No input provided! Sequence terminated."; IconStop!)

// Identify the subroutine endLabel (end) // End macro Quit //====================================================

Implementation:
Preliminary diagnostics:After running the macro on a system of the same specification to that of the system it is intended to be implemented, the preliminary diagnostic tests show the operational time to remain within the range predicted during the analysis.

The following tests were performed to confirm that the macro meets all of the requirements under real conditions.

Tests to be applied:Test # one of basic macro:1) Find an individual that knows nothing about this macro.

2) Observation of this individual doing the following:

[a] Easily using the instructions.

[b] Load Corel WordPerfect 7.

[c] Enter valid numerical data.

[d] Access the macro file.

[e] Run the macro.

[f] Repeat steps [c] to [e] using all possible combinations of the options.Ideally, the individual should be able to do the above with no assistance.

3) Observation of the macro running as intended in all conditions.

Basic test conditions:Valid Input: Output: Invalid Input: output: [a] 5-5 0 [a][nothing] Error[b] 2+2 4 [b] qwerty Error[c] 2-4 -2 [c] 2gh+32 Error[d] 100*200 20000 [d] !"£$% Error[e] 50/1 50 [e] 1+4-1$ Error[f] 1+2-3*4/5 0.6 [f] one*two Error[g] 12345 £12,345.00 [g] a1-d3 Error (??)

Test # two of debugged version:

1) Release the software on the LINK bulletin board system (run by Legalease) for evaluation by it's users. (the LINK is a special network for lawyers who often need maths functions in written work).

2) Collect commentary from the people willing to help.

3) Investigate and implement any changes or revisions necessary.

Maintenance:
Commas appear in values of currency regardless of the settings.This bug has been successfully corrected.

I am the website administrator of the Wandle industrial museum (http://www.wandle.org). Established in 1983 by local people to ensure that the history of the valley was no longer neglected but enhanced awareness its heritage for the use and benefits of the community.


MORE RESOURCES:
table border=0 width= valign=top cellpadding=2 cellspacing=7trtd valign=top class=jfont style=font-size:85%;font-family:arial,sans-serifbrdiv style=padding-top:0.8em;img alt= height=1 width=1/divdiv class=lha href=http://news.google.com/news/url?sa=Tct=us/0-0fd=Rurl=http://money.cnn.com/news/newsfeeds/articles/marketwire/0464119.htmcid=1287754652ei=zudlSZ_IEIzK8ASG-NDyBAusg=AFQjCNGSnri-HH5lpjskZ3FfJtbpTCMscgAcresso bSoftware/b Finalizes Intraware Acquisition/abrfont size=-1font color=#6f6f6fCNNMoney.comnbsp;-/font nobr15 hours ago/nobr/fontbrfont size=-1Acresso bSoftware/b (Acresso), a privately-held company and an investment of private equity firm Thoma Bravo, LLC, announced today it has completed the b.../b/font/div/font/td/tr/table

table border=0 width= valign=top cellpadding=2 cellspacing=7trtd width=80 align=center valign=topfont style=font-size:85%;font-family:arial,sans-serifa href=http://news.google.com/news/url?sa=Tct=us/1i-0fd=Rurl=http://www.macnn.com/articles/09/01/06/autodesk.adds.to.mac.line/cid=1287577876ei=zudlSZ_IEIzK8ASG-NDyBAusg=AFQjCNHKXhvkvqzzZ4y6XoFipdiV2jRYsQimg src=http://nt3.ggpht.com/news?imgefp=A5lWpKXoKvQJimgurl=images.macnn.com/macnn/news/0901/autodeskstitcher.jpg width=80 height=55 alt= border=1brfont size=-2MacNN/font/a/font/tdtd valign=top class=jfont style=font-size:85%;font-family:arial,sans-serifbrdiv style=padding-top:0.8em;img alt= height=1 width=1/divdiv class=lha href=http://news.google.com/news/url?sa=Tct=us/1-0fd=Rurl=http://www.macworld.com/article/138006/autodesk.htmlcid=1287577876ei=zudlSZ_IEIzK8ASG-NDyBAusg=AFQjCNEaCLSjy3O2LehiIi_dkmJvLcxtqQAutodesk offers three new Mac creative bsoftware/b tools/abrfont size=-1font color=#6f6f6fMacworld,nbsp;CAnbsp;-/font nobr15 hours ago/nobr/fontbrfont size=-1by Peter Cohen, Macworld.com Autodesk, which is not participating in Macworld Expo this week, introduced three new creative bsoftware/b tools for the Mac b.../b/fontbrfont size=-1a href=http://news.google.com/news/url?sa=Tct=us/1-1fd=Rurl=http://www.macnn.com/articles/09/01/06/autodesk.adds.to.mac.line/cid=1287577876ei=zudlSZ_IEIzK8ASG-NDyBAusg=AFQjCNHKXhvkvqzzZ4y6XoFipdiV2jRYsQAutodesk releases Toxik, Mudbox, Stitcher for Mac/a font size=-1 color=#6f6f6fnobrMacNN/nobr/font/fontbrfont size=-1a href=http://news.google.com/news/url?sa=Tct=us/1-2fd=Rurl=http://www.digitalartsonline.co.uk/news/index.cfm%3FNewsID%3D11955cid=1287577876ei=zudlSZ_IEIzK8ASG-NDyBAusg=AFQjCNHCb8mRg6wFTW7BXqoUXG-MA_b2-wAutodesk adds Mac versions of Toxik, Mudbox and ImageModeler 2009/a font size=-1 color=#6f6f6fnobrDigital Arts Online/nobr/font/fontbrfont size=-1a href=http://news.google.com/news/url?sa=Tct=us/1-3fd=Rurl=http://www.prnewswire.com/cgi-bin/stories.pl%3FACCT%3D109%26STORY%3D/www/story/01-06-2009/0004950083%26EDATE%3Dcid=1287577876ei=zudlSZ_IEIzK8ASG-NDyBAusg=AFQjCNGK25B9K8C2YRQDemsqUZC2kQHnZgAutodesk Announces Three New bSoftware/b Releases for the Mac/a font size=-1 color=#6f6f6fnobrPR Newswire (press release)/nobr/font/fontbrfont size=-1 class=pa href=http://news.google.com/news/url?sa=Tct=us/1-4fd=Rurl=http://www.itnewsonline.com/showprnstory.php%3Fstoryid%3D28265cid=1287577876ei=zudlSZ_IEIzK8ASG-NDyBAusg=AFQjCNEEyGgf7ohhHs1YXix6DnjiFUwK_QnobrIT News Online/nobr/a/fontbr/font class=p size=-1a class=p href=http://news.google.com/news?sourceid=navclientie=ISO-8859-1rls=GGLG,GGLG:2005-22,GGLG:enncl=1287577876hl=ennobrall 35 news articles/nobr/a/font/div/font/td/tr/table

table border=0 width= valign=top cellpadding=2 cellspacing=7trtd width=80 align=center valign=topfont style=font-size:85%;font-family:arial,sans-serifa href=http://news.google.com/news/url?sa=Tct=us/2i-0fd=Rurl=http://www.letsgomobile.org/en/4283/sony-ericsson-c510/cid=1287793225ei=zudlSZ_IEIzK8ASG-NDyBAusg=AFQjCNGs7Ysfe_7wAmKh_Tkk5YT5tWf9Uwimg src=http://nt1.ggpht.com/news?imgefp=zcR7VLbl4xQJimgurl=www.letsgomobile.org/images/news/sonyericsson/sony-ericsson-c510.jpg width=71 height=80 alt= border=1brfont size=-2LetsGoMobile (press release)/font/a/font/tdtd valign=top class=jfont style=font-size:85%;font-family:arial,sans-serifbrdiv style=padding-top:0.8em;img alt= height=1 width=1/divdiv class=lha href=http://news.google.com/news/url?sa=Tct=us/2-0fd=Rurl=http://www.cnet.com/8301-19167_1-10135629-100.htmlcid=1287793225ei=zudlSZ_IEIzK8ASG-NDyBAusg=AFQjCNHKwnDqFmnHVgWu-vsMSbQ6HCc0tQSony Ericsson to release bsoftware/b upgrade for C905/abrfont size=-1font color=#6f6f6fCNET News,nbsp;CAnbsp;-/font nobr10 hours ago/nobr/fontbrfont size=-1Starting in mid-February, C905 owners can download a bsoftware/b update from Sony Ericsson#39;s Web site that will bring new features to the camera phone. b.../b/fontbrfont size=-1a href=http://news.google.com/news/url?sa=Tct=us/2-1fd=Rurl=http://www.slashphone.com/sony-ericsson-to-provide-software-updates-for-c905-8-megapixel-camera-phone-in-february-084025cid=1287793225ei=zudlSZ_IEIzK8ASG-NDyBAusg=AFQjCNGIotn92KOv8R9reQZC7d4V7lHCVASony Ericsson to Provide bSoftware/b Updates for C905 8 Megapixel b.../b/a font size=-1 color=#6f6f6fnobrSlashPhone/nobr/font/fontbrfont class=p size=-1a class=p href=http://news.google.com/news?sourceid=navclientie=ISO-8859-1rls=GGLG,GGLG:2005-22,GGLG:enncl=1287793225hl=ennobrall 36 news articles/nobr/a/font/div/font/td/tr/table

table border=0 width= valign=top cellpadding=2 cellspacing=7trtd width=80 align=center valign=topfont style=font-size:85%;font-family:arial,sans-serifa href=http://news.google.com/news/url?sa=Tct=us/3i-0fd=Rurl=http://www.guardian.co.uk/technology/2009/jan/08/macworld-keynote-apple-phil-schillercid=1287230517ei=zudlSZ_IEIzK8ASG-NDyBAusg=AFQjCNGQxuihn-KY9059fsHk4O7ZymUXewimg src=http://nt3.ggpht.com/news?imgefp=P9U8bCqscVoJimgurl=static.guim.co.uk/sys-images/Technology/Pix/pictures/2009/1/7/1231333547951/Macworld-keynot-Philip-Sc-001.jpg width=80 height=48 alt= border=1brfont size=-2guardian.co.uk/font/a/font/tdtd valign=top class=jfont style=font-size:85%;font-family:arial,sans-serifbrdiv style=padding-top:0.8em;img alt= height=1 width=1/divdiv class=lha href=http://news.google.com/news/url?sa=Tct=us/3-0fd=Rurl=http://www.sfgate.com/cgi-bin/article.cgi%3Ff%3D/c/a/2009/01/07/BUL6154I2V.DTLcid=1287230517ei=zudlSZ_IEIzK8ASG-NDyBAusg=AFQjCNFDtfOh73ume5_k0Xcb_xME3glNwgApple unveils bsoftware/b updates, new laptop/abrfont size=-1font color=#6f6f6fSan Francisco Chronicle,nbsp; USAnbsp;-/font nobrJan 7, 2009/nobr/fontbrfont size=-1The presentation included updates to the iLife and iWork bsoftware/b suites, a new 17-inch MacBook Pro with an 8-hour battery and a new digital rights b.../b/fontbrfont size=-1a href=http://news.google.com/news/url?sa=Tct=us/3-1fd=Rurl=http://www.youtube.com/watch%3Fv%3DOT3eybWjJaAcid=1287230517ei=zudlSZ_IEIzK8ASG-NDyBAusg=AFQjCNECPfk6Aw6RScxAS6etUWwn-X52gAVideo: Steve Jobs Weight Loss Due to Hormone Imbalance/a font size=-1 color=#6f6f6fnobrAssociatedPress/nobr/fontobject width=448 height=356param name=movie value=http://www.youtube.com/v/OT3eybWjJaA/paramparam name=wmode value=transparent/paramembed src=http://www.youtube.com/v/OT3eybWjJaAtype=application/x-shockwave-flashwmode=transparentwidth=448height=356/embed/objectbr/fontfont size=-1a href=http://news.google.com/news/url?sa=Tct=us/3-2fd=Rurl=http://www.pcmag.com/article2/0,2817,2337930,00.aspcid=1287230517ei=zudlSZ_IEIzK8ASG-NDyBAusg=AFQjCNH5cVfcs1zt5bCuTdqL1lZN7XihqQApple#39;s Macworld Surprise Is the bSoftware/b/a font size=-1 color=#6f6f6fnobrPC Magazine/nobr/font/fontbrfont size=-1a href=http://news.google.com/news/url?sa=Tct=us/3-3fd=Rurl=http://www.google.com/hostednews/ap/article/ALeqM5i3ReXnAcLX_j_MTvXbpQ3v63azvQD95HPRPG0cid=1287230517ei=zudlSZ_IEIzK8ASG-NDyBAusg=AFQjCNHE7_fqJKGGF9K54KjzSA_Sbw52tAApple updates Mac bsoftware/b in trade show finale/a font size=-1 color=#6f6f6fnobrThe Associated Press/nobr/font/fontbrfont size=-1 class=pa href=http://news.google.com/news/url?sa=Tct=us/3-4fd=Rurl=http://uk.reuters.com/article/rbssTechMediaTelecomNews/idUKN0642390020090106cid=1287230517ei=zudlSZ_IEIzK8ASG-NDyBAusg=AFQjCNFqMeSK8gdBHANPVOBvhsD5-T24HgnobrReuters/nobr/anbsp;- a href=http://news.google.com/news/url?sa=Tct=us/3-5fd=Rurl=http://www.pcworld.com/businesscenter/article/156465/apple_says_goodbye_to_macworld_without_jobs.htmlcid=1287230517ei=zudlSZ_IEIzK8ASG-NDyBAusg=AFQjCNEk_1D812BNsEAiqgMZhJJX7BPf1AnobrPC World/nobr/a/fontbr/font class=p size=-1a class=p href=http://news.google.com/news?sourceid=navclientie=ISO-8859-1rls=GGLG,GGLG:2005-22,GGLG:enncl=1287230517hl=ennobrall 2,437 news articles/nobr/a/font/div/font/td/tr/table

table border=0 width= valign=top cellpadding=2 cellspacing=7trtd width=80 align=center valign=topfont style=font-size:85%;font-family:arial,sans-serifa href=http://news.google.com/news/url?sa=Tct=us/4i-0fd=Rurl=http://news.cnet.com/8301-1001_3-10134162-92.htmlcid=1287678141ei=zudlSZ_IEIzK8ASG-NDyBAusg=AFQjCNG9X4hvrmQ2sKddDfD6sv3epZIcVwimg src=http://nt1.ggpht.com/news?imgefp=fZzjuH5HtPcJimgurl=news.cnet.com/i/bto/20090107/Cloud.jpg width=80 height=60 alt= border=1brfont size=-2CNET News/font/a/font/tdtd valign=top class=jfont style=font-size:85%;font-family:arial,sans-serifbrdiv style=padding-top:0.8em;img alt= height=1 width=1/divdiv class=lha href=http://news.google.com/news/url?sa=Tct=us/4-0fd=Rurl=http://www.informationweek.com/news/services/saas/showArticle.jhtml%3FarticleID%3D212701237%26subSection%3DAll%2BStoriescid=1287678141ei=zudlSZ_IEIzK8ASG-NDyBAusg=AFQjCNGvUjHyI79e9kc2JVc_q7dWnG1ujwSun Acquires Cloud Computing bSoftware/b Supplier, Q-Layer/abrfont size=-1font color=#6f6f6fInformationWeek,nbsp;NYnbsp;-/font nobr7 hours ago/nobr/fontbrfont size=-1The Belgian company makes data center modeling and management bsoftware/b that helps companies organize their computing resources as a cloud computing layer. b.../b/fontbrfont size=-1a href=http://news.google.com/news/url?sa=Tct=us/4-1fd=Rurl=http://www.eweek.com/c/a/Cloud-Computing/Sun-Acquires-Cloud-Computing-Automator-Qlayer/cid=1287678141ei=zudlSZ_IEIzK8ASG-NDyBAusg=AFQjCNFEJsEVVwCFZ6rc9U8IKUqH251SFASun Acquires Cloud Computing Automator Q-layer/a font size=-1 color=#6f6f6fnobreWeek/nobr/font/fontbrfont size=-1a href=http://news.google.com/news/url?sa=Tct=us/4-2fd=Rurl=http://www.pcworld.com/businesscenter/article/156533/sun_buys_cloudcomputing_vendor_qlayer.htmlcid=1287678141ei=zudlSZ_IEIzK8ASG-NDyBAusg=AFQjCNH_6yGZeEMB05_CM_mFo3tYEI2zWQSun Buys Cloud-computing Vendor Q-layer/a font size=-1 color=#6f6f6fnobrPC World/nobr/font/fontbrfont size=-1a href=http://news.google.com/news/url?sa=Tct=us/4-3fd=Rurl=http://blogs.zdnet.com/BTL/%3Fp%3D11385cid=1287678141ei=zudlSZ_IEIzK8ASG-NDyBAusg=AFQjCNEFWw4c1rEDwcFkRFQ2st91-spK9gSun acquires cloud computing vendor/a font size=-1 color=#6f6f6fnobrZDNet/nobr/font/fontbrfont size=-1 class=pa href=http://news.google.com/news/url?sa=Tct=us/4-4fd=Rurl=http://www.thestreet.com/story/10456494/1/sun-comes-up-on-belgian-acquisition.html%3Fcm_ven%3DGOOGLEFIcid=1287678141ei=zudlSZ_IEIzK8ASG-NDyBAusg=AFQjCNHYvkhTIMPfSAZCBmJteTRmk8GurQnobrTheStreet.com/nobr/anbsp;- a href=http://news.google.com/news/url?sa=Tct=us/4-5fd=Rurl=http://storage.itproportal.com/articles/2009/01/08/sun-sees-future-cloud-computing-acquires-q-layercid=1287678141ei=zudlSZ_IEIzK8ASG-NDyBAusg=AFQjCNGRGNnjZPSPLuQW8kbqAmlhOMXhaQnobrITProPortal/nobr/a/fontbr/font class=p size=-1a class=p href=http://news.google.com/news?sourceid=navclientie=ISO-8859-1rls=GGLG,GGLG:2005-22,GGLG:enncl=1287678141hl=ennobrall 89 news articles/nobr/a/font/div/font/td/tr/table

table border=0 width= valign=top cellpadding=2 cellspacing=7trtd width=80 align=center valign=topfont style=font-size:85%;font-family:arial,sans-serifa href=http://news.google.com/news/url?sa=Tct=us/5i-0fd=Rurl=http://www.earthtimes.org/articles/show/ibm-lotus-delivers-new-social,670395.shtmlcid=1287483123ei=zudlSZ_IEIzK8ASG-NDyBAusg=AFQjCNERgl9nffRahYSnc7VJpli5wsST3Qimg src=http://nt2.ggpht.com/news?imgefp=8jg_bualWyoJimgurl=www.earthtimes.org/newsimage/MOD-494563_1.6.09.1.Photo.IBM.Mac.Laptop_with_Screencap.jpg width=80 height=60 alt= border=1brfont size=-2Earthtimes (press release)/font/a/font/tdtd valign=top class=jfont style=font-size:85%;font-family:arial,sans-serifbrdiv style=padding-top:0.8em;img alt= height=1 width=1/divdiv class=lha href=http://news.google.com/news/url?sa=Tct=us/5-0fd=Rurl=http://money.cnn.com/news/newsfeeds/articles/marketwire/0463823.htmcid=1287483123ei=zudlSZ_IEIzK8ASG-NDyBAusg=AFQjCNFM6PNKgRT7jnhLfELJgiLA9tllBAIBM Lotus Delivers New quot;Socialquot; Notes and Free Symphony bSoftware/b b.../b/abrfont size=-1font color=#6f6f6fCNNMoney.comnbsp;-/font nobrJan 6, 2009/nobr/fontbrfont size=-1At Macworld, IBM (NYSE: IBM) today announced the availability of Lotus Notes 8.5 collaboration bsoftware/b with social computing features for all Mac OS X b.../b/fontbrfont size=-1a href=http://news.google.com/news/url?sa=Tct=us/5-1fd=Rurl=http://www.computerworld.com/action/article.do%3Fcommand%3DviewArticleBasic%26taxonomyName%3Ddesktop_applications%26articleId%3D9124898%26taxonomyId%3D86%26intsrc%3Dkc_topcid=1287483123ei=zudlSZ_IEIzK8ASG-NDyBAusg=AFQjCNF3k-YSR3GKIiETQj3BSCkdbbXd_wMacworld: IBM finalizing free Symphony office suite for Macs/a font size=-1 color=#6f6f6fnobrComputerworld/nobr/font/fontbrfont size=-1a href=http://news.google.com/news/url?sa=Tct=us/5-2fd=Rurl=http://www.macnn.com/articles/09/01/06/lotus.notes.85.announced/cid=1287483123ei=zudlSZ_IEIzK8ASG-NDyBAusg=AFQjCNGXSM5w40RFaWLOm7ADU8suxETHRgLotus Notes 8.5 ships, free IBM Symphony suite coming/a font size=-1 color=#6f6f6fnobrMacNN/nobr/font/fontbrfont size=-1a href=http://news.google.com/news/url?sa=Tct=us/5-3fd=Rurl=http://blogs.zdnet.com/forrester/%3Fp%3D129cid=1287483123ei=zudlSZ_IEIzK8ASG-NDyBAusg=AFQjCNH22DS_AC2TxDW9t1se7Dr_48tHigWebEx goes mobile on iPhone; Notes 8.5 ships on Macs/a font size=-1 color=#6f6f6fnobrZDNet Blogs/nobr/font/fontbrfont size=-1 class=pa href=http://news.google.com/news/url?sa=Tct=us/5-4fd=Rurl=http://www.vnunet.com/vnunet/news/2233365/ibm-unveils-lotus-notescid=1287483123ei=zudlSZ_IEIzK8ASG-NDyBAusg=AFQjCNHswM8_EuFYcs9q9mrg8XGC05k0bAnobrVNUNet.com/nobr/anbsp;- a href=http://news.google.com/news/url?sa=Tct=us/5-5fd=Rurl=http://www.eweek.com/c/a/Messaging-and-Collaboration/IBM-Lotus-Notes-85-For-Apple-Mac-OS-X-Supports-Google-Yahoo-Calendars/cid=1287483123ei=zudlSZ_IEIzK8ASG-NDyBAusg=AFQjCNFcC3diL5KJkH4foOXD39OzT84W5gnobreWeek/nobr/a/fontbr/font class=p size=-1a class=p href=http://news.google.com/news?sourceid=navclientie=ISO-8859-1rls=GGLG,GGLG:2005-22,GGLG:enncl=1287483123hl=ennobrall 55 news articles/nobr/a/font/div/font/td/tr/table

table border=0 width= valign=top cellpadding=2 cellspacing=7trtd width=80 align=center valign=topfont style=font-size:85%;font-family:arial,sans-serifa href=http://news.google.com/news/url?sa=Tct=us/6i-0fd=Rurl=http://tvnz.co.nz/business-news/apple-change-itunes-but-fails-make-buzz-2435767cid=1287867772ei=zudlSZ_IEIzK8ASG-NDyBAusg=AFQjCNECuaUF5xqJLa_ufGYb6wc2cn5HWAimg src=http://nt2.ggpht.com/news?imgefp=SpuPKPrP26QJimgurl=images.tvnz.co.nz/tvnz_images/news2009/technology-communication/Apple_Inc_Schiller_1.jpg width=80 height=45 alt= border=1brfont size=-2TVNZ/font/a/font/tdtd valign=top class=jfont style=font-size:85%;font-family:arial,sans-serifbrdiv style=padding-top:0.8em;img alt= height=1 width=1/divdiv class=lha href=http://news.google.com/news/url?sa=Tct=us/6-0fd=Rurl=http://www.latimes.com/business/la-fi-itunes7-2009jan07,1,1364714.storycid=1287867772ei=zudlSZ_IEIzK8ASG-NDyBAusg=AFQjCNHRRCJ2MSIlqOXMEeso4HNkC0p1dQITunes embraces 3-tier pricing, will remove anti-copy bsoftware/b/abrfont size=-1font color=#6f6f6fLos Angeles Times,nbsp;CAnbsp;-/font nobrJan 6, 2009/nobr/fontbrfont size=-1Apple also updated much of its bsoftware/b. The latest version of iPhoto scans for individual faces so computer users can label photos of friends or family, b.../b/fontbrfont size=-1a href=http://news.google.com/news/url?sa=Tct=us/6-1fd=Rurl=http://www.usatoday.com/tech/products/2009-01-06-macworld-software_N.htmcid=1287867772ei=zudlSZ_IEIzK8ASG-NDyBAusg=AFQjCNHqLAHkICNCqgwsw3k1_lkSQCZuoAMacworld goes for the soft sell with budget-minded bsoftware/b/a font size=-1 color=#6f6f6fnobrUSA Today/nobr/font/fontbrfont size=-1a href=http://news.google.com/news/url?sa=Tct=us/6-2fd=Rurl=http://www.tourdates.co.uk/news/13076-Apple-removes-protection-software-from-songscid=1287867772ei=zudlSZ_IEIzK8ASG-NDyBAusg=AFQjCNGyFWOB05Moe_oZezyQ7kc3Hl5k4AApple removes protection bsoftware/b from songs/a font size=-1 color=#6f6f6fnobrTourDates.Co.Uk/nobr/font/fontbrfont size=-1a href=http://news.google.com/news/url?sa=Tct=us/6-3fd=Rurl=http://www.bloomberg.com/apps/news%3Fpid%3D20601087%26sid%3Da7qukrjDRyeI%26refer%3Dhomecid=1287867772ei=zudlSZ_IEIzK8ASG-NDyBAusg=AFQjCNG2By4MGzzBexDHta2Sm_rCiZqZfQApple Offers All ITunes Songs Without Copy Protection/a font size=-1 color=#6f6f6fnobrBloomberg/nobr/font/fontbrfont size=-1 class=pa href=http://news.google.com/news/url?sa=Tct=us/6-4fd=Rurl=http://www.shinyshiny.tv/2009/01/apple_lets_loos.htmlcid=1287867772ei=zudlSZ_IEIzK8ASG-NDyBAusg=AFQjCNEYJE-ALlL12cpi_-yXC7thOrvcFQnobrShiny Shiny/nobr/anbsp;- a href=http://news.google.com/news/url?sa=Tct=us/6-5fd=Rurl=http://www.eontarionow.com/technology/2009/01/07/macworld-a-new-3-tier-pricing-model-for-itunes/cid=1287867772ei=zudlSZ_IEIzK8ASG-NDyBAusg=AFQjCNHNsxB2oiJ-ptjKgsds4O54_cCs6gnobrOntario Now/nobr/a/fontbr/font class=p size=-1a class=p href=http://news.google.com/news?sourceid=navclientie=ISO-8859-1rls=GGLG,GGLG:2005-22,GGLG:enncl=1287867772hl=ennobrall 1,268 news articles/nobr/a/font/div/font/td/tr/table

table border=0 width= valign=top cellpadding=2 cellspacing=7trtd valign=top class=jfont style=font-size:85%;font-family:arial,sans-serifbrdiv style=padding-top:0.8em;img alt= height=1 width=1/divdiv class=lha href=http://news.google.com/news/url?sa=Tct=us/7-0fd=Rurl=http://www.msnbc.msn.com/id/28537651/cid=1287765257ei=zudlSZ_IEIzK8ASG-NDyBAusg=AFQjCNExrP81kef_VkHJA-vaQnvTTqakdwBonaire bSoftware/b Solutions Announces EMPOWER/BI Business b.../b/abrfont size=-1font color=#6f6f6fMSNBCnbsp;-/font nobr13 hours ago/nobr/fontbrfont size=-1BOSTON, MA - Bonaire bSoftware/b Solutions, LLC today announced its new business intelligence product -- EMPOWER/BI. quot;Bonaire#39;s EMPOWER/BI, designed b.../b/fontbrfont size=-1a href=http://news.google.com/news/url?sa=Tct=us/7-1fd=Rurl=http://www.ibtimes.com/prnews/20090107/bonaire-software-solutions.htmcid=1287765257ei=zudlSZ_IEIzK8ASG-NDyBAusg=AFQjCNF4Txi2JwRRxlzhkoBB0BGO_xpo7QBonaire bSoftware/b Solutions Announces EMPOWER/BI Business b.../b/a font size=-1 color=#6f6f6fnobrInternational Business Times/nobr/font/fontbrfont class=p size=-1a class=p href=http://news.google.com/news?sourceid=navclientie=ISO-8859-1rls=GGLG,GGLG:2005-22,GGLG:enncl=1287765257hl=ennobrall 7 news articles/nobr/a/font/div/font/td/tr/table

table border=0 width= valign=top cellpadding=2 cellspacing=7trtd width=80 align=center valign=topfont style=font-size:85%;font-family:arial,sans-serifa href=http://news.google.com/news/url?sa=Tct=us/8i-0fd=Rurl=http://www.download.com/8301-2007_4-10135868-12.htmlcid=1287230744ei=zudlSZ_IEIzK8ASG-NDyBAusg=AFQjCNH_Ay7YtB_7shvKbOvZosUdxCbgkgimg src=http://nt1.ggpht.com/news?imgefp=MaxJ-mDBPGYJimgurl=www.download.com/i/bto/20090107/FilemakerButtons_DD_01072009.JPG width=80 height=30 alt= border=1brfont size=-2CNET News/font/a/font/tdtd valign=top class=jfont style=font-size:85%;font-family:arial,sans-serifbrdiv style=padding-top:0.8em;img alt= height=1 width=1/divdiv class=lha href=http://news.google.com/news/url?sa=Tct=us/8-0fd=Rurl=http://www.eweek.com/c/a/Database/FileMaker-Banks-on-Ease-of-Use-Flashy-Interface-With-New-Database-Software/cid=1287230744ei=zudlSZ_IEIzK8ASG-NDyBAusg=AFQjCNGWvMk86w_z-QVpFPI9-tPFktoNqQFileMaker Banks on Ease of Use, Flashy Interface With New Database b.../b/abrfont size=-1font color=#6f6f6feWeek,nbsp; NYnbsp;-/font nobr14 hours ago/nobr/fontbrfont size=-1By Brian Prince FileMaker released version 10 of its database bsoftware/b this week. FileMaker hopes a redesigned interface and a number of feature b.../b/fontbrfont size=-1a href=http://news.google.com/news/url?sa=Tct=us/8-1fd=Rurl=http://www.informationweek.com/news/software/database_apps/showArticle.jhtml%3FarticleID%3D212700684%26subSection%3DNewscid=1287230744ei=zudlSZ_IEIzK8ASG-NDyBAusg=AFQjCNHsPwHX1WfRXvcjS-VjU-d8wAqf-QFileMaker Pro 10 Gets New Look/a font size=-1 color=#6f6f6fnobrInformationWeek/nobr/font/fontbrfont class=p size=-1a class=p href=http://news.google.com/news?sourceid=navclientie=ISO-8859-1rls=GGLG,GGLG:2005-22,GGLG:enncl=1287230744hl=ennobrall 66 news articles/nobr/a/font/div/font/td/tr/table

table border=0 width= valign=top cellpadding=2 cellspacing=7trtd width=80 align=center valign=topfont style=font-size:85%;font-family:arial,sans-serifa href=http://news.google.com/news/url?sa=Tct=us/9i-0fd=Rurl=http://news.zdnet.co.uk/itmanagement/0,1000000308,39588626,00.htmcid=1287575114ei=zudlSZ_IEIzK8ASG-NDyBAusg=AFQjCNF86YDPPEzm2jQBlG8CcrJ6lklhAAimg src=http://nt0.ggpht.com/news?imgefp=fImeh10QSFoJimgurl=news.zdnet.co.uk/i/z5/illo/nw/lead_graphics/headshots/184x138/tod_nielsen.jpg width=80 height=60 alt= border=1brfont size=-2ZDNet UK/font/a/font/tdtd valign=top class=jfont style=font-size:85%;font-family:arial,sans-serifbrdiv style=padding-top:0.8em;img alt= height=1 width=1/divdiv class=lha href=http://news.google.com/news/url?sa=Tct=us/9-0fd=Rurl=http://www.bizjournals.com/austin/stories/2009/01/05/daily32.htmlcid=1287575114ei=zudlSZ_IEIzK8ASG-NDyBAusg=AFQjCNH1hmJW4CFyxFlI1ruCg9Yo88T_DwBorland laying off 130 employees; CEO resigns/abrfont size=-1font color=#6f6f6fBizjournals.com,nbsp;NCnbsp;-/font nobr15 hours ago/nobr/fontbrfont size=-1Borland bSoftware/b Corp. is cutting 130 employees from its ranks as it shuffles executives and lowers its revenue expectations for the most recent quarter. b.../b/fontbrfont size=-1a href=http://news.google.com/news/url?sa=Tct=us/9-1fd=Rurl=http://www.pcworld.com/businesscenter/article/156485/vmware_taps_borland_ceo_for_chief_operating_officer.htmlcid=1287575114ei=zudlSZ_IEIzK8ASG-NDyBAusg=AFQjCNFY4TqkFSxNZJbeipBv8OKYrqCMZQVMware Taps Borland CEO for Chief Operating Officer/a font size=-1 color=#6f6f6fnobrPC World/nobr/font/fontbrfont size=-1a href=http://news.google.com/news/url?sa=Tct=us/9-2fd=Rurl=http://www.rttnews.com/ArticleView.aspx%3FId%3D817474%26SMap%3D1cid=1287575114ei=zudlSZ_IEIzK8ASG-NDyBAusg=AFQjCNE2GZxnGOacQZ2yPQFMbqFDqPI04QBorland bSoftware/b reports preliminary Q4 financial results b.../b/a font size=-1 color=#6f6f6fnobrRTT News/nobr/font/fontbrfont size=-1a href=http://news.google.com/news/url?sa=Tct=us/9-3fd=Rurl=http://www.marketwatch.com/news/story/VMWare-names-new-chief-operating/story.aspx%3Fguid%3D%257BBDA5EC0C-3F99-4184-A01B-215F14597911%257Dcid=1287575114ei=zudlSZ_IEIzK8ASG-NDyBAusg=AFQjCNEDQ-8KjT8Zs8XNpYXutlnfW5F0ywVMWare names new chief operating officer/a font size=-1 color=#6f6f6fnobrMarketWatch/nobr/font/fontbrfont size=-1 class=pa href=http://news.google.com/news/url?sa=Tct=us/9-4fd=Rurl=http://www.infoworld.com/article/09/01/07/borland_ceo_named_coo_at_vmware_1.htmlcid=1287575114ei=zudlSZ_IEIzK8ASG-NDyBAusg=AFQjCNFnrVMEZrVK7n1EX5TU3gA4xYrtTgnobrInfoWorld/nobr/anbsp;- a href=http://news.google.com/news/url?sa=Tct=us/9-5fd=Rurl=http://www.bizjournals.com/sanjose/stories/2009/01/05/daily29.htmlcid=1287575114ei=zudlSZ_IEIzK8ASG-NDyBAusg=AFQjCNHjCmpcbZjo0Laq1k4T8OVs23vmagnobrBizjournals.com/nobr/a/fontbr/font class=p size=-1a class=p href=http://news.google.com/news?sourceid=navclientie=ISO-8859-1rls=GGLG,GGLG:2005-22,GGLG:enncl=1287575114hl=ennobrall 86 news articles/nobr/a/font/div/font/td/tr/table

Software - Google News




Articles Home Page | Site Map | Main Site Home Page
GETsonic | TrafficFish | WildThingsDesigns | NeatoDomains.com | Games | Ken J Wagner | iNetcome

© 2008