Saturday, September 25, 2010

Whirlpool eventually favored by the United States and Thailand was designated as the optimum board b


Whirlpool to finally having a good harvest increase several times, the United States and Thailand removed the board last Friday, said Ripplewood's previous recommendation, the Whirlpool bid as the optimum bid.

To last Wednesday, Whirlpool has bid three times to reach 21 dollars per share to acquire the stock by half cash half way. In contrast, Ripplewood bid 14 dollars per share, it becomes relatively shabby. The Whirlpool with Mattel and Ripplewood's breakup fee 40 million U.S. dollars have been ready. Industry analyst firm Morgan Keegan analyst Laura Qian Pan (LauraChampine) said: "Whirlpool's offer is enough to win the United States and Thailand, a week, Whirlpool and Maytag will officially hand, Ripplewood will be out."

This year in May, the United States and Thailand's Board of Directors has recommended that shareholders accept the Ripplewood offer, and decided on August 19 at the company headquarters in Newton, Iowa, on whether to accept Ripplewood's offer to vote.

Thursday, September 16, 2010

MacTel impact WinTel


MacTel = Mac + Intel, is impacting the well-known WinTel.

Old Bill introduced Windows 3.0 in 1990, the moment, WinTel experiencing pain after 5 years was finally stable. After 20 years in the years, there has been no real threat to the strength of its foundation.

January 10, Jobs announced the Mac World last two marked "Intel Core Duo", a Mac running Mac OS machine. This is the first time in history, some manufacturers have adopted Intel processors and not dare to launch Windows-running PC. Such a cool thing, except no one dared to Jobs.

MacTel WinTel What will the impact?

The fact that playback
Week, the world body to get a test prototype, the evaluation has published their own report and comments.

According to Macworld test, iMac Core Duo comprehensive than iMac G5, running iMove rate of 1.84 times for the iMac G5, close to Steve Jobs claimed: "speed up the past two times." Nikkei BP testers wrote: "start very fast. From the power to burst open," Qiang "was about 5 seconds, then after about 20 seconds to display the progress bar. And then, instantly showing the desktop," "HD smooth playback of video was amazing. "

In order to run in the iMac Core Duo iMac G5 version of the application code execution, Apple supplied Rosetta emulator. According to Macworld test, iTunes iMac G5 speed under 66%, Photoshop is 55%. Jobs said this at the press conference, general users to use enough.

Nikkei BP reporters, iMac Core Duo does not have Intel Inside, Centrino Duo and Intel ViiV standards such as the identity. Box bears a completely Apple-style "Intel Core Duo" logo. "Apple design" is impressively printed on the iMac Core Duo.

iMac Core Duo announcement after the heated discussion in the industry to run Windows in its possibilities. Many tests show that the iMac Core Duo can not run Windows XP. Technical experts, iMac Core Duo for UEFI (United Extensible Firmware Interface, Unified Extensible Firmware Interface) block the operating system other than Mac OS. Experts point out that as long as the change UEFI firmware, you can run other operating systems.

Macnn reported: "Microsoft said it is working with Apple co-operation, will Virtual PC to Intel Mac platform." Microsoft Virtual PC is a virtual environment based on Intel processors, can run multiple operating systems on it, Intel pledged to support processor-level virtual technology. The Apple director, said this: "We did not take any action to prevent or encourage this." One thing is clear, iMac Core Duo has the potential to run multiple operating systems.

Finally, the computer lab experts evaluating the world, Intel Mac machine's price and the same configuration of PC and laptop machines rather, not expensive. According to research firm iSupply analysis of 1,299 U.S. dollars iMac Core Duo manufacturing cost 898 U.S. dollars.

Three shocks
iMac Core Duo has been placed in front of the user, who can only face all the WinTel, fight.

