Win32 Debug API part III

March 12, 2011

In this chapter, we will continue to explore the win32 debug api. In particular, we will learn how to track the program being debugged.
Download example.

Theory:

If you've used the debugger, then you should be familiar with tracking. When the “track” a program, the program executes a command in each post will be stopped, it gives you the chance to check the register / memory values. The single-step operation is officially defined as tracking (tracing).
Characteristics of single-step operation provided by the CPU itself. Mark the first 8-bit register called the trap flag trap flag. If this bit set, then the CPU is running in single-step mode. CPU in each instruction to generate a debug exception. When the debug exception generated, the trap flag is cleared automatically. Debugging using win32 api, we can single-step run by the debugger. As follows:

Call GetThreadContext, designated ContextFlags as CONTEXT_CONTROL, to get the value of flag register
CONTEXT structure of members of the flag register to set the trap flag regFlag
Call SetThreadContext
Wait Mode event. Debugger will be the implementation of single-step mode, one instruction per execution, we will be debugging event, u.Exception.pExceptionRecord.ExceptionCode value EXCEPTION_SINGLE_STEP
If you want to follow the next instruction, need to re-set the trap flag.
Example:
.386
. Model flat, stdcall
option casemap: none
include masm32includewindows.inc
include masm32includekernel32.inc
include masm32includecomdlg32.inc
include masm32includeuser32.inc
includelib masm32libkernel32.lib
includelib masm32libcomdlg32.lib
includelib masm32libuser32.lib

. Data
AppName db “Win32 Debug Example no.4″, 0
ofn OPENFILENAME <>
FilterString db “Executable Files”, 0, “*. exe”, 0
db “All Files”, 0 ,”*.*”, 0,0
ExitProc db “The debuggee exits”, 0Dh, 0Ah
db “Total Instructions executed:% lu”, 0
TotalInstruction dd 0

. Data?
buffer db 512 dup (?)
startinfo STARTUPINFO <>
pi PROCESS_INFORMATION <>
DBEvent DEBUG_EVENT <>
context CONTEXT <>

. Code
start:
mov ofn.lStructSize, SIZEOF ofn
mov ofn.lpstrFilter, OFFSET FilterString
mov ofn.lpstrFile, OFFSET buffer
mov ofn.nMaxFile, 512
mov ofn.Flags, OFN_FILEMUSTEXIST or OFN_PATHMUSTEXIST or OFN_LONGNAMES or OFN_EXPLORER or OFN_HIDEREADONLY
invoke GetOpenFileName, ADDR ofn
. If eax == TRUE
invoke GetStartupInfo, addr startinfo
invoke CreateProcess, addr buffer, NULL, NULL, NULL, FALSE, DEBUG_PROCESS + DEBUG_ONLY_THIS_PROCESS, NULL, NULL, addr startinfo, addr pi
. While TRUE
invoke WaitForDebugEvent, addr DBEvent, INFIN99vE
. If DBEvent.dwDebugEventCode == EX99v_PROCESS_DEBUG_EVENT
invoke wsprintf, addr buffer, addr ExitProc, TotalInstruction
invoke MessageBox, 0, addr buffer, addr AppName, MB_OK + MB_ICONINFORMATION
. Break
. Elseif DBEvent.dwDebugEventCode == EXCEPTION_DEBUG_EVENT. If DBEvent.u.Exception.pExceptionRecord.ExceptionCode == EXCEPTION_BREAKPOINT
mov context.ContextFlags, CONTEXT_CONTROL
invoke GetThreadContext, pi.hThread, addr context
or context.regFlag, 100h
invoke SetThreadContext, pi.hThread, addr context
invoke ContinueDebugEvent, DBEvent.dwProcessId, DBEvent.dwThreadId, DBG_CONTINUE
. Continue
. Elseif DBEvent.u.Exception.pExceptionRecord.ExceptionCode == EXCEPTION_SINGLE_STEP
inc TotalInstruction
invoke GetThreadContext, pi.hThread, addr context or context.regFlag, 100h
invoke SetThreadContext, pi.hThread, addr context
invoke ContinueDebugEvent, DBEvent.dwProcessId, DBEvent.dwThreadId, DBG_CONTINUE
. Continue
. Endif
. Endif
invoke ContinueDebugEvent, DBEvent.dwProcessId, DBEvent.dwThreadId, DBG_EXCEPTION_NOT_HANDLED
. Endw
. Endif
invoke CloseHandle, pi.hProcess
invoke CloseHandle, pi.hThread
invoke ExitProcess, 0
end start

Analysis:
The program first displays an Open File dialog box, when the user selects an executable file, it will step through the implementation of the program, and record the number of instructions executed, the debugger until it is out of operation.

. Elseif DBEvent.dwDebugEventCode == EXCEPTION_DEBUG_EVENT. If DBEvent.u.Exception.pExceptionRecord.ExceptionCode == EXCEPTION_BREAKPOINT

By using the opportunity to set the debugger to single step mode. Remember, in the implementation of the program being debugged before the first instruction will be sent a EXCEPTION_BREAKPOINT message windows.

mov context.ContextFlags, CONTEXT_CONTROL
invoke GetThreadContext, pi.hThread, addr context

Call GetThreadContext, in order to debug the program was to fill the current register content CONTEXT structure, especially, we need to mark the current value of register.

or context.regFlag, 100h

Setting the trap flag register Mappings bit (8 bits)

invoke SetThreadContext, pi.hThread, addr context
invoke ContinueDebugEvent, DBEvent.dwProcessId, DBEvent.dwThreadId, DBG_CONTINUE
. Continue

Then call SetThreadContext to cover the value of CONTEXT. Then DBG_CONTINUE call ContinueDebugEvent to restore the debugger running.

. Elseif DBEvent.u.Exception.pExceptionRecord.ExceptionCode == EXCEPTION_SINGLE_STEP
inc TotalInstruction

When the debugger in a directive, we will receive EXCEPTION_DEBUG_EVENT debugging event, we must check u.Exception.pExceptionRecord.ExceptionCode value. If the value EXCEPTION_SINGLE_STEP, then the debug events are caused by single-step mode. In this case, TotalInstruction plus one, because we know exactly at this time was the implementation of a debugger command.

invoke GetThreadContext, pi.hThread, addr context or context.regFlag, 100h
invoke SetThreadContext, pi.hThread, addr context
invoke ContinueDebugEvent, DBEvent.dwProcessId, DBEvent.dwThreadId, DBG_CONTINUE
. Continue

As the trap flag in debug automatically cleared after abnormal, if we need to continue to maintain a single step mode, you must set the trap flag.
Warning: Do not use this tutorial for this example to debug a large program: tracking is very slow. You may need to wait 10 minutes before closing the debugger.

F4V to MPEG

brief Mathematics Education

SAP China's new president, Xiaojie Yun: first priority is To stabilize the team

DivX AVI to Apple TV

VOB to MP4

College Student Hidden Hard To Guarantee The Right To Life And Health Worries

First job out of the ivory tower beginning how the election

VBScript ReDim STATEMENT

