Saturday, September 25, 2010

A large number of international giants fight back to the Chinese. CN domain names


Morning News a few days ago, reporters from the China International Trade Arbitration Commission Domain Name Dispute Resolution Center received information, including Coca-Cola, Disney, L'Oreal, etc., a large number of international giants have been through arbitration, a successful fight back to the Chinese. CN domain names. Up to 9 months in a multinational giants get together and arbitration Chinese. CN domain name incident was finally settled.

March 17, Add Domain Name Dispute Resolution Centre received more than 70 domain name dispute cases, 600% surge year on year, Coca-Cola, Nestle, Yue-Sai and other international big names to its Chinese. CN domain name fight impressively.

Since early 2006, Microsoft announced that IE7 browser will fully support Chinese. CN domain name after the Chinese aware of the many multinational giants. CN huge market value of corporate domain name dispute started fighting back. After 9 months of hard work, mostly transnational giants have successfully picked up my Chinese. CN domain name, "Coca-Cola. CN", "Hong Kong Disneyland. CN" and "L'Oreal Paris. CN", etc. and is being processed transfer procedures.

Coca-Cola said relevant, as the Chinese Internet in China Internet's maturation, Coca-Cola. CN domain names for their brand has become a valuable asset. According to informed sources, the Coca-Cola's main rival Pepsi-Cola has already registered and launched the "Pepsi. CN", opened up a new way to promote the brand network, which to some extent, all strive to become an emergency return to Coca-Cola Coca-Cola. CN domain names incentives.

Hu Gang-known legal experts said that despite the well-known brand may be the Chinese through arbitration. CN domain names, but a lot of SMEs, because of the less well-known, the possibility of arbitration and recover relatively small, so its too late better to take precautions, side opening for the right way to be registered.






Recommended links:



News About Science Education



Harder than steel



BDA: FTTH Can Not Be Placed On IPTV



Shanghai Municipal Labor and Social Security Bureau announced "cold, hot" career



WMV to QT



QT to WMV



RECOMMEND Hobby



Specialist Install And Setup



C # drag and drop source Xiangjie 1



bite of people to suffer the bite of APPLE



FLV to SWF



ArcGIS standard coordinate conversion in the End how?



Individual CHARACTER! Avant Browser Skin easily create



Reflection: Dealers genuinely listened to recruitment



In the first half of the 12 most dangerous "killer"



Sunday, September 19, 2010

"Aion" 1.2 There are a brush obs of the bug is still alive



Briefly summarize, 10 trumpet through the cracks in the past, and large and small team, under the small touch NPC, large dead NPC, NPC and died before the small little back, large trumpet killed by NPC the OBS. Detailed Method:

Not qsk more than the answer is still on the brush with the npc in the 10 small, 1 hour obs 5-8 million range, required conditions: full level 3 and above other soldiers, No. 10 demons at all, no QSK, only resurrection stone, the last obs return from large!

This bug currently rests in the hands of a small studio (Studio 2) Today I do not find from them (know them because they find with a brush obs of) ``

Announced, could lead to the collapse of the end Tarcher; not release Well, they looked in vain RMB studio slowly sucked the last player the money to tear down the tower there is a choice and I told the official K out

The BUG is different with the QSK, QSK only with small, but can be used for this BUG `` not to spend a large capital. .