Wintel's vulgar temperament and different, MacTel is a high-level artistic temperament and style of products. Throughout the industry, manufacturers rely on third-manufacturing companies rely on second-rate technology, first-class manufacturers rely on Art. MacTel appearance, open the PC and notebook artistic era. In the art of the times, why should the user choose vulgar? WinTel we all will make the individual a bit technical, who art?

MacTel has the potential to run multiple operating systems. If that day comes, only the function of running Mac Mac OS, Windows and Linux, and three OS on top of rich applications. Wintel PC can run most Windows and Linux. Stronger than the 32-bit 64-bit, 2GHz stronger than 1GHz. Decimal better than large numbers, women and children to know the IT Law. Once the user understand MacTel are three kinds of OS, WinTel only two words how do?

From the cost analysis shows, MacTel considerable room for price cuts, have more room to deal with price wars. Jobs in particular, taught to play low-cost iPod games. Even the price war is immune dominant, WinTel how to do?

Although the Mac, only 4% market share, if three to five years as the iPod, like Rounds, Old Devil A point would not be surprised.

Wednesday, August 4, 2010

Dreamweaver MX 2004 from scratch


After the first few parts of the operation, our website has been illustrated, with considerable effect, but it is not enough for the website, many pages to the site to become an organic whole, each page must be passed over Links ways, and this can allow the viewer to jump between different pages.

links to pictures and text

Established for some text or image link is very convenient, as long as the need to use the mouse to select the picture or text into a link, and then in the Properties panel of the "Link" input box need to jump the target page address, or press the input box next to the folder icon to select the file jump. In addition, Dreamweaver MX 2004 also provides a window through the site to quickly link to documents.

First step is to run "Site 鈫?Manage Sites" command, and from the pop-up menu, select a good site has been created, a time to see pop up in the right side of the site management window.

The second step in the editor select text or pictures, direct dragging properties panel "Link" input box next to the circular target icon, then an arrow will appear when the arrow points to the site manager in a single file , a box appears around the file.

Monday, July 26, 2010

Visual C# 2005 Quick Start of the while statement

Use while statements can be true in a Boolean expression is subject to repeat the run a statement.
while statement syntax is as follows:
while (booleanExpression)

statement


First, the Boolean expression will be evaluated, if it is true, on the run statement, then the Boolean expression is evaluated again. If the expression is still true, to run the statement again, and again the expression is evaluated. This process will continue repeatedly until the boolean expression evaluates to false; time, while statement will exit, and from the first statement after the while continue. while statement syntax with if statements have many similarities (in fact, in addition to the two different keywords, the syntax is exactly the same):

expression must be a Boolean expression.

Boolean expression must be placed within parentheses.

If the first value, the Boolean expression is false, statement is not run.

If you want to in a while under the control of the implementation of two or more statements, you must use braces to group into a block statement.

The following while statement is written to the console the value 0 to 9:

int i = 0;
while (i != 10)
(
Console.WriteLine (i);
i++;
)

All the while statement should be terminated at some point. Novice common mistake is to forget to add a special statement, it would eventually result in a Boolean expression evaluates to false and terminate the cycle. In the example, i++; on this situation.

Note that while loop variable i controls the final number of cycles. This is a very popular representation, has the effect of the variable is sometimes called the sentinel variable (Sentinel variable).

In the following exercise, preparing to write a while loop, it is time to read from a source file line content, and write each line of a text box.

use the while statement

1. WhileStatement open Visual Studio 2005 project, which is located in My Documents folder under the Microsoft PressVisual CSharp Step by StepChapter 5WhileStatement subfolders.

2. Select "Debug" | "to start (not debugging)."

Visual Studio 2005 to build and run the Windows application. Application itself is a simple text file viewer that allows you to select a file to display its contents.

3. Click the "Open File" (Open File) button.

Then there are "Open" dialog box

4. Switch to the My Documents folder under the Microsoft PressVisual CSharp Step by Step Chapter 5WhileStatementWhileStatement subfolders.

5. Select the Form1.cs file, and then click "Open."