Storage INVENTORY And Barcoding

Recommend Office Suites And Tools

Speed Up Slow Computer Check The Best Solution

View open ports: Let Trojan True Features

October 29, 2010

Currently the most common Trojan is usually based on TCP / UDP protocol for client-side and server-side communication between, since the use of the two agreements will, inevitably, to the server-side (that is, the machine is kind of a Trojan horse was) open listening port to wait for the connection. For example, using the famous glaciers listen port is 7626, Back Orifice 2000 is the use of 54320 and so on. So, we can use the view of the machine open ports to check whether they have been kind of a Trojan horse or other hacker programs. The following is a detailed method description.

1. Windows itself comes with the netstat command

On the netstat command, we first look at windows help file description:

Netstat

Display protocol statistics and current TCP / IP network connection. This command is only installed TCP / IP protocol before they can use.

netstat [-a] [-e] [-n] [-s] [-p protocol] [-r] [interval]

Parameter

-A

Show all connections and listening ports. Server connection does not usually.

-E

Display Ethernet statistics. This parameter can be used in conjunction with the-s option.

-N

In digital format address and port number (instead of trying to find the name).

-S

Show the statistics for each protocol. By default, the display TCP, UDP, ICMP and IP statistics. -P option can be used to specify the default subset.

-P protocol

Protocol specified by the agreement shows the connection; protocol can be tcp or udp. If used in conjunction with the-s option to display statistics for each protocol, protocol can be tcp, udp, icmp, or ip.

-R

Display routing table contents.

interval

Re-display the selected statistics, pausing between each display interval seconds. Press CTRL + B to stop re-display statistics. If this parameter is omitted, netstat will print the current configuration information once.

Well, read the help file, we should understand to use the netstat command. Let us now study the current use, use this command to look at open ports on your machine. Access to the command line, use the netstat command of a and n are two parameters:

C:> netstat-an

Active Connections

Proto Local Address Foreign Address State
TCP 0.0.0.0:80 0.0.0.0:0 LISTENING
TCP 0.0.0.0:21 0.0.0.0:0 LISTENING
TCP 0.0.0.0:7626 0.0.0.0:0 LISTENING
UDP 0.0.0.0:445 0.0.0.0:0
UDP 0.0.0.0:1046 0.0.0.0:0
UDP 0.0.0.0:1047 0.0.0.0:0

Explain, Active Connections is the current active connection of the machine, Proto is the protocol used to connect the name, Local Address is the local computer's IP address and port number being used to connect, Foreign Address is connected to the port of the remote computer's IP address and port number, State is that the state of TCP connections, you can see three rows behind the listening port is UDP protocol, so there is no State that state. Look! My machine's 7626 port is already open, is listening to wait for connections, like this case very likely have been infected with the ice! Quickly disconnected from the network, killing the virus with anti-virus software is the right approach.

[Next]

2. Work under the command line in windows2000 tool fport

Using windows2000 friend than use windows9X lucky, because you can use fport this program to display open ports and process the native correspondence.

Fport is FoundStone produced a system to list all open TCP / IP and UDP ports, and their corresponding application's full path, PID logos, names and other information of the software process. Use the command line, see example:

D:> fport.exe
FPort v1.33 - TCP / IP Process to Port Mapper
Copyright 2000 by Foundstone, Inc.
http://www.foundstone.com

Pid Process Port Proto Path
748 tcpsvcs -> 7 TCP C: WINNTSystem32 tcpsvcs.exe
748 tcpsvcs -> 9 TCP C: WINNTSystem32tcpsvcs.exe
748 tcpsvcs -> 19 TCP C: WINNTSystem32tcpsvcs.exe
416 svchost -> 135 TCP C: WINNTsystem32svchost.exe

Is not readily seen. This time, what is the procedure in all ports open to all under the eyes of you. If there is a suspicious program opens a suspicious port, be sure not to the effect that Oh, maybe that is a sly Trojan Horse!

Fport the latest version is 2.0. In many sites available for download, but for safety reasons, of course, it is best to go home under: http://www.foundstone.com/knowledge/zips/fport.zip

3. Fport function with graphical interface tools like Active Ports

Active Ports produced as SmartLine, you can use to monitor the computer all open TCP / IP / UDP port, not only will you be shown all the ports, all ports are also shown where the path corresponding procedures, the local IP and remote IP (attempting to connect to your computer IP) whether it is activities.

Is not very intuitive? Even better, it also provides a closed port function, use it to find your horse in the open port, you can immediately shut down the port. The software work in Windows NT/2000/XP platforms. You can get it in http://www.smartline.ru/software/aports.zip.

In fact, users do not use windows xp with other software that can be correspondence between the port and the process, because the windows xp brought the netstat command more than the previous version of an O parameter, this parameter can be obtained using the port and the corresponding process years.

See above description of several local open ports, and the corresponding relationship between the port and process methods, these methods can be easily found based on TCP / UDP protocol Trojans hope that I can help you bring the love machine. But the emphasis on the Trojans against, and if the Trojans run into a rebound port, use the driver and dynamic link library technical production of a new Trojan horse, the above method is difficult to identify traces of a Trojan. Therefore, we must develop good surfing habits, do not run email attachments free, install a antivirus software, such as domestic Rising killing viruses and Trojan horses is a good helper. Download the software from the Internet first, again with antivirus software and re-use, open the network when the Internet firewall and virus real-time monitoring, to protect their machines are not hateful Trojan invasion.

Recommended links:

On the implementation of financial knowledge in the use of

Beautiful call, XP Mac OS perfect CLONE

Waves resurgence - Purple VS Sogou contest

Haier computer operations Headquarters to Beijing to accelerate the national distribution

ASF to MPG

Haobo POS Invoicing Special 1388 yuan / user

Utilize All Practical Use Of Small Floating Window All Captures Thunder 5.9

how To rip dvd and convert video to blackberry

Report FTP Clients

Miniature GPS UK listed on its Mixed people

Directory Wizards And Components

DivX to IPOD

OGM to AVI

VBScript Number Properties

Still in the exploratory stage to introduce strategies HSPA

October 15, 2010

As an enhanced version of 3G, HSPA (High Speed Packet Switching Technology) of the mobile communications industry has been subject to wide attention. In the global perspective, there are 123 HSDPA (High Speed Downlink Packet Switching) network in 56 countries and regions have plans to deploy, 70 HSDPA networks have commercially in 39 countries. Currently, HSPA is also sought after by many communications equipment manufacturers, HSPA maturity of technologies and products are often considered to be manufacturers in the 3G field strength evaluation criterion. Recently, in “The Second HSPA technology development strategy will be high-level consultation”, a large number of domestic communication industry experts outlook released HSPA as well as the introduction of HSPA in the Chinese business strategy and environmental analysis.

HSPA access to opportunities in China?