Is difficult to brush their own choice was not any interest in relying on Neat huh BUG out knives to injure `timid to make money? Not as good as real good job so that we might think I would wear, but I spend brush, and I am not guilty, I just get I earn to break down the cost of other people (game only). Large so that the work has been earned so far away 3700

Although many people find that studio BUG is on merit but it is labor income to eat it? This is only advantage of the loopholes, and I admire their mind but often in reality a lot of crime Dushi come by abused and lead Huoqu profits last victims of both life and wealth others and ourselves

Attachment: 2 people killed is not the legendary commander of the bug, that only after the killing early brush qsk hostile No. 2 retained data only

You will probably say no map no truth but even so you do not see the Figure you anything wrong, because the number of killings obs obtained with the same brush with no difference on







Recommended links:



Xi Guohua, vice minister of MII: China's 3G licenses around four factors



Do not heat to high speed fully Raiders Summer Thunder



.mov converter



Screen Savers Shop



Green Manufacturing MES Successes



3gp to avi converter



Mov to mpeg converter



South China Sea Hammer Properties Limited



Catalogs Access Control



Recommend Registry Tools



Beijing Matsushita employee dissatisfaction compensation for loss of containment of the company



Avc Converter



Jinshan tomorrow in Hong Kong IPO issue price listed on the Hong Kong dollar as a 3.6



Interview with Eastman Kodak Asia Pacific Director of Human Resources is pleased to Ms.



FreeBSD forget the root password of a REPAIR



Introduction Development



Thursday, August 5, 2010

Adaptive base class for window screen resolution



Adaptive screen resolution to make a window as an application base class of all forms. This entire process can be a good change to adapt to screen resolution. The principle is very simple to achieve, is to RESIZE the window to open when the control window and the window size, position. See the following source code, can easily understand.

1. Create a new window.

Write a function for the window f_resize () most of the work here.
No input parameters
Return value is shaping:

environment env
integer ii_ScreenWidth, ii_ScreenHeight
double WRadio, HRadio, Radio
integer ii_WinBolderWidth, ii_WinBolderHeight
getenvironment (env)
ii_WinBolderWidth = this.width - this.WorkSpaceWidth () / / get the border width of the form
ii_WinBolderHeight = this.height - this.WorkSpaceHeight ()
ii_ScreenWidth = env.screenwidth
ii_ScreenHeight = env.screenheight
/ / Compute the radio that need be resize

WRadio = ii_ScreenWidth/800 / / standard that the screen resolution of 800 * 600
HRadio = ii_ScreenHeight/600 / / calculate the relative 800 * 600 screen resolution variation
Radio = Min (WRadio, HRadio)
if Radio = 1.0 then / / if the screen is default 800 * 600
return 0
end if
this.hide ()
this.width = (this.width - ii_WinBolderWidth) * Radio + ii_WinBolderWidth
this.height = (this.height - ii_WinBolderHeight) * Radio + ii_WinBolderHeight
integer i
dragobject temp / / used to take a variety of control

for i = 1 to upperbound (this.control)
temp = this.control [i] / / adjust the size, location
temp.width = temp.width * Radio
temp.x = temp.x * Radio
temp.y = temp.y * Radio
temp.Height = temp.Height * Radio
choose case typeof (temp)
case tab!
tab mtab
mtab = temp
mtab.textsize = mtab.textsize * Radio / / set the font
case commandbutton!
commandbutton cb
cb = temp
cb.textsize = cb.textsize * Radio

case singlelineedit!
singlelineedit sle
sle = temp
sle.textsize = sle.textsize * Radio
case editmask!
editmask em
em = temp
em.textsize = em.textsize * Radio

case statictext!
statictext st
st = temp
st.textsize = st.textsize * Radio

case datawindow! / / datawindows get zoomed
datawindow dw
dw = temp
dw.Object.DataWindow.zoom = string (int (Radio * 100)) / / Note DATAWINDOW different from other control

case picturebutton!
picturebutton pb
pb = temp
pb.textsize = pb.textsize * Radio

case checkbox!
checkbox cbx
cbx = temp
cbx.textsize = cbx.textsize * Radio

case dropdownlistbox!
dropdownlistbox ddlb
ddlb = temp
ddlb.textsize = ddlb.textsize * Radio

case groupbox!
groupbox gb
gb = temp
gb.textsize = gb.textsize * Radio

case listbox!
listbox lb
lb = temp
lb.textsize = lb.textsize * Radio

case multilineedit!
multilineedit mle
mle = temp
mle.textsize = mle.textsize * Radio

case radiobutton!
radiobutton rb
rb = temp
rb.textsize = rb.textsize * Radio

end choose
next
this.show ()
return 0

Function written after the events in the form of OPEN can call the function.







Recommended links:



Mp4 to 3gp converter free



Media Player display track Time error



evaluation COVERT Surveillance



Icon Tools Wizard



Evaluate Trace And Ping Tools



Who won the dream of the vast cultural Kai



Liu Xu Micro Point: There Will Be More Soon To Be Opened Insider



convert mov to wmv free



Chang: The Heart of Love



With JSF + Spring + IBatis Build A Simple Framework



M4a to m4r



System Utilities Wizard



Guanqunjinchen Company Successfully Completed The Task The National Security



Senior Advanced: 12 strokes overall speed of your Firefox 3.5



World Cup Counterparts: Illustrator Drawing Three Cases Of Football



m4v



Dan Zhongshao: I want to lead by two years



Monday, July 12, 2010

Clever and FTP permissions under control related forums



Many enterprises have achieved through their own online forum set up to communicate with customers, employees the purpose of internal communications, in addition to FTP services through the preservation and sharing of resources functions. However, in actual operation of such a demand has emerged that there is a correlation can hope to achieve the Forum account and FTP account linkage. That customers or employees registered at the forum after the corresponding new account real-time FTP server also opened this account and an additional forum where registered members of different management groups corresponding to different groups of users upload and download FTP account permissions are different. Please IT168 today's readers and authors together to start learning how to ODBC is closely related to the Forum and the FTP account.

Using the Forum database verify the legitimacy of FTP accounts

1, the Forum associated with the use of FTP accounts:

Forum and FTP account management is the practical effect of this, companies usually have an online forum available to customers and employees to communicate, to discuss practical issues; the same time within the enterprise has a FTP server with a lot of work above the storage resources, in part, confidential, some are public. Now we are through the Forum and the associated FTP account can be achieved after the following features.

(1) employees or customers in the online forums immediately after registration of an account of the account can log in the FTP server.

(2) employees or customers log on FTP server using the account number and password and enter the Forum registration is the same.

(3) in the forum, there are many user groups, corresponding to different user groups different permissions, we can divide different groups assign different privileges to different user permissions for FTP transfer. This means that if the Forum is an account management team members, so he can get when your account login FTP higher authority, while the Forum account is a regular group members, with their own FTP account to log on after the authority is relatively low.

(4) not only by different user groups to assign permissions FTP login, we can forums such as the prestige points, money and other arbitrary parameters as a measure of the standard FTP permissions to implement account management rules.

Second, install the ODBC to mysql flexible up:

FTP is closely related to the forum and want to achieve is linked to the first forum to address the database can be used by the FTP, the author Discuz! Forum Gene6 FTP site set up between the introduction of this feature as an example. As Discuz! Using a Mysql database, Gene6 data can be referenced by means of external access to account information, which provided for us to meet the preconditions for linkage. However, to want Gene6 smooth access to external mysql database information, we need to install the ODBC Mysql database program, so that external reference possible.

The first step: We first visited the http://dev.mysql.com/downloads/connector/odbc/5.1.html this address, the latest version of ODBC to 5.1.3, we download the mysql-connector-odbc-5.1.3-win32 . msi the procedures.

Step Two: If we are to successfully download the mysql-connector-odbc-5.1.3-win32.msi must be registered, according to web page choose to register your account.

Third step: Register to download account, specific information and registration email similar point after completing the "Finish" button.

Step Four: Under the Download link prompts a number of countries we can choose between multiple addresses, in order to ensure the speed I recommend using Asian server to download, but unfortunately there is no internal download. I chose Korean link. Of course we can get two ways mysql-connector-odbc-5.1.3-win32.msi, one is HTTP, FTP download one.

Step five: After we downloaded directly run mysql-connector-odbc-5.1.3-win32.msi can be installed, his size is 4.12MB.

Step Six: Select the installation, the default available to us "typical", "full", "custom" of the three categories, in fact, we choose the default "Typical" installation can, point NEXT button to continue.

Step Seven: Copy files to local hard disk to be.

So far we have completed the mysql-connector-odbc-5.1.3-win32.msi installation, we MYSQL on the server to allow external programs through ODBC connection and access and query data.







Recommand Link:



Avi To Mp4 Converter Free



FLAC to wav



SuperBurner M4V Converter



Explosion MPG to DVD



Bliss APE WAV To Music Copy



File Compression Specialist



Happiness MP3 MPC WMA to VQF Backup



4Media Video Converter Standard for Mac



Good Audio VIDEO Tools



converter AVI to 3gp



Lohan WMV Converter



SWF format



Cucusoft DVD To IPod Converter Re. 5



Tuesday, July 6, 2010

LasVegas DVD to M4V


LasVegas DVD to M4V is a best video and movie converter to MP4 Movie software! This product offers convert all popular formats to iPod, PSP, Zune, iPhone, MP4 video/ movie, Easy Convert DVD, VCD, SVCD, AVI, MPEG, WMV, MOV, MP4, RM, RMVB, DivX, ASF, VOB, 3GP and etc. LasVegas DVD to M4V helps you watch your music videos and movies on your iPod, PSP, Zune, iPhone. In addition, you can also extracting audio from movie or music video and converting to iPod supported MP3 file format! LasVegas DVD to M4V is the fastest Rip DVD movie to iPod, PSP, Zune, iPhone, MP4 video, you can convert almost all kinds of DVD to M4V4 format. Its conversion speed is far faster than real-time, converting one DVD movie only takes half an hour in some high-end computers. LasVegas MP4 Suite supports single-step conversion of DVD video into iPhone-ready MPEG-4 format while some other soft wares need two steps which wastes unnecessary time.



Recommand Link:



Clipboard Tools Reviews



#1 DVD to Zune & Zune Video Converter



ImTOO 3GP Video Converter Platinum



Convert mpg to wmv



Simple Security And Privacy:



SuperBurner FLV Converter



Youtube to Wii Suite



Evaluate Screen Capture



Swf To Avi



download flv to mp3 converter



Youtube TO H264 Today



convert avi to ipod



Youtube to Wii Online



AoreSoft Video Converter



Tuesday, June 29, 2010

Plato Video To FLV Converter

Plato Video to FLV Converter is an idea program for anyone. It enables you convert almost all kinds of video files such as rm, divx, xvid, avi, wmv, asf, mpg, mpeg, vob, mov, qt, mp4, 3gp, swf, nsv to Youtube FLV video .
How powerful it is ! Share it right now ! With plato video to flv converter , you can get out of lots of player problems and get perfect and professional flv files without losing quality. Simple settings ,high speed, friendly interface , go to download it and have a wonderful try!
Key Features:
1).Support wmv , asf to flv.
2).Support mov , qt to flv.
3).Support rm , rmvb to flv.
4).Support mpg , mpeg , vob ,vcd , svcd to flv.
5).Support avi , divx , xvid to flv.
6).Support mp4 , 3gp to flv.
7).Support swf , nsv to flv.
8).conversion speed is more than 2 times of the playback speed.
9).Set the start position and end position of source file to convert.
10).Support batch files conversion
11).Support many predefined profile setting for Youtube FLV video.
12).Customize the quality of output FLV video.
13).Automatically shutdown your computer after long time conversion, such as for big files conversion at midnight.
We guarantee free update, free te-support and 30 days money back . Go to download it and experience a new lifestyle!




Recommand Link:



Youtube to TV Platinum



Youtube FLV to VOB Box



Digital CD-R WAV Music to MPC Maker



LasVegas Flash Converter



Browser Tools for you



Compare Flash Tools



Articles about Reference Tools



DVD to iPod Nano Conversion tool



Lohan DVD To Xbox



Silver DVD to PSP Converter



Bluesea Flash to Mobile M4V



Youtube Video Save + Player Value



HD To IRiver P7 Converter



avi to Flash



Sunday, June 27, 2010

OJOsoft PSP Video Converter

OJOsoft PSP Video Converter is an outstanding video conversion tool for Sony PSP. It can easily convert any video format to PSP video and audio with fast speed and great quality.

With lots of codec built in, it can convert to PSP MP4 video from almost all popular video formats including AVI, MPEG, WMV, MP4, MPG, DivX, 3GP, 3G2, MOV, QT, FLV, DVD(VOB), Xvid, MKV, TS, M4V, ASF, DAT, DVR-MS, H.263, H.264, X.264 etc, and also extract audio tracks from video files into PSP MP3 and M3A format. Additionally, OJOsoft PSP Video Converter provides an easy way to convert into PSP MP3 and M4A from popular audio formats, such as FLAC, WAV, AU, AIFF, WMA, MP2, OGG, AAC, AC3 etc.

Key Features:
1.Support converting video files to the video format playable on Sony PSP.
2.Support converting audio files into PSP MP3,M4A format.
3.Support extracting audio tracks from video file to PSP MP3,M4A format.
4.Support the latest popular video formats - MKV, TS, h.264, DVR-MS, VC-1.
5.Windows Vista Supported.
6.Unmatchable converting speed, wonderful output quality.
7.You can select video size, bit rate, frame rate, audio codec, sample rate etc.
8.So easy to modify the name and path of output files.
9.When converting files, you can pause, stop and continue at any moment.
10.With the user friendly interface, OJOsoft PSP Video Converter is suited for both veterans and beginners. You can complete your conversion as easy as 1-2-3.
11.All decoders and encoders are built in. Once you download and install OJOsoft PSP Video Converter, all supported formats can be converted without downloading any more codec.
12. Safe to install and viruses-free. We respect your privacy. So there are no spyware and adware in OJOsoft PSP Video Converter.

Order Now, Instant Key Delivery !

For more information, please visit http://www.ojosoft.com/video-converters/psp-video-converter.html



Recommand Link:



X-Cloner DVD To Apple TV



WEB Servers Wizard



brief News Servers



Joboshare DVD to DivX Converter



blackberry video FORMAT



How to convert HD to Sony NWZ-X1060



Paragon EASY CD-DVD Recorder



Dvd Ripper



Magic Music WORKSHOP



How-to MOV to DVD



Brief Puzzle And Word Games



BlueBird DVD Creator



Youtube FLV Save + PLAYER Home