Form1.cs file name will be displayed in small text box, but the contents of the file does not display in the large text box. This is because we have not achieved the appropriate code to read the contents of the source file and display those in the large text box contents. The following steps will add this feature.

6. Close the form, return to Visual Studio 2005.

7. In the "Code and Text Editor" window displays the file Form1.cs code, find openFileDialog_FileOk method.

Users in the "Open" dialog box, select a file, and click "Open" button, call the method. Method is currently the subject:
string fullPathname = openFileDialog.FileName;

FileInfo src = new FileInfo (fullPathname);
filename.Text = src.Name;

/ Bin / boot / dev / etc / home / lib / lost + found / media / misc / mnt / net / opt / proc / root / sbin / selinux / srv / sys / tmp / u01 / usr / var / vmware add while loop here backup / bin / conf / data / log / maint / svn / tmp /


The first statement declares a string variable, named fullPathname, and it is initialized to openFileDialog object FileName property. The statement fullPathname initialized to "Open" dialog box, select the source file's full name (including path).

Note openFileDialog object is from the "toolbox" of selected components of an instance of the OpenFileDialog. This component provides the methods used, you can display to the user a standard Windows "Open" dialog box, allowing users to choose a file, and get selected file name and path.

Monday, July 12, 2010

Procurement into the decision-making problems faced in China

Purchasing management may be the most did not fully leverage the commercial area, but it from executives to the position of decision-making the transition will go through a long process of natural fission.

Procurement into the decision-making problems faced in China

Wen / Liu Richard

Procurement management in the financial, strategic and operational aspects of a key role to play, yes company's short-and long-term performance of the main driving force, procurement management may be China's most fully leverage Wei Ling Yu role of the business.

In the area of finance, procurement and supply management can be a company to maximize the performance of the most effective way. Procurement of materials and services for a cost of 60% of the total cost structure of a typical manufacturing enterprise, if the profit margin is 10% of sales, procurement can bring savings of 5% profit growth of 30%; However, to achieve the same results will need to increase sales 30%. In fact, the difficulties faced by procurement and supply management company the best hope in achieving a major breakthrough performance, even in the selected range of products to reduce 30-40% of the cost.

In the strategy, procurement is to obtain the export market, as well as in the international market to achieve sales and profitability a key driver of sustainable growth.

Finally, at the operational level, the procurement activities to achieve the perfect operation of the main attributed factor. Depend on the performance level of the supply base and supplier and buyer relationship, continuous innovation to provide customers with high quality products to achieve a high degree of delivery reliability, and control related budgets.

Bipolar model

The basis of sustainable development, procurement activities in the global competition plays an important role. Western world (USA, Europe) and Japanese companies have long realized the strategic importance of procurement management. However, they appeared in the issue of procurement polarization, resulting in two different procurement concept.

American / European model in this was identified as "market driven" model, its essence is dependent on the Shang in the global supply market competitiveness, many large industrial companies in the supply within the Shang Xuan Ze. Western buyers are skilled to carry out rigorous discipline based on the facts and tender, the company aims to select the most appropriate development and production requirements of the material suppliers. Very typical situation is, buyers often have regular procurement activities, challenges supply business situation, re-combination of traditional suppliers, hope the material He services procurement activities to achieve double-digit cost savings. Western buyers not hesitate to change the supply base, active use of the world economy is producing the structural advantages. The past five years, many large Western companies in China to open an international procurement center, why they want to re-supply base, using competitive cost structure with the perfect example. Of course, this can not be said price is the only selection criteria for Western companies, in fact, they are equal attention to all factors in procurement, and even more focus on quality, delivery reliability and product innovation. But it was also stated that if the cost / price have a significant breakthrough in the quality of services and products without any derogation of the case, the Western companies willing to take risks and be ready for new suppliers who bet. Buyer supplier relations with the West to maintain the appropriate distance, because they themselves do not identify this relationship is the medium-term or long-term.