In China, although the issuance of 3G licenses is still in very uncertain times, but the four major domestic carriers are already making active preparations. For example, China Mobile has joined in September of this year in the United Kingdom established NGMN (Next Generation Mobile Communications Network) organization, hopes to combine market insights of next generation network needs to provide clear systemic goals, to the ISO, for each chain standardization of production processes for next generation network to carry out clear guidance. It is understood that the 7 was launched in NGMN operators, China Mobile and outside addition to already have their own 3G networks. China Telecom and China Netcom have also set up a 3G-related research, in actively exploring the introduction of 3G and HSPA strategy.

3G development in China lags behind in the communications industry to bring anxiety, but also gives an opportunity to HSPA.?????????????????????????????????????????G??????????????SPA????????????????????SPA?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????

????????????????????????CTO???????????SPA??????????????????????????????????????????????????Users have access to higher bandwidth, richer services, lower latency and more smooth audio and video services.????????????GPRS??????1M??P3?????????????????HSDPA?????????????Therefore, HSDPA GPRS unit flow cost is only 1 / 4, so HSDPA is really mature at this stage can be applied to the cheap and mobile solutions.

HSPA network strategy with business change

Strategy on the introduction of HSPA, operators are still at an exploratory stage, did not explicitly propose HSPA position in the 3G era and network formation. This is a technical problem, but it is a market problem. At present, 3G and HSPA network primarily in the hybrid network and each independent network of two ways.

In the hybrid network which, taking into account the existing R99 systems to be compatible with the planning and design, will have the power allocation and code allocation of resources, which is currently the majority of operators in the design and planning of the difficulties to be resolved and priorities.???????????????????????????????????SDPA?????????????????????????????????????????????????????????????????????????????????????????br />
He told reporters that the static power allocation is mainly the corresponding region in advance of the average data throughput for statistical, estimated the number of HS-PDSCH channel and the corresponding power resources, and then in the OMC configuration, you can adjust, but adjust the frequency is not high; and dynamic power allocation as the proportion of current users is difficult to predict, to achieve the precise power ratio is very difficult, in order to avoid irrational use of power configuration lead to waste of power, while the introduction of dynamic allocation of power resources. However, the distribution of power and code resources, relations and also as the two formats investments and earnings per bit set, a more complex process.

Two independent network format is not compatible to consider the problem exists, but due to the different scenarios, the hybrid network also need to create and design model between the business market.???????????????????????????????????????????????????????????????HSDPA??????????????????????????????????????????????????SDPA??99??????????????????????????????????????SDPA??99??????????????????????????????????°?

??????????????????????????????????????????????????G??????????????????????????????????????????????????????????????????????????????HSDPA??????????????????????????????????????????????????????????????????HSDPA??????????????????????????????????????????????????????????????????????????????????????????????????????????????? We must take a different time to introduce a different strategy for HSDPA, the change in the data business to set different frequencies and the introduction of different networks.

Cao Lei to reporters that, the current operating companies to do the work to be done Henduo, ongoing and needs of Jin Xing's experiments and exploration, Zhu Yao You three Fangmian: Complete Yinru HSUPA, HSDPA upgrade for Baokuorenkou Mijishiqu, suburban and other environments in the coverage, throughput, switch, delay and other indoor and outdoor tests; of HSDPA / HSUPA (high speed uplink packet switching technology) technical characteristics and business carrying capacity; of how to deal with HSDPA / HSUPA and R99/R4 networking, such as business hosted differences, the relationship between network coverage, wireless resource allocation.

TD-HSDPA upcoming commercial products

In China, due to the licensing of 3G TD-SCDMA associated with the great, the TD-SCDMA, HSPA technology development has been the concern of many experts. Jian-qiu has said that as TD-SCDMA is very suitable for the unique technical features of the future of limited spectrum resources, network expansion and support of different business, the most important is its strong support by the Chinese government and to adapt to HSPA, so the future 3G development it is very competitive.

?????????????????????????????????????????D-HSDPA??????????????????????????????????????????????????????????????????HSDPA???????????????????????????HSPA????????????

During this consultation meeting, Lee Road, also on behalf of Datang Mobile announced to the industry, Datang Mobile will be on November 15 officially released single-carrier based on TD-HSDPA commercial version of the product to be launched next year, based on multi-carrier HSDPA products.??????????????D-HSDPA???1Mbps??????????????????????????2???????????????????????

????????????????????????????????CDMA??DMA2000?????D-SCDMA??D-HSDPA????????????????????????????????Part of the TD-SCDMA operators there is concern reasonable. Wu Xingyao said that operators need to target a mature network, rather than the TD-SCDMA standard to meet or exceed the same network at the same time period indicators. Some experts also pointed out that the current TD-SCDMA commercial networks also need to address a variety of formats to exchange 3G standards in large data exchange scenarios to deal with the details of the upcoming Olympic Games and other major conferences of the communication of unexpected problems.

????:

The average salary 7K public relations industry is a lie

DAT to WMV

brief Puzzle And Word Games

UML, RUP And Zachman Framework: The Perfect Combination Of [3]

Webmaster Tips Optimize Network Performance To

Brief Browsers

“Steal” food reform “Abstract” dishes: Without Thieves lonely farm still in the

Contact Home Linkist then the new tactics: to provide professional exhibition space

3GP To AVI

Advice: be careful to format the disk partition

ASF To AVI

Farewell babyface, iSee 1 Minute to create face-lift effect

jsp Precompilation issues

Chinese CN domain names dropped 110 000

October 6, 2010

CNNIC published the “25th China Internet Development Statistics Report”, the vast majority of China's Internet statistics are on the rise, but there are individual items in the fall, that is, the number of Chinese domain names, especially the apparent decline in the number of CN domain names.

Report data, in 2009, the number of Chinese domain name is 16,818,401, less than in 2008, 7797, in which the number of CN domain name is 13,459,133, compared with 2008 declined 113,193, a decline of 0.83%.

Report, “2009, domain index, site index were tested in decline, international export bandwidth of steady growth index is difficult to reverse the decline in the other three indicators to a trend, leading to basic resources index fell.”

Report that the basic resources are sustained, rapid and healthy development of the Internet's basic conditions, to ensure that the basis of China's Internet resources will not restrict the overall development of the Internet, need to quickly reverse the per capita amount of domain names have continued to slide … … domain name Resources and Web resources to maintain the steady growth.

Recommended links:

MPEG4 to MPEG

MPG to DivX

Building data aware classes in visual foxpro part

3GPP To WMV

Who Mozhun direct the Gate of Life in China?

September 30, 2010

?? ???????????????????????br />
Direct sales giant Amway multinational in the global market is said to invincible, but in China they had to “Romans”, China's exceptional as the only one in the global advertising market. Regional Chinese market, complexity and specificity, resulting in many mature markets of Western developed countries, the mode of operation, copied to China often acclimatized. In particular, China's direct selling market, it is very characteristic.

However, the Japanese cosmetics giant DHC does not seem to recognize this argument, is its great success in the Japanese market “communication marketing” model still intact to move to China. This compared to China's market cosmetics brand-new way of existing sales channels, with Internet sales, telemarketing, catalog sales model, product shipped directly from the Japanese headquarters to Shanghai warehouse and logistics center, and then directly to consumers.

DHC was founded in 1972, the company has now become a cross cosmetics, medicine and health food in many fields of integrated enterprise. According to Fuji economic survey data, with the “no shop” sales success, DHC has been for many years to become Japan's share of skin care products, Cleansing the first category.

However, for DHC “communications sales,” the new model, the industry expressed their cautious. Even the DHC planning department advertising and public relations manager for Fang Shuning, admits, “For China, DHC has just started, is in the exploratory stage. Whether Chinese consumers will eventually accept that we are being observed.”

Imitation “Dell model” is able to succeed in China?

Dell is a direct model's pedigree. DHC often to their own “marketing communication” model for the cosmetics field analogy “Dell model.” “Dell model” is the core of custom manufacturing and direct sales, it provides users with telephone orders, “one on one” consultation service, the user can through the website or toll-free telephone orders purchase; its customer center has a multilingual technical support engineer by phone to resolve customer technical issues very high success rate, efficient and convenient for the sale provided a strong guarantee. Dell Similarly, DHC model is “sales communication”, not stationed in store and the creation of independent stores, products directly to consumers, saving many unnecessary links in the middle.

However, Dell's direct sales model in China is really a success?

Direct sales model can be successful in western countries, not their business model more advanced, but the social basis of these well-developed security system. Such as the United States has a very developed financial services, advanced communications infrastructure and efficient postal logistics service system, which is Dell's direct sales model to achieve rapid settlement payment, mail order, telephone sales and Internet sales later provided the basis for guarantee conditions. In accordance with the laws of the market in Western developed countries, direct sales model of success depends on three elements of a perfect match, namely, logistics, coordination, and credit. These three points are currently not mature in China, direct sales in China, encountered great difficulties. Dell's sales in China is said to share in the proportion of direct sales, only about 60% and about 40% of all indirect proxy method, the agent can direct purchases to Dell's orders, but this is not as agent business, but called systems integrators, is to integrate a variety of PC orders agents, of course, was Dell as a direct sales model. 2005, Dell's market share has declined, mainly because of Dell's direct sales model in small and medium enterprises in emerging markets, and three, four cities a result of weak sales.

When Dell's direct model came to China with this after years of experience in the market in recent years the development of resistance (including upper and lower pincer attack IBM and Lenovo), Dell started brewing to promote “Romans”, plans to set up their own “shop” terminal.

Here I talk at length about Dell, some seem beside the point, but Dell is too similar to the DHC, DHC to predict the status of Dell's future, we can imagine, DHC This model will suffer much in the Chinese market challenges.

DHC has been able in Shanghai, Beijing these international city in China to succeed, because Shanghai, Beijing market, “Direct three elements” close to developed countries. However, vast numbers of Chinese consumers in cities and regions, is still used counters in shopping malls, supermarkets and specialty stores buy cosmetics, which significantly limited the expansion of consumer groups DHC.

Panlong is another sea of clouds, there is someone else's education market too?

May 2005, DHC home commissioned by a public relations agency in Shanghai, Beijing, Shenyang, Dalian, Guangzhou, Shenzhen, Hangzhou, Nanjing and so the implementation of DHC corporate image and products for the PR. PR agencies in taking over a project, in Shanghai, Beijing and Guangzhou consumer and media groups to do a sample survey, analysis of the DHC in the Chinese market to promote the two problems: 1, “sales communication” as the direct translations of Japanese foreign words, before the Chinese did not appear that most consumers do not understand the term, easily and cosmetics, “direct” and “pyramid schemes,” confusion. 2, as an international brand that year triggered a “crisis of confidence in international brands,” the majority of consumers for new international brands skeptical attitude, especially in the country of origin DHC even more. Analysis concluded that the DHC's “marketing communications” model comes as the first case in the domestic cosmetics industry, Beijing, Shanghai and Guangzhou three major cities, consumers are not very familiar with the brand DHC, but knowledge is limited to “Japanese cosmetics”, while of “sales communication” is little awareness or simply do not understand. Thus, DHC will set its target for the full use of public relations power of the media, and actively guide the attention of the media and discuss the “sales communication”, and guide consumers to the “Dell model” is associated, compared to affected consumers agree that sales model, the final set to send DHC cosmetics natural leadership.

Starting from October 2005, CCTV, two sets were played by the South Korean star Kim Hee-sun endorsement of DHC advertising, in February 2006 another change for the South Korean popular King RAIN. DHC in the TV ads did not focus on the concept and efficacy aspects of its cosmetics, but always to “communications marketing” model as a key demand.

DHC such “avalanche” of promoting “sales communication” mode, the strategy and practices, I could not help but think once very famous in China, the “Paiduyangyan capsule” to. Speaking Paiduyangyan capsule believe that we are intimately familiar with, but if asked to promote the product as early as the concept of enterprise is who? Very few people know is the estimated Panlong clouds. At first, Panlong clouds spent six years to carry out market education, so that consumers recognized the “body of toxins,” which raised the “detoxifies” banner, so that detoxifies and capsules that product categories market, “domed stadiums.” However, the Panlong clouds blindly is to promote the product Paiduyangyan capsule did not see that there will be a sea of clouds and detoxification Panlong closely tied advocates the concept of the market brought about by the disaster. Consequently, many of the banner of “detoxification” under the banner of the company have launched their own detoxification beauty products, this trend can be described as turbulent in the river north and south, such as Aloe Detox Capsule and then proposed the “deep detoxification,” “comprehensive detoxification “concept, Cordyceps Qingfei proposed the” lung reef “, Tsinghua tea made” lung wash “, intestinal tea made” colonic cleansing “and so on. Panlong clouds through the years of propaganda, people have recognized the human need to “detox”, which recognizes the product brand Paiduyangyan capsule, but when the market “detoxifies” product after another, the market does not remember Panlong clouds have such a “good man.” Later, the sea of clouds with a great deal of trouble Panlong reluctant to “detoxifies the first brand” with their bundle.

On current trends, DHC will, like the sea of clouds like Panlong year, so that everyone knows that phone sales (DHC core communications sales is that phone sales), but they themselves have done for other cosmetics brands are awake then ? We see that almost has its own direct sales giant telephone order business, such as Avon are also left free hotline television advertising, while Avon has counters in many cities, shopping malls, which give consumers a variety of purchase options.

DHC with plenty of resources to education in China agree that its “sales communication” mode, but in the end product can give consumers what interest? Its really bring benefits to Chinese consumers, they have not seen the report conclusion or opinion.

DHC is the most luck had to enter the Chinese market, the market has not fully adopted a kind of “sales communication” means sales of cosmetics, DHC can be said that China's cosmetics market “sales communication” the first. But now other direct predators, and even many domestic cosmetics production and sales companies are engaged in or intends to use the “sales communication” or “phone sell” approach. Although this marketing operation in the actual operation involving a lot of problems, but at least DHC's marketing education, so that the general Chinese consumers to a large extent, to dispel the “telephone sales” cynicism. Another point of view, DHC cosmetics brand for all the collective to do a free publicity.

Cosmetics direct sales model of “Chinese” Nirvana