Japanese companies use different purchasing patterns, known as the "relationship" model, the absolute focus on buyers and suppliers to establish long-term relationship between. According to this known as "Keiretsu" procurement methods, or sometimes in bilateral commercial reliance on a small part of the stock exchange based on the cross, the Japanese company has established a very close relationship between the supply base network. They are usually not tender, not by the adoption of new potential suppliers to challenge the practice of the existing suppliers. On the contrary, they are digging through existing suppliers to achieve the savings potential of the procurement cost. Their long-term suppliers and the manufacturing, engineering and quality departments with multi-functional team formed to continuously improve supply chain performance to achieve the purpose. In order to save costs and continuously improve product quality, these groups can be the basis for sustainable development re-engineering the procurement process.

We do not compare the merits of these two models, a number of companies are now two modes of absorption benefits of establishing a procurement organization. In some product development process and supply chain in close connection with the procurement project, the relationship between buyers and suppliers is an important factor in creating sustainable value, and more use of Japanese models and a number of suppliers with long-term partnership-type relationship. In other types of procurement activities, some of the same companies and suppliers using the practice to maintain a certain distance, when the supply market, the emergence of new attractive price point, they did not hesitate to change suppliers. In reality, success depends on the company purchasing the "static" approach of flexibility and adaptability, using various means, to apply to supply the market with different complexities and dynamics.

Puzzles tactical and strategic

In our view, the Chinese company is at the crossroads of these two concepts. One hand, they attach importance to the interaction between people, the implementation of the procurement Shique opportunism; on the other hand is the value of value of trust and relationships, which can only trust and relationship between the long-term buyer - supplier relationships established, and therefore they are ideal to include the procurement culture and in Western and Japanese models and values. But until now, China-based companies in the procurement of very small progress.

On the one hand, they are the same as the Japanese company has established the relationship between Keiretsu-type network, but do not use those established relationships with their suppliers not to work together to improve the performance of the whole supply chain, to their mutual benefit. On the other hand, often too much emphasis on business relations with suppliers have to bargain, and often regardless of quality, delivery reliability, innovation and sexual defects. The lack of world-class in China has established procurement capacity of the capital and effort is understandable, and easily explained by the following factors.

The West / Japan and China in economic growth mode differences exist

Western power production and procurement capacity development is the product of slow growth of its economy. Early 70s of last century since the first oil crisis, Western countries have suffered low GNP (gross national product) growth of the bitter, and frequently face economic recession; Japan since the 90s of last century, has stood for 15 years at least zero growth economy, and even negative growth. In these very difficult economic conditions, only in all aspects of business operations to effectively increase productivity, be possible to achieve profits. For manufacturing companies, the procurement accounts for more than 50% of the cost structure, so by the company's senior management attention, in the past 20 years, procurement has been elevated to a professional level. In China, they found that the situation is completely different.

Decades of economic isolation from the outside world, China's industrial revolution began a strong, exponential growth in the domestic market and export market demand driven by China's industrial output value of the last 10 years achieved double-digit growth year after year. China's management did not feel the pressure to improve the value of procurement management is not surprising, because these growth is not achieved through the procurement management. Currently, most management is still to maintain a growth on the primary position, the company focus is on capacity building and product utility construction, procurement activities more remain at the tactical level, rather than strategic level. Interestingly, it is in the process of the pursuit of product availability, the management of major companies in China until recently to be attention to procurement management and the procurement activities to a strategic level. In the past few years, China's economy enjoyed exponential growth and the shortage of key supply markets in many sectors of the economy have become issues of concern, and prompted senior management to procurement management activities included in the company's top agenda.

Lack of procurement of technology transfer channels

Chinese companies to the West and Japan are strong partners in learning, technology transfer over the past 15 years, the speed is unprecedented.

However, in China, the procurement is still a lack of skills, an area more. The best way to purchase technology transfer may be by Western companies to achieve the confidence of the Chinese market, and these Western companies in China's supply market, the Chinese method of managing the supply relationship is not particularly understand. They may first need to learn how to Chinese partners in the local business, rather than teaching a new procurement management.

Prompted the company "release" difficulties in procurement activities

In the West, procurement through a very difficult time to get everyone's approval, was that with the marketing, finance, engineering and manufacturing and so on an equal footing, professional buyers gradually won the trust of the majority of managers. In the West, marketing manager, purchasing advertising, IT manager for the purchase of computer ... .... Not surprisingly, in China, the company uses a dedicated professional buyers release purchase management - including abandoned supplier selection and negotiation activities - is still considerable resistance. In addition, in Chinese history, procurement was a plant manager, general manager and control the area, they established a closer supplier relationships, and continued for many years. Require companies to these procurement responsibilities to the professional buyers and thus put the risk in the company, without regard to the relationship between the advantage has been established, which is China's managers are reluctant to have taken this step because professional procurement.

Market pressure is small, inadequate technology transfer, and release associated with the procurement responsibilities of cultural communication difficulties, the result is so far neither the establishment of specialized procurement department, the management did not want to take the outstanding procurement activities as a professional gambling chips . In China, the general lack of procurement professionals create a vicious circle: the buyer is not enough skills to Zhenzheng distinguish the nature of the procurement and use it to Chongfen show's success procurement activities on the value, the results only based on their own understanding of the procurement management, does not deny the role of procurement activities, nor to strengthen procurement management activities.This shows that companies are willing to begin to improve, the purchasing management there is still considerable room for improvement.

Monday, July 5, 2010

4Musics MP3 to OGG Converter

One-way MP3 to OGG converting in one click at high speed!
One of the featuers of 4Musics MP3 to OGG Converter is that it works from right click menu on a file.
Simply right click on the MP3, select "Convert to OGG"!? As easy as 1, 2, 3!
What is a MP3? MP3 stands for MPEG 1 (Motion Picture Experts Group) Layer 3. The power of MP3 files lies in their ability to store music and audio using substantially less memory than other formats.
Smaller file sizes translate to faster downloads and less expensive storage requirements, making it possible to store and play MP3s with reasonable priced hardware.
All of this amounts to a more flexible and affordable way of distributing, managing and listening to music.
Main Features:
- converting in one click!
- high speed;
- setting resulting format options;
- automatic source deleting;
- drag and drop support;
- skin support;
- playlists support;
- editor of tags.

Sunday, July 4, 2010

Youtube Movie to MPEG Store

It's most popular and very easy to use YouTube tools. helps you Fast download, convert, play, manage your favorite YouTube videos. If you're a YouTube fan, you'll love YouTube tool! is the most powerful YouTube assistant on the planet. YouTube tool easily: 1. Fast downloads YouTube videos, 2. Supports unlimited simultaneous downloads (a real time saver!), 3. Automatically names the downloaded video the same as the YouTube title, 4. Converts YouTube videos to various video formats, including Video, DVD, VCD, AVI, MPG, MPEG, Divx, Xvid, WMV, RM, RMVB, MOV, MP4, 3GP, SWF, DAT, H264, VOB, Flash, PDA, M4V, 3G2, AMV, CDA, DV,QuickTime, ASX, TV, VHS, FLV, H264, BDMV, MAC, Apple TV, Zune, iPod, PDA, PSP, PS2, PS3, Xbox, Xbox 360, Mobile Phone, Cell Phone, Blackberry, Wii, Laptops, Printers, Palm OS, Pocket PC, PPC, Treo, Psion, EPOC, iphone.
Supports YouTube video or any .flv and .swf file as input file. Supports not only YouTube video, but also various video formats as input file, including avi, DivX, XviD, rm, rmvb, MOV, MPEG, WMV. Supports a wide variety of output file format., including avi, DivX, XviD, rm, rmvb, MOV, MPEG, WMV. Provides various profiles, these profiles can meet the needs of most people. - is the most powerful YouTube assistant on the planet.