I understand that the existing marketing cosmetics in China, including supermarkets and hypermarkets, shopping malls counters, department stores, chain stores, beauty salon sales, club sales, television direct marketing, telemarketing, etc.. Set up counters at major department stores, cosmetics sales in recent years in the major form of high-end, according to statistics, sales of share of department store cosmetics market in China currently account for nearly 70% of sales, related data, Shiseido's high-end products in the department store's sales in China accounted for 90% of total sales.

August 10, 2005, “Direct Marketing Management (Draft)”, “against pyramid schemes (Draft)” by the State Council Standing Committee for approval, to allow direct sales cosmetics business. The World Direct Alliance to develop the “Business Morality Laws” direct sales is directly on the consumer's home or that he's home, workplace or retail store outside for consumer goods sales, usually by direct sales personnel at the scene of the products detailed description or demonstration. Worldwide, direct sellers up to nearly 5300 million people, with a total turnover of nearly 95 billion U.S. dollars, of which cosmetics accounted for about 20 billion U.S. dollars.

According to the above, I think, combined with the characteristics of the Chinese market, direct sales in China will show a “direct + shop staff” and “China” sales model. We see the world shared the field of cosmetics direct selling giant, coincidentally in to this “Chinese” sales model approach.

Such as Avon, the Chinese government against illegal pyramid scheme, the Avon store + direct seller model transformation. Meanwhile, Avon has also stepped up to establish their own channel management system to control the eight regional headquarters service center, commissioned a third-party logistics companies, to the nation tens of thousands of stores, counters and retail outlets picking, a significant reduction in the operating the amount of costs and inventory, and order arrival time will be reduced to the dealer within 48 hours.

DHC in the Chinese market must complete four offensive

As mentioned above, the future of cosmetics channel competition is not the traditional “shop” approach and “no shop” approach of confrontation and competition between, but the convergence of both. Even the DHC has been in Japan, Taiwan, convenience stores and pharmacies were sold in the.

If the DHC would like to simply “marketing communication” model-free shop cosmetics market in China more as my analysis, DHC must complete the following four major offensive:

First, the image offensive. Establish an international brand image, high-grade promotion should be strengthened.

Well-known reasons, DHC country of origin as Europe and the United States and other international cosmetics brands worth as high, although the DHC and asked two South Korean stars before and after the endorsement, but still only give consumers “Asian brand” Lenovo, which was not helpful DHC development in high-end market.

Second, the confidence in the offensive. DHC's “marketing communications” model, although very similar with the Dell, but easy to make Chinese consumers and the “TV shopping,” even “disguised pyramid” link, therefore, DHC must be “confident sales”, so that the Chinese consumer are widely accepted, recognized. Low reliability issues such as DHC model is still copied to the obstacles in China, TV direct sales, online shopping is becoming the hot new complaints. Example, during the Golden Week this year on May 1, Beijing 12315 handled direct marketing services, including television, online shopping, all 10 complaints, city holiday period before CASE 44 complaints involving online shopping area, 14 pieces of product quality and differences in product promotion is the main reason for disputes. In order to solve the credibility problem, DHC has been in China Shanghai, Beijing, Guangzhou, Shenzhen, Hangzhou and other major cities to achieve a cash on delivery, and opened in Shanghai, pos machine mobile payment services, but to open up a broader 3, 4 market, DHC still a lot of work to be done.

Third, the word of mouth campaign. DHC advocated by the membership, in fact, many cosmetic brands are in place, which forced the DHC to do even better by members to create strong brand reputation to expand brand awareness and loyalty. DHC????????????368????????004??0???????????????????????????????????????????????HC?????????????????????????????????????????????????????????3????????????????????????????????????????????????????????????????????br />
?????????????????????????????????????????????DHC???????????????????????????????????????????????????DHC???????????????????????????????????????????????????????????????DHC????????????????????????????????????????????????

?????????????????????????????????DHC???????????????????????????????????????????????????????????????????????????????????????DHC???????????????????????????????????????????????????????????br />

????:

Hot industry, “Painted Skin” phenomenon

Graduates Felt The “job Card” Applauded

Evaluate File Compression

MSN's new fashion derivative can invite friends online to listen to music All day

Report FTP Clients

China's economy remains to be seen whether there are signs of rebound

News About Basic Or VB Or VB DotNet

AVI to FLV

reviews AUDIO Recorders

Tencent sued Staff: to protest the labor contract Tencent Overlord

RM to AVI

Software download to change flv to iaudio q5w

“Dalian Sigma Elevator” use EastFax

MKV To PSP

You will enter the English phonetic it?

Borrow money to make money doing business

“Nobunaga's Ambition 12 innovations,” the home of innovative built-in emblem of the correspondin

September 27, 2010

Innovation (original and generic version PK)

0 Shu Qi

1 south

3 Tsugaru

4 Namioka North Field

5 Lu in Shiba

6 Bei Guan

7 Kasai

8 Osaki

9 horses

10 Rock

11 Tamura

12 Shirakawa

13 Ashina (Ashina)

14 Nikaido

15 Nihonmatsu

16 Anton

17 Ze

18 Onodera

19 Daihoji

Top 20

21 Ida

22 Satake

23 Edo

24 Oda

25 Furukawa Gosho Ashikaga

City 26 Results

27 Chiba

28 Little Bow Gosho Ashikaga

29 real-ri Takeda

30 Satomi

31 Utsunomiya

32 Nasu

33 Sano

34 Yamauchi Uesugi

35 Nagano

36 Yokose (11 on behalf of Nagano)

37 Valley Uesugi

38 Ota (Asano)

Article 40 of the North

41 Imagawa

42 Tokugawa

43 Zhang Sibo

44 Oda

45 Shibata

46 Yu Cai

47 Hashisaki

48 Saito

49 wise

50 Kobe (Nobutaka) (11 on behalf of the Ikeda)

51 Ise Nagano

52 North Field

53 Takeda

54 Sanada

55 Murakami

56 Ogasawara (Mizoguchi)

57 Suwa

58 Kiso

59 Miki (missile)

60 Long-tailed (Nagao Kagetora three more after the long tail)

61 Long-tailed (the more the political landscape after the long tail long tail 3)

62 Long-tailed (more later when the long-tailed thresher 3)

63 Echigo Uesugi (not Uesugi Kenshin, Kenshin Uesugi inherited Yamauchi)

64 Jimbo

65 Shiina

Noto-san 66

67 Asakura

68 Wakasa Takeda

69 shallow wells

70 Hex

???72??????

???73?????br />
???74???

???75?????br />
???76???(???)

???77???(???)

???78???(???)

???79???(???)

???80???

???81???(???)

???82??????

???83???

???84???

???85???

???86???

???87???

???88???

???89???

???90???

???93???

???94?????br />
???96???

???97?????br />
???98???

???99???

???100??????

???101???

???102??br />
???103???

???104????????????????11??

???105?????br />
???106??????

???107???

???108???(??????)

???109???

???110???

???111???

???112???

???113???

???114?????br />
???115???

???116???

???117???

???118???

???119???

???120???

???121???(10?????

???122???

???123???

???124??????

???125??????

???129??????

???131???

???132??br />
???133???

???134???/??????

???136?????br />
???137???

???138???

???140??????????br />
???141??????????br />
???142????????

???143??????????

???146???

???147?????br />
???150??????

???152??????

???158??? (?????

???159???/?????br />
???160???

???162???

???164????????br />
???169???(10????????

???172???

???174???

???175???

???176???

???181??????

???183???

???185???

???188??br />
???195???

???198???

???201???

???206???

???209???

???211???

???216???

???217???(10?????

???PS??????????????????????????????????????????????????????????????????????????????????????????????????br />
??????????????????PK??????????????????????)?????????????????????????????????????)???????????????????????????????????????????????br />
????????????????????)?????????????????)????????????????????)??????(????????????)??????PK???????????br />

????:

Recommend Games BOARD

Harvest autumn harvest eMEX Internal Security Code

double hackers busy online SHOPPING customers to

AVI TO FLV

DVD-ROM disc maintenance tips

New Geography Education

RM to AVI

KONE Corporation to participate in UGS Asia Pacific Channel Conference 2007

From Detection To Prevention Of The Evolution And Revolution IDS

MKV to PSP

Shanghai is now sold only 20 yuan piracy Win 7

How to QUICKLY assess the adoption of CMMI

Who told Panda burning incense on a job?

How to PROMOTE sales will not die

“Digital water” wind and rain ahead

September 14, 2010

Glorious 50 years of computer development in China Water Conservancy Information Applications column

Hydrological information at or through the optical input plane for input, and finally to rely on technical staff in front lighting units encoding five holes on the translation and proofreading.

Start early, relatively slow, this is Deputy Director of Ministry of Water Resources Water Information Centre on Water Resources and Information Cai Yang's personal experience. According to reports, water resources information started in the 70s of the 20th century, when aggregated mainly around the hydrological information, treatment started.

From 1979 to 1980, started a number of hydrological information sources of information processing. At that time the conditions are very primitive, only large research institutions nationwide have made the computer DJS-6 or the DJS-130.

Despite difficult conditions, or the reunification of the country developed a hydrological information applications, led the water industry (particularly hydrological services) to process information by computer initiative. Hydrological information at or through the optical input plane for input, and finally to rely on technical staff in front lighting units encoding five holes on the translation and proofreading.

Before and after 90 years of the 20th century, water gradually to computer information and network as a platform transition. After the 1998 flood, the State Flood Control Command System's vision to speed up the process. Jinshui project started in 2001 while a further boost to the National Water information system.

Construction of flood control and driver information

1993 to promote the national flood control system engineering, information on water infrastructure improvement played a significant role. State Flood Control and Command System, is an important part of Jinshui project. From 1993 to try to do the project design in 1998, 2003, be approved. Many grass-roots projects that rely on information technology to support this project.

Flood Control and Water Resources of China has been the highlight of the work. Began in 1993, the State Flood Control and Drought Relief Command System, the current one phase of the project has been approved by the State Development and Reform Commission, the preliminary design work has been completed.

The project completed 23 sub-centers hydrological model to the building and four construction workers mutual affection and Yongding River basin pilot centers Microwave System; completed the seven areas of the National Prevention Office and the remote consultation system construction sector the implementation of the Yangtze River Flood Control and Command System, part of the project carried out experimental work; in 2005 also completed the construction of water conservancy information backbone network, currently being implemented in consultation with flood and drought control remote video conference system.

Water rising level of automation of information collection, nearly 50% of the rainfall and water level monitoring data, monitoring data collection is digitized long-term automatic recording, traffic and other elements of the automatic tests also had positive attitude. Water quality monitoring, water and soil conservation monitoring, automatic real-time monitoring water levels rising.

Water Information backbone basically completed, and initially built a nationwide real-time hydrological computer wide area network, to achieve the most important flood control and water situation in the on-line real-time detection of information exchange. State Flood Control and Drought Relief Command System relies on the first phase construction of the backbone of the national water information network construction has been completed, the initial realization of the Ministry of Water Resources and the watershed organizations and the provinces (autonomous regions and municipalities) of water administration departments of the broadband Internet, 14 provinces have been or are being implementation and to the municipal administrative department of the interconnection of water, from the central to provincial, city water information network is forming.

Water resources and enrich the data, based on the implementation of the national hydrological database, 1 / 250 000 Water based spatial database, irrigation policies and regulations database, water conservancy construction of digital library pilot as the representative of the professional database development. National Soil Database, the National Irrigation Development Plan database, the national socio-economic information base flood, irrigation, basic immigration information database, the national database of flood control projects under active construction.

July 7, 2006, Ministry of Water Resources Informatization Leading Group Office of the Organization held in Beijing, “Water Resources Information Network Operation and Management” seminar.

Cai Yang at the seminar pointed out that the Water Information Network is an important information infrastructure and information technology work for the Global Water has an important supporting role. After years of efforts to link Water bodies, watershed organizations and the provinces (autonomous regions and municipalities), cities of three water sector of water Xinxi network is Zhubu playing an increasingly significant form and significant of the benefits, for the realization of voice, data, Image transmission and sharing network laid the foundation for a variety of applications. First half of 2005, the backbone network construction has been basically completed, realized the Ministry of Water Resources and the seven river basin agencies and the provinces (autonomous regions and municipalities) of water administration departments of the broadband Internet; Water authorities and the government in Beijing directly under the unit has been achieved within the network interconnection Ministry of Water Resources and the seven river basin institutions within the network of interconnected government is nearing completion.

Governance “Four Rivers”

The year 2001 is the construction of water conservancy information banner year. Ministry of Water Resources Informatization Leading Group in April 2001 explicitly Water information system named “Jin Shui works”, and has been used since then, Ministry of Water Resources to complete the preparation of the formal organization the “National Water Resources Information Planning,” (that is, “Jin Shui Project Planning “), preparation, and was formally issued in 2004.

Also in that year, Ministry of Water Resources committees established “to promote water information water modernization” and its development. 2002, “Jin Shui Works” is listed as 15 countries to build during the 12 key business systems in the world. 2004 National Conference on Water Resources and the Office of the Secretary, the comprehensive e-government construction of water conservancy, as the 2010 top ten goals.

“Water's four major problems: water and more water, less water, muddy, dirty water. The water more than necessary flood control; water less need for drought; water muddy, need water and soil conservation; water dirty, need environmental protection.” Cai Yang for water Information given in this work the core of the explanation.

“15″ period, with the new ideas of water gradually practice and Jin works has been rapid development. Initiated by the State Flood Control and Drought Relief Command System a project, the National Soil Monitoring Network and Information System (1), Ministry of Water Resources and the seven major river basin water agency e-government phase of the construction of water control system for real-time marked Water Information of special project.

In the Yangtze Dyke Strengthening Project, rule too works to harness the project, River, Heihe area of integrated water resources planning and ecological environment protection projects, the capital protection of water resources projects carried out a number of medium-sized water conservancy projects supporting the information technology project construction.

Use of foreign governments or organizations, loans or grants, funded projects in a number of projects, are also different levels of information technology supporting the implementation of the project construction, such as: the Yangtze River flood control decision-making chain of command, the Han River flood warning, flood of the Yellow River, Songhua River Flood Control, Hunan, Hubei and Jiangxi provinces of urban flood control projects; Xinjiang's Tarim Basin, Hexi Corridor, Shaanxi, Sichuan, Huai-Hai Plain, and other places Irrigation District projects; Plateau, Fujian, Heilongjiang, Jilin, soil and water conservation projects; Xiaolangdi Project (2) Immigration projects; part of human resources training and cooperation and exchange projects.

Some countries with the technological transformation of key hydrological sites, but also enhanced rainfall, hydrological, engineering conditions, the disaster information collection, transmission capacity of Telemetry.

Some areas also raise funds through multiple channels to conduct a pilot digital watershed construction, and actively explore and introduce a lot of information work in new technologies, new methods, new experiences. Such as: Digital Yellow River, the digital Yangtze River, Haihe River and other digital projects.

Although progress has been made Jinshui works, but on the whole, water resources information infrastructure is still weak, lack of outstanding performance in information resources, information sharing difficult, more comprehensive service of information resources and weak. The work of water conservancy construction and operation of information management system is not sound, the lack of a stable investment channel for security planning to full implementation of goal difficulty is still greater. In the “Eleventh Five-Year Plan” period, the full completion of the State Flood Control and Drought Relief Command System of a project, the National Soil and Water Conservation Monitoring and Management Information System (1), irrigation of E-government platform (1) and the National Water Resources Data Center Construction basis, it will start, “Jin Shui project” other related construction projects. In promoting development and integration of business applications, but also will enhance the standard and safe system.

Deputy Director Ministry of Water Resources Water Information Centre Cai Yang

Water quality monitoring vehicle

2002 National Forum on Water Information

Groundwater automatic inspection station

Automatic Data Acquisition

Link

Jinshui Project

Ministry of Water Resources Informatization Leading Group in April 2001 explicitly Water information system named “Jin Shui works”, and has been used since then, Ministry of Water Resources to complete the preparation of the formal organization the “National Water Resources Planning Information” (”Jin Shui Works Plan “) preparation, and in 2004 issued an official.

(A) Construction Target Jinshui

Use 3 to 5 years, extensive development of Water Resources, Water Information Network basically completed, the State Water Resources Data Centre and security system, full range of water information infrastructure construction; improve information technology operation and management system, unified standards and strengthening personnel training and create a water information security environment; basically completed the State Flood Control and Drought Relief Command System of a project and the National Soil and Water Conservation Monitoring and Management Information System, a comprehensive water resources management decision support system start, water quality monitoring and evaluation of information systems and water management system of administrative resources construction, deployment of other business applications development, basically an integrated water information system, and effectively solve the shortage of resources and resource sharing of information difficult to meet basic operational requirements to provide information services to improve the administrative efficiency of the water.

(B) of the basic tasks of the project Jinshui

Construction of water conservancy information infrastructure, and create a water information to protect the environment, development of ten key business applications, building integrated water information system.

1, water conservancy construction of information infrastructure

(1) information collection system

By supplementing the existing information collection system, improve and integrate the information collected to improve timeliness and enhance information gathering capabilities, rich content collection to improve overall system utilization, form a comprehensive information collection system.

Relying on the recent construction of special business, the information collected on the scope, content to make unified arrangements, according to enrich the existing system to integrate the principles, start the construction of integrated information acquisition system, the initial key business applications to meet the urgent need for information collection.

(2) Water Information Network

Built to connect the Water Sector at all levels and departments of the national water information network, data exchange for business applications, video messaging and voice communications services.

Recent State Flood Control and Drought Relief Command System relies on a project, the construction of the Central Government, City & center down to the ground water information network outside the network of government, to achieve information collection nodes to collect information at all levels of interconnection between nodes; relying on e-government water a construction authority to the Ministry of Water Resources Water Resources Administration within the river basin organization network, secret information and office information to achieve the transfer.

(3) Water Resources Data Centre

Water Resources Data Centre by the State Water Resources Data Centre, River Basin sub-centers and the provinces (autonomous regions and municipalities) data management nodes together constitute, in the water information collection, storage, processing and services play a central role in the process, a complete infrastructure system is an important part. Through the Water Resources Data Centre building, the sharing of information resources and optimizing the allocation of business applications to meet the multi-level, multi-objective integrated information service needs.

Recently, the State Water Resources Data Centre of the pilot projects as the main content, select some sub-basin Water Resources Data Centre to carry out the pilot projects for the watershed sub-centers and the provinces (autonomous regions and municipalities) building a data management node exploration experience, improve standards and provide demonstrations.

2, the business application system

Recent water business applications to the State Flood Control and Drought Relief Command System, water resources management decision support system, water and soil conservation monitoring and management information systems, water quality monitoring and evaluation of information systems and water resource management system construction administration focus its initial application to meet business needs .

Water service application system in the central, river basin and provincial (autonomous regions and municipalities) applications are similar. The valley and the country as provinces (autonomous regions and municipalities) geographical location, economic and social development, management, range and different levels, the business system applications in different nodes need to have different emphases, all levels of application systems according to local objective realities and different applications targeted building.

3, protection of environment

Water information security environment by the water conservancy information system, security system, construction and operation management, policies and regulations, operation and maintenance funds and personnel and other factors constitute the. Water Resources and information security environment is an integral part of the integrated system is the smooth water of information the basic supports.

To ensure that water infrastructure and business applications of information system construction of the smooth running of the continued stability and the role of effectively protect the environment of the building must be combined with, coordinate, and moderate advance.

Recommended links:

avi to mpeg4 converter Free

3gpp to avi

avi to Iphone converter

Windows 7 Rmvb

pb function library of the International

July 30, 2010

IsAllArabic ()
Function to determine whether all the specified string in Arabic characters, the function only in the Arabic version of PowerBuilder to use.
Syntax IsAllArabic (string)
Parameter string: The string to test the return value of Boolean. If the string content of all the Arabic characters, then the function returns TRUE, otherwise returns FALSE. If the string contains numbers, spaces, punctuation, then the function also returns FALSE. If not the Arabic version of PowerBuilder, the function always returns FALSE.
————————————————– ——————————

IsAllHebrew ()
Function to determine whether all the specified string of Hebrew characters, the function only in the Hebrew version of PowerBuilder to use.
Syntax IsAllHebrew (string)
Parameter string: The string to test the return value of Boolean. If the string contents of the all-Hebrew characters, then the function returns TRUE, otherwise returns FALSE. If the string contains numbers, spaces, punctuation, then the function also returns FALSE. If not the Hebrew version of PowerBuilder, the function always returns FALSE.
————————————————– ——————————

IsAnyArabic ()
Function to determine whether the specified string contains Arabic characters, the function only in the Arabic version of PowerBuilder to use.
Syntax IsAnyArabic (string)
Parameter string: The string to test the return value of Boolean. If the string contains at least one character into Arabic, then the function returns TRUE, otherwise returns FALSE. If not the Arabic version of PowerBuilder, the function always returns FALSE.
————————————————– ——————————

IsAnyHebrew ()
Function to determine whether the specified string contains Hebrew characters, the function only in the Hebrew version of PowerBuilder to use.
Syntax IsAnyArabic (string)
Parameter string: The string to test the return value of Boolean. If the string contains at least one Hebrew character, then the function returns TRUE, otherwise returns FALSE. If not the Hebrew version of PowerBuilder, the function always returns FALSE.
————————————————– ——————————

IsArabic ()
Function to determine whether the specified character is in Arabic characters, if the parameter is a string, only check whether first character is left in Arabic characters. This function only in the Arabic version of PowerBuilder to use.
Syntax IsArabic (character)
Parameter character: a character or string to test the return value of Boolean. If character is the Arabic character, then the function returns TRUE, otherwise returns FALSE. If not the Arabic version of PowerBuilder, the function always returns FALSE.
————————————————– ——————————

IsArabicAndNumbers ()
Function to determine whether all the specified string characters or Arabic numbers, the function only in the Arabic version of PowerBuilder to use.
Syntax IsArabicAndNumbers (string)
Parameter string: The string to test the return value of Boolean. If the string content of all the Arabic characters or numbers, then the function returns TRUE, otherwise returns FALSE. If not the Arabic version of PowerBuilder, the function always returns FALSE.
————————————————– ——————————

IsHebrew ()
Function to determine whether the specified character is in Hebrew characters, if the parameter is a string, only check the first character is left in Hebrew characters. This function only in the Hebrew version of PowerBuilder to use.
Syntax IsArabic (character)
Parameter character: a character or string to test the return value of Boolean. If the character is in Hebrew characters, then the function returns TRUE, otherwise returns FALSE. If not the Hebrew version of PowerBuilder, the function always returns FALSE.
————————————————– ——————————

IsHebrewAndNumbers ()
Function to determine whether all the specified string of Hebrew characters or numbers, the function only in the Hebrew version of PowerBuilder to use.
Syntax IsArabicAndNumbers (string)
Parameter string: The string to test the return value of Boolean. If the string contents of the all-Hebrew characters or numbers, then the function returns TRUE, otherwise returns FALSE. If not the Hebrew version of PowerBuilder, the function always returns FALSE.
————————————————– ——————————

Reverse ()
Character string function reverse order.
Syntax Reverse (string)
Parameter string: to reverse the characters in order to return the string value String. Function is executed, after the return to reverse the order of characters in the string, if an error occurs, then return an empty string (”")??Use Reverse () function the last character in a string to another string to place the first character position, the penultimate character string placed in another position of the second character, and so on.
————————————————– ——————————

ToAnsi ()
Function will convert Unicode characters in ANSI character.
Syntax ToAnsi (string)
Parameter string: to convert a Unicode encoded string return value Blob. Function is executed, returns the string corresponding to the specified ANSI code of blob type data, when an error occurs return a null value (NULL).
————————————————– ——————————

ToUnicode ()
Function will convert Unicode characters in ANSI character.
Syntax ToUnicode (blob)
Parameters blob: to convert the ANSI encoding blob type data return value String. Function is executed, returns the string corresponding to the specified Unicode encoded string, return empty string when an error occurs.

????:

Out errors TO make your writing more efficient CSS

CLP Guangtong Proceedings To Recover 200 Million Loan Of China Cable

Convert Flv To Wmv

Ultimate registry operations - lock registry

News about Converters And Optimizers

avc converter

how to convert .mp4 to .avi

Audio Speech COMPARISON

Easy to use Browsers

Reflection TOC: Lean Manufacturing and Theory of Constraints complement each other

mov to Avi

Create Fireworks Animation Fireworks

Easy to use Health And Nutrition

[Aion] Korean Clothing And Equipment Leveling Frenzy 1.2 Perfect

Online Player DIY

Vigilance “Fantasy Westward Journey” Daohao Trojan havoc

July 22, 2010

Kaspersky Labs has detected a service called “scar” of Daohao Trojan (Trojan.Win32.Scar.abnv) ravaged the network, resulting in infection of many users. The Trojan uses UPack packers, the main target of the attack, “Fantasy Westward Journey” online games. It is usually linked through the website or download manager such as horse infect your computer. Into the computer, the Trojan will release a malicious file to a computer disk, and modify and create registry entries. “Scar” Daohao Trojan is a major characteristic is its can run as exe, can run as a dll. Exe will be released as a load dll, but when you do run for Daohao dll. Trojan running will first examine their own start as a exe or a dll starts, although different behaviors, but the end result is the implementation of the Trojan code to steal the user's game account information online games. Not only that, this Trojan will search for “Picture and Fax Viewer” window, and browse the picture with its intercept, the stolen account information and captured images to a remote computer, causing huge losses to computer users.

Currently, Kaspersky has been able to successfully killing “Scar” Daohao horse, we recommend that you update the virus database for killing as quickly as possible to avoid unnecessary losses.

Recommended links:

Daniusoft DVD Video Converter Pack

ts file format

ESRI experts, Non-Chan: Snow Emergency GIS can do more

3COM HUAWEI is the answer to the puzzle may be in North America Cisco

Backup And Restore Expert

convert FLV to mp3

Explosion Flash To IPod

comments Java And JavaScript

AVC-FREE

Winamp Visual Effects Studio Creating Flash

.ts files

RA Music To CD

Casino And Gambling Report

BLUESEA PS3 Myspace Video Converter

IC card reading and writing in PowerBulider

Youtube Download + Converter Freeware

June 30, 2010

Hot popluar youtube video Converter + download + player tool. With YouTube tool you can also convert downloaded YouTube videos to a format compatible with your favorite portable device; including - iPod Video, iPod Touch, iPod Nano, iPhone, Zune, PSP, as well as video capable MP3 players, video capable mobile phones, and Pocket PC, And finally… YouTube tool’s embedded player will allow you to watch all your favorite YouTube videos off-line. So now you can enjoy any .flv and .swf videos anytime!
Supports customize or create user’s own profile for any new (portable) device. The video conversion supports preview. About Playing Features. Embedded YouTube Video (Offline) Player is available, it supports offline play YouTube video, .flv video and .swf video. Supports &quot;Drag and Drop&quot; video files direct to the main window. Easy to select the source files. Cool UI skin available. - is the most powerful YouTube assistant on the planet.

Recommand Link:

Rm to avi

Youtube FLV to MPEG Suite

Converting HD to Sony NWZ-S739F

Explosion WMV Converter

Bluesea Flash to Mobile

SuperBurner XviD Converter

AseeDVD to IPhone Converter

AlltoDVD DVD Ripper Platinum

Icon Tools Introduction

Top Telnet Servers

AVCWare DVD to iPod Video Converter

LasVegas DivX Converter

video to Cowon O2PMP converter

Premier Backup And Restore

Youtube to H264 Software

Get free blog up and running in minutes with Blogsome | Theme designs available here