gailcloutier

March 12, 2011

Forgot Win XP to resolve password problems

Filed under: Uncategorized

??EVIEW??If you install the Windows XP operating system, the system inadvertently forgot login “*****” password, you can NET command to solve the problem if you install the Windows XP operating system, accidentally forget the system login user “*****” password, you can NET command to resolve the issue:

Windows XP, provides a “net user” command, which can add, modify user account information, the syntax is:

net user [UserName [Password | *] [options]] [/ domain]

net user [UserName (Password | *) / add [options] [/ domain]

net user [UserName [/ delete] [/ domain]]

We are now in order to restore the local user “*****” password to illustrate the steps to solve the forgotten password:

1, restart the computer, immediately after the startup screen appears, press the F8 key, select “Safe Mode with Command line.”

2, run the end of the process, the system lists the system super user “administrator” and a local user “*****” options menu, mouse click “administrator”, enter the command line mode.

3, type the command: “net user backup bin conf config data eshow_sitemap.html generate.sh log maint sitemap.html svn tmp 123456 / add”, forced to “*****” user's password changed to “123456.” To this add a new user (such as: user name is abcdef, password is 123456), please type “net user abcdef 123456 / add”, add the following can be “net localgroup administrators abcdef / add” command will upgrade the system user Management group “administrators” of the user, and it has super rights.

4, restart the computer, select the normal mode, you can use to change the password after the “123456″ user has logged “*****”.

XviD to PSP Go

CONVERT M4A to MP3

IPTV needs to be the perfect COMBINATION of P2P and CDN

Prerelease download ATi Catalyst 5.5

College student hidden hard to guarantee the right to Life and health worries

Failure From Shutdown Trouble

mpeg4 to sony nwz E444

First Job Out Of The Ivory Tower Beginning How The Election

Directory Web Development

ICONS Shop

how to find large e mail attachments in outlook

October 30, 2010

Rising of the “poison” and also made time?

Filed under: Uncategorized

Rising frame-up by government officials colluded with the news industry peers, has been hot for a few days in the circle, and the Rising of the news, I have been holding a cautious attitude, so has not been making comments, there is reason to Rising is a virus sector real boss, will inevitably cause some opponents of the attacks; Second, a long time in CNbeta Rising comments which are not technology companies, a public relations firm, and therefore would like to see this news came out, what will be online within a few days results.

A few days later, the Internet is indeed a placid look, which in the google search for Rising-related news, you will find mixed, and did not form a one-sided condemnation of public opinion, looks really Rising power of public relations is not bragging.

See the google news search out a topic: Rising ass is clean if you cry it is useless to make people think this sentence is really happy.

The truth of what exactly is, I tend to believe, including “Science and Technology Daily” and other offline media, signed survey articles, we all know, in recent years to create a rumor on the Internet is easy, like in Science and Technology Daily newspaper, Rising tax laws in accordance with: “This article is completely false Xuewu elaborate creation, an attempt to topple Rising through the hands of the media to achieve their ulterior commercial purpose!” personally feel a little fantasy, and if so clear News reports are carefully planned cooked up, then you can Xiecai of Science and Technology Daily.

Rising to the past few years has been developed and to suppress competitors past evil deeds, the reliability of this information is very high, but at this time why everyone speechless? I am afraid that so many years inside or with the Rising shown strong public relations forces that, as now reflected in the same line, despite press releases for several days, but to search out the negative remains limited.

From this point, said Rising's now like early last year, Sanlu case.

In fact, competition within the industry is a very normal thing, but actually can make Rising bribe government officials, frame counterparts, and vice president of the MSI directly sent to jail for something, or make us surprised, but switched to another think that if this kind of thing can do, then, of course, a good fit Rising, Rising all if can not make here, then who can make out? particular, the two micro-point veterans of the old unit is Rising, Rising fixed point ruthless is easy to understand. Only this time, moving too far, missing a number of professional ethics is a small matter, violated state laws as nothing, a little narrow for their own corporate interests, advanced technology block is despicable. From this point, said Rising This is the human actions can not.

Moreover, in the frame in the process of micro-point, and a virus to someone else's computer contained more details, really chilling to Rising current installed capacity, want to confirm if the Rising, such as their ability to quickly check narcotics, anti-virus capability , antivirus fast pace of the class Youdian, will also what such should be passed the client will release the virus samples out, play a thief crying stop thief's farce? Though still only a guess, but the benefit to customers Zai psychological panic Kongpayijing Wufa Rising public relations by force removed.????????????????????????????????????????????????????????????????????????????????????????¤??????????????????????????????????????????????????????

??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????

Rising This scene, sung today, is actually pronounced by the Court to wait for that moment, had not much time left to show the Rising, Rising There is another point if the minimum social ethics, or at least have a bit of conscience, please be kind to you users, treat your employees, give them a bright road, the responsibility that came out a few things clear earlier, give us an explanation.

????:

Professional women in the workplace than enough Nine tricks

Premier Browsers

PREMIER Genealogy

Articles about Audio Players

PDM TO where

Rising to “micro-point event” behind all the strange to

The correct PARTITION, so 1.99G 2G into an integer

Commfree 2006 Working Conference

A little more effort, It will become good by a qualified

21st Century Business Herald: Penguin sea

ShotGraph ordinary principles of drawing

DV to M4V

actares.dll could not be Found error fix dlls

M4A to M4R

MTS to AVI

Wizard Languages Education

October 18, 2010

Study Notes of JSP tags

Filed under: Uncategorized

1. Overview

1) What is JSP tag

As the name suggests, JSP tag is used in the JSP file tags. It is similar to html syntax tags, like head, table. JSP file referenced by it (like using the html tags do), can be more convenient to realize the reuse of Java code modules.

2) Why use JSP tag technology (compared with javabean)

Benefits:

JSP JSP tag can handle the content of the body, such as changing the text display style; and javabean not.

JSP tag interface is simple, easy to use, but also easy to develop and maintain.

Disadvantages:

JSP tag javabean complicated than making a lot of settings, reflected in the JSP tag library description file (*. tld) in the configuration.

JSP tag to achieve so much as javabean strong.

As long as JSP1.1 support current JSP tags, and JSP1.0 and 1.1 support the use of the Bean.

2.JSP marked development profile.

JSP tag development need to write 2 separate files. One is the definition of tagging the java class files, one is the xml element name (tag) mapped to the probe in the tag library descriptor file.

??write JSP tag handler class files

Need to inherit javax.servlet.jsp.tagext.TagSupport class;

Simple example:

/ / File Name ExampleTag.java importjavax.servlet.jsp .*; importjavax.servlet.jsp.tagext .*; importjava.io .*; publicclassExampleTagextendsTagSupport (/ / program execution starting point publicintdoStartTag () (try (JspWriterout = pageContext. getOut (); out.print (”Customtagexample”);) catch (IOExceptionioe) (System.out.println (”ErrorinExampleTag:” + ioe);) return (SKIP_BODY); / / when the tag includes the contents of the empty return SKIP_BODY, said tagging / / has been executed))

Compiled class file will be located in a specific server location.

??write JSP tag library descriptor file

Will mark the function name and its representatives to achieve together.

Simple example:

< ! - File Name: csajsp-taglib.tld-->; < ? Xmlversion = "1.0" encoding = "ISO-8859-1"?>; < ! DOCTYPEtaglib PUBLIC "- / / SunMicrosystem, Inc. / / DTDJSPTagLibrary1 .1 / / EN "http://java.sun.com/j2ee/dtds/web-jsptaglibrary_1_1.dtd>; / / These are the standard file header / / The following is a tag library description ; 1.0 ; / / Tag Library version ; 1.1 ; / / JSP version of the library ; csajsp ; / / custom tag prefix name ; ; / / tag descriptor file uri, can be empty ; Mycustomtag! ; / / tag library description of the information / / the following definition of new tags ; ; example ; / / custom tag name ; tags.ExampleTag ; / / orientation label processing class files ; Simplestexample ; / / descriptions ; EMPTY ; / / JSP file does not process the body content ; ;

This file will configure a specific location on the server

??use the above custom JSP tags

< ! - File Name: simpleExample.jsp-->; < ! DOCTYPEHTMLPUBLIC "- / / W3C / / DTDHTML4.0Transitional / / EN">; ; ; < % @ tagliburi = "csajsp-taglib . tld "prefix =" csajsp "%>;// use a statement to mark ;<br /> <linkrel = STYLESHEETHREF = "JSP-styles.css" TYPE = "text / css ">; <head>; <body>;<br /> <h1>; <csajsp :example/>; </h1> <h1>; / use tag <csajsp :example/>; ; ;</p> <p>At the end of the output in the browser</p> <p>Customtagexample</p> <p>3. In-depth development of JSP tags</p> <p>Add a tag attribute ??br /><br />Class in the tag processing can function setAttribute (Stringvalue) distribution for the JSP tag attributes, this tag handler access to the property value according to the relevant functions.</p> <p>For example:</p> <p>privateStringmessage = “DefaultMessage”; publicvoidsetMessage (Stringmessage) (this.message = message;)</p> <p>Note: The property name is lowercase message, set the function of the Message is capitalized.</p> <p>??related needs in tld file add the following element tag element</p> <p><tag>; … <attribute>; <name>; message ; / / attributes names <required>; false ; / / attribute value is mandatory. False, said no, there is the default. <rtexprvalue>; true ; / / ture that property values can use the JSP expression, false that ban / / only use ; … ;</p> <p>??corresponding JSP file referenced as:<br /> <prefix :namemessage="Hello!"/>;</p> <p>??use the body tag</p> <p>????:</p> <p><a href="http://cloutiergail96.blogsome.com/go.php?u=http%3A%2F%2Fwoodrow-briggs.blogspot.com%2F2010%2F10%2Fadditional-team-bonus-energy-stimulate.html&i=0&c=f81911ab2c9215959c5b01bf16514c08ee44c416">Additional team bonus, energy Stimulate team</a></p> <p><a href="http://cloutiergail96.blogsome.com/go.php?u=http%3A%2F%2Fbobby-stafford.blogspot.com%2F2010%2F10%2Fnon-fiction-list-set-list-fashion-and.html&i=0&c=c6e57d0f75e42e3961a6fc1f162adc74dead4260">Non-fiction list: set list “fashion” and “elegant”</a></p> <p><a href="http://cloutiergail96.blogsome.com/go.php?u=http%3A%2F%2Fwww.ojosoft.com%2Fhow-to-convert%2Fmkv-to-wmv-converter.html&i=0&c=c2512c576d2a4d5cd2655677d530220cf3144326">MKV to WMV</a></p> <p><a href="http://cloutiergail96.blogsome.com/go.php?u=http%3A%2F%2Fclaire-cobb.blogspot.com%2F2010%2F10%2Fvigilance-wind-downloader-summer-lift.html&i=0&c=ea39456f913884e80cc947b1f0ffb6c25b3a7f96">Vigilance “wind Downloader” Summer lift vitality and</a></p> <p><a href="http://cloutiergail96.blogsome.com/go.php?u=http%3A%2F%2Fanastasia-mchugh.blogspot.com%2F2010%2F10%2Fteach-you-when-head-how-to-reduce-your.html&i=0&c=fb5804bf1c6c6957ae976b23ccadb3e5ba446eeb">Teach you when the HEAD: how to reduce your staff turnover rate?</a></p> <p><a href="http://cloutiergail96.blogsome.com/go.php?u=http%3A%2F%2Fhoangderek99.blog.com%2F&i=0&c=d9cbcef74febfa9547ebecb1f4f87222e781362a">Audio Video Tools Evaluation</a></p> <p><a href="http://cloutiergail96.blogsome.com/go.php?u=http%3A%2F%2Fwww.ojosoft.com%2Fhow-to-convert%2Fflv-to-zune-converter.html&i=0&c=614b2e70c207fe16ea5c4bcf5abbc076ff05fcbf">FLV to ZUNE</a></p> <p><a href="http://cloutiergail96.blogsome.com/go.php?u=http%3A%2F%2Frickey-rosenthal.blogspot.com%2F2010%2F10%2Fesso-card-from-city-to-look-into-need.html&i=0&c=433c58472fe36e1be864e4336593a45347da0b7f">ESSO card from the city to look into the need for integration</a></p> <p><a href="http://cloutiergail96.blogsome.com/go.php?u=http%3A%2F%2Fwww.techtext.net%2Fnetworks%2Ftypes-of-computer-networks-lan-wan-man-and-area.html&i=0&c=1483cdc29740ac8ed541bed700c363a14e2c9913">types of computer networks lan wan man and area</a></p> <p><a href="http://cloutiergail96.blogsome.com/go.php?u=http%3A%2F%2Fwww.rersoft.com%2Fmts-files%2Fconvert-mts-to-avi.html&i=0&c=fd5f1adc0876570d201fce63fc308efaf40b8a30">MTS to AVI</a></p> <p><a href="http://cloutiergail96.blogsome.com/go.php?u=http%3A%2F%2Fquincy-wolff.blogspot.com%2F2010%2F10%2Fmcwill-td-scdma-will-repeat-mistakes.html&i=0&c=ee17a51bc719d4f785367f0d6c0039e826de26a9">McWill TD-SCDMA Will Repeat The Mistakes</a></p> <p><a href="http://cloutiergail96.blogsome.com/go.php?u=http%3A%2F%2Fnemitzgeneva84.blogsome.com&i=0&c=f0fe5215f8a510f7cd562adf9ffbbedecf7cb2d3">Icons Shop</a></p> <p><a href="http://cloutiergail96.blogsome.com/go.php?u=http%3A%2F%2Fkerr-arch.blogspot.com%2F2010%2F10%2Fwant-to-match-can-do.html&i=0&c=da2937e5d9f4faa2ddef24410abbe55a2c363e4f">“Want To” Match “can Do”</a></p> <p><a href="http://cloutiergail96.blogsome.com/go.php?u=http%3A%2F%2Fcrokedon92.blogsome.com%2F2010%2F10%2F07%2Fiphone-screen-appears-blind-users-can-not-touch-operation%2F&i=0&c=3b10629088f8f0e37131d008509ca2248497448d">IPhone Screen Appears Blind Users Can Not Touch Operation</a></p> <p></rtexprvalue></required></name></attribute></tag></h1> </body></head></linkrel>

October 4, 2010

Dressing appropriately, moderate conversation interview etiquette all captures

Filed under: Uncategorized

Ru Yuan took the interview is a necessary hurdle favorite jobs. Interview, in addition to showing their own ability and quality, the appropriateness of dress, moderate conversation, generous manner, but also man a lot of extra points. Of these, belonging to the scope of the interview protocol.

Before the interview

??Fashion

Men must wear clean clothing, but do not dress up. Women should wear clean, bright and jingling jewelry accessories, too thick perfume, no straightening of the leg, had not been revised or fluffy hair and nails, etc., are sufficient to offset the cover letter to give the examiner a good impression.

The key is to choose clothing to see job requirements. Apply banks, government departments, the traditional formal dress favor; Apply public relations, fashion magazines, you can properly add some pop in the clothing elements. In addition to such candidates Entertainment Television advertising industry, the better not to select too unexpected wear. Graduates to allow some students dress up gas can wear casual suit. In addition, candidates should not wear too many accessories when it is easily distracted by the examiner's attention.

??punctuality

Punctuality is the basic requirement of professional ethics, 10-15 minutes to get to your interview ahead of the best. More than half an hour before arrival will be seen as no sense of time, but in the interview late or hurried is fatal. No matter what your reason for being late will be considered as a lack of self-management and capacity constraints.

If you walk far, would rather leave early, but not immediately after entering the office early to be waiting in a nearby cafe.

Among the interview

??body language

Eyes:

Exchange eyes are looking at each other, but must not look at someone died. If more than one person present, we must often look glance at other people, to show respect and equality.

Handshake:

When the interviewer's hand coming toward you stretch after holding it, should be a firm handshake, eyes to look directly at each other. Not too hard, not rattled; do not use two hands to shake hands in this way the company appears to be less professional in the West. Hands should be dry and warm. If you have just arrived at the scene interview with cold water rushing down hand, to keep themselves calm. If the palm of cool, the hot water and covering about.

Sitting:

It does not matter close to the back seat, not filled, the body after the Chamber to sit down and lean forward. Generally suitable for two-thirds filled with chairs. This not only allows you to easily free up energy to deal with the examiner's questions, nor to let you relax too much.

Little trick:

Small actions can not be done in interviews, such as origami, pencil, this will become very serious and distracts an opponent. Do not fumble hair, beard, ears, this may be interpreted as your personal hygiene before the interview did not do a good job. Speaking is a nervous hand Wuzui performance, should be avoided.

??conversation

Language is the job of the second card, which objectively reflects the quality of one's culture and content of training. Interview on the issues raised should be fluent, just right, not rhetoric, exaggerated. Conversation should take the following points: first, to highlight the individual strengths and expertise, and have much credibility. Language to summarize, simple, powerful, not dragging its feet, upside down. Second, to show the personality and personal image making clear reference to someone's remarks can be appropriate, such as with teachers, friends, comments to support his description. Third, insist on facts and less empty word, interjection. Fourth, we should pay attention to the logic of language, presentation, structured and focused. Finally, try not to use short, dialect, dialect and the spoken language, so as not difficult to understand each other. When unable to answer a question should be truthfully tell each other, vague and quackish Luankan will lead to failure.

After Interview

??Thanks

In order to deepen the impression of recruitment to increase the likelihood of successful job search, interview two or three days, job seekers the best recruiters write a letter to thank. Letter of thanks to simple, preferably not more than one page. The beginning of the letter should mention your name, simple as well as the interview time, and thank the staff recruitment. The middle part of the thank you letter to reiterate the company, candidates interested in positions. The end of the letter can be expressed confidence in their own, as well as the company's determination to contribute to development and growth.

????:

MKV to Xbox 360

NEW Hobby

AWS Express, turned out to Yanhuang PCC writing a new chapter in BPM

Taobao Alipay betrayal?

Review Java And JavaScript

DVR-MS to MPEG

how to burn xbox 360 games onto dvd discs

Eclipse + JBoss + EJB3 Entity Bean's connection strategy

GK-Star What?

My favorite Text Or Document Editors

QuickTime to MPEG

Feeling so steady and VB API (1)

Create A Simple Window

If tomorrow is the last night of IPv4

for you CLIPBOARD Tools

September 26, 2010

we2.0 will not reform his own life?

Filed under: Uncategorized

Monk into the night, Wang Ge, Lv Xinxin, Bo Xing, Wang Yi, Zhan Bin, dinner parties and armed forces, during the dinner, we can not help but talk about a topic WEB2.0. A little black humor, although everyone is doing WEB2.0 but we surprisingly agree on a point that most of the new-WE
B2.0 in the next one year, the company will die.

Yesterday, I wrote a chapter “IDG Why not vote web2.0″, a lot of network media are transferred, today there are friends on and I said, how do you, and more vigorously to IDC, IDC ah to be back? I said, I really do not fall IDC, IDC not vote WEB2.0 I think is very reasonable, perhaps, the article title to read “IDC why should they vote WEB2.0″ would be more reasonable.

Most of the newly created WEB2.0 companies will disappear in the near future does not mean bad WEB2.0. On the contrary, precisely because the future of WEB2.0 very good and the trend will lead to a large number of company start-WEB2.0 death, and contributed to the death of these WEB2.0 companies in addition to awakening the portal (including search portals like Portal ), the greater will be the industry to exist, WEB1.0 age grew up shell or shell site software.

Personally believe that the future commercial value from the analysis and the Internet company's development path, the existing ALEXA ranking in 2000 (even 3000) were less than with a segment leading website, or P2P, search, IM and other services industry and market position combined with three client software would be a good shell resources. The former, such as IDG investments 163 888 (though I personally think that YYFC better, but the capital involved, those small gap can quickly make up), VERYCD, CHINABBS, QIHOO, who like hearing thunder, FLASHGET, Zhou Broadcom, MXIE etc. .

Why are these WEB1.0 grew up in the times website or software will be more ups than WEB2.0 future? I feel that this and bad times WEB2.0 competitive environment and the low threshold WEB2.0 itself a great relationship. On the one hand, for these companies, they do not SINA, SOHU, as the huge body, but the current size and status, make of them, such as start-ups as Shenqingruyan, you can always turn around, or is an imitation. Even their own little innovation, but the mere imitation can quickly catch up from behind.

On the other hand, WEB2.0 industrial development makes new companies than the traditional Internet companies need more resources, which more reflected in the flow of resources for population and income sources.

From the flow point of view, ALEXA2000 name within the site or the software market in the top three most of the accumulation of experience for a long time, through the contents of traction, in a sub-segments achieved a leading position. View from the user base, the professional segment of the market position of its own interests gathered in a similar population, has a good foundation WEB2.0. Can achieve a good change from WEB1.0 to WEB2.0. A typical example 163 888 or YYFC can quickly change image potatoes, watercress such WEB2.0 mode. Relatively fixed populations and habits can make it much faster than the speed of development is now the newly created group WEB2.0 company. Judging from the revenue, can sustain the first three sites and the software industry itself has formed a shape of the business model or source of income, WEB1.0 WEB2.0 changes to the process, as long as proper control can be very good implementation of change, which is obviously still looking for the business model WEB2.0 startups are not available.

Of course, not to say that the new companies WEB2.0 not have the opportunity, in these newly created WEB2.0 companies must have a lot of ultimately successful or even to Nasdaq IPO. But for most of the newly created WEB2.0 companies, grew up a lot of WEB1.0 time the existence of shell companies will give customers and venture investors have more choice, and new companies to go WEB2.0 Road is much more difficult than imagined.

Recommended links:

Skype blocked Deserve?

Storage Terminal And Telnet Clients

Sina Focus M & A suspected insider trading Fosun

VOB To FLV

mp4 Dvd

comparison Network And Internet

Sonic Foundry Vegas 4.0 Collection 25 novice fly into effect

The “Page Setup” Come Right Menu

Young PROFESSIONALS entering the workplace to learn the three key issues

Picked Audio Speech

Was brilliant: Ten-man weapon crack Revealed inside story of classical

DV to AVI

DAT To MPEG

Teach You To Quickly Identify “Sasser”

My favorite Computer Education

Panda Burning Incense On A “second Chance”

Focus DreamWeaver MX 2004

August 6, 2010

Using Photoshop make Windows logo

Filed under: Uncategorized

Mainstream desktop operating system has been dominated by Microsoft, its advertising is overwhelming, the image window signs everywhere. Now we set the font to use Photoshop 7.0 features a three-dimensional effect making the window signs.

Production steps:

1. Start Photoshop 7.0, a new length and width of 1000 pixels, respectively, a resolution of 150 pixels / inch (if the poor PC performance can be lowered, such as taking the default of 72 pixels / inch);

2. Production of four plane deformation of the cube effect:
I first filled with a further distorted graphics, but difficult to use the distorted wave filter distortion effects of graphics, making very satisfactory results. Photoshop has thought about the font distortion effect, distortion effects just the right one banner to create the deformation. Using the font tool, type in the new layer and arranged in four ??field shape, the font size set to 450pt, in the character panel to set the appropriate parameters

3. Select the font and then open the Text dialog box deformation.
In the drop-down list, select the banner of the bending deformation is set to +20;

4. Again after deformation font fill color.
Followed by the filling color value # FF6E0E, # A8DE40, # 9E0AFB, # FBF812. Figure 3 results obtained;

5. Create lighting effects:
Select one of the plates with Mobanggongju, for color fill. We use the mask to make gradual visual effects, real-time preview so that we can adjust the effect, click the adjustment layer button on the panel, choose the gradient shown in Figure 4

6. We need to adjust the color gradation is shown in Figure 5;

7. Gradients in Figure 6 after the final results;

8. To sign a three-dimensional graphics effects:
Put together all the layers (in the source file before flattening to do a copy for future amendments). Then we can see graphics obvious jagged edges, we can be feathered edge graphics, smooth the edges so soft. Feather taking value of 1 pixel, and then free transform on the graphics, the graphics rotation angle, and to a certain degree of tension. Open the Layers panel, double-click the layer in the Layer Styles dialog box that pops up set the slope and relief, projection, etc., were carried out on layers Figures 7 and 8 set;

9. The final result after layer effects shown in Figure 9;

10. Production Background Picture:
There are signs of light would be too monotonous, the whole lot of graphics can be modified. New layer of a layer as the background color value of # 26CEC8. Select the menu: Filter -> variegated -> Add variegated: the number of 5%, choose Gaussian distribution, the monochrome Gouxuan. Then layer for motion blur: angle of 30 degrees, a distance of 20 pixels, obtained the required texture. This step can also be set according to personal preference. Then add some text effects, the final results shown in Figure 10:

????:

District EXTENSION: I dare go?

Convert Avi To Wmv Free Download

Convert .mov To .wmv Free

Dreamweaver MX Ultradev exploration (2)

Good Registry TOOLS

For Unix terminal as the user moving

He Jinghua Xu Shaochun joined the first on

Photoshop Material Series: The Fog

flv to mp4 CONVERTER free download

PHOTOSHOP top aides - EXTENSIS Photo Graphics (1)

Hot Themes And Wallpaper

Search Baidu slowly in a hurry to Dianqian Changing Faces

PPT to teach you to easily modify the colors in the clip art

Ps3 video formats

August 3, 2010

Teach you to quickly identify “Sasser”

Filed under: Uncategorized

May 1 Jing Xian Internet “Sasser (Worm.Sasser)” menacing viruses, the virus is through Microsoft's latest high-risk vulnerability-LSASS vulnerability (MS04-011 bulletin Microsoft) spread, the danger of great current WINDOWS 2000/XP/Server 2003 operating system users such as the existence of the vulnerability, users of these operating systems as long as an Internet, there may be the virus attacks. Teach users how to quickly identify the following “Sasser (Worm.Sasser)” virus.

If the user's computer is one of the following phenomena, then that has been poisoned, they should take immediate measures to eliminate the virus.

First, a system error dialog box appears

Attack of the user, if a virus attack fails, the user's computer will appear LSA Shell service exceptions box, and then restart the computer after a minute there the “System Shutdown” box.

Second, a corresponding record in the system log

If the user can not determine whether there had their own computer box above exception or system reboot prompt, you can also view the system log of the way to ascertain whether the poisoning. Method is to run the Event Viewer program, see which system log, if logging as shown below, the proof has been poisoned.

Third, the system resources are a large number of occupation

Virus A successful attack will take up a lot of system resources, so that 100% CPU utilization, appears the phenomenon of the computer running unusually slow.

Fourth, there is named in memory of the process avserve

Virus A successful attack will generate in memory process called avserve.exe, users can use Ctrl + Shift + Esc approach called “Task Manager” and then see if there is a memory in the process of the virus.

5, appears in the system directory file named avserve.exe virus

Virus if the attack is successful, the system installation directory (default is C: WINNT) generated under a virus file named avserve.exe.

6, the virus appears in the registry key

Virus A successful attack would create a registry entry HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionRun virus key: “avserve.exe” = “% WINDOWS% avserve.exe”.

Recommended links:

Hiddink Looking Like The Kind Of CEO

Alibaba Ma: EVEN if I have to finally kneeling down

Step by step with ME to learn X-Spaces personal space template changes

Audio And Multimedia Specialist

Dialogue Negroponte: U.S. Dollar 100 Computers Who Moved The Cheese

Quicktime to avi

avi converter to mp4

Green Ocean Is No Longer “lose”

FreeBSD Serial (65): SMB CIFS Protocol

Analysis Of The Japanese Shipbuilding Industry

Expert Teaching And Training TOOLS

CorelDRAW To Create Colorful Light Bulbs

Video mpg

What is a switch

Psp 6000

July 13, 2010

PowerBuilder window type

Filed under: Uncategorized

Chapter VI of the window and controls
The application window is the main interface with the user interaction. Use it to display system information in response to the user's mouse and keyboard input and so on. In this section we will use the PowerBuilder application template feature to create an application, use this procedure to introduce the concept and operation of the window.

First, we use System template feature to create an application:

NEW FILE menu click menu item SELECT NEW APPLICATION LIBRARY system pop-up dialog box to select an object library, here in the D: DATABASE directory create a new object called the SAMPLE database, then click “Save” button ,

SAVE APPLICATION in the next dialog box similar to the new application object named SAMPLE, and then click the OK button OK

System pop-up dialog box asking if you need to create application templates, where “Yes”, then the system started for us to generate a multi-document interface application, APPLICATION drawing board is automatically displayed to help us create a good number of objects (Figure 6 -1). The icon can be seen from the object of these objects are windows and menus, then on to the window where the window object example to introduce the concepts and operations.

Figure 6-1

PowerBuilder provides six different types of windows, and they have varied, the following instructions were:

The first to introduce the MAIN type of window, its characteristics is not dependent on any other window, can exist independently, an application can have more than one MAIN window, you can when needed in the program with the OPEN function to open any of them. In addition, the window can be placed in the MAIN various controls required. Click POWERBAR WINDOW toolbar button, select the W-GENAPP-SHEET window and click the OK button to determine the operation done, and then drawing board in the WINDOW object in the window right-click pop-up menu select PROPERTIES menu item, the pop-up dialog box Note WINDOW WINDOW TYPE column, you can find W-GENAPP-SHEET window is the MAIN type, in which you can put all kinds of control.

The second type of window is POPUP type, which usually features a script from the other window, open it using OPEN function, this type of window opens automatically open the script window with child windows. POPUP the type of window can be displayed on the outside of the parent window, but can not be covered by the parent window, when the parent window is minimized or closed, it also minimize or close accordingly.

A third type of window is CHILD type, which is characterized by usually from the main window or pop-up window script, using OPEN function to open it, it can move the parent window, but not out of the main window's work area , and when the parent window when moving, CHILD window has moved.

The fourth type of window is RESPONSE type, it is a model window, that is, when this type of window is opened, the input focus switches to this window, the user only in the operation and close this window This window can use the program after the other windows. SAMPLE earlier applications, W-GENAPP-ABOUT and W-GENAPP-TOOLBARS window is RESPONSE types of windows.

Fifth type of window is MDI FRAME type is characterized by the window in this type generally do not put the control, but to this type of window as a container for other types of windows, use this type of window can realize multi-document interface, in containers each window to display a document. In our program, the W-GENAPP-FRAME window is an MDI FRAME types of windows. Click the RUN button on the toolbar POWERBAR run the application, the application is running, click the NEW button on the toolbar, then select the WINDOW menu T99vLE VERTICAL menu item, you can see the main window showing the work area several windows, these windows can be used to display a different document (Figure 6-2)

Figure 6-2

The sixth type of window is the MDI FRAME W99vH MICROHELP, this type of window and on a basic, like, the only difference with this work area below the window with a status bar, use the status bar displays some operations message. In fact just the window W-GENAPP-FRAME is this type.

Recommand Link:

CONVERT flv to mp3

Comment Icons

Swift M4V FLV Deconde

Guitar Shed

Easy To Use Astronomy

avi to wmv converter free

Youtube Movie to Xbox Deluxe

Games Simulation Infomation

Bluesea Flash to Blackberry FLV SWF

Hope DVD to FLV

Bluesea MPG M4V Convert

matroska FORMAT

Pavtube DVD Copy

.ts Files

July 6, 2010

AlltoDVD Flash to iPhone

Filed under: Uncategorized

AlltoDVD Flash to iPhone is the fastest DVD movie to iPhone video converter software so far in the world. and reliable tools for DVD MPEG2 video to iPhone video format video conversion. Almost all kinds of DVD formats was supported by AlltoDVD Flash to iPhone. With Flash to iPhone Converter, you can convert almost all kinds of Flash to iPhone video (mp4) format. Its conversion speed is far faster than real-time, converting one DVD movie only takes half an hour in some high-end computers. AlltoDVD DVD Movie to iPhone Video Converter 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:

Free Flv To Mp4 Converter

Convert Mpeg To Wmv

Christmasgift WMV To DVD

Bluesea MP3 AMR WMA to MP2 Editor

mp3Tag

Apolo iPod to PC Transfer

ApecSoft Audio Stripper

AlltoDVD SWF Converter

Best Download Managers

Explosion MOV to DVD

mp4 converter TO avi

M4v to flv

Good SECURITY And Privacy:

AlltoDVD Youtube Converter

For You Accounting And Finance

June 30, 2010

Express Dictate Dictation Recorder

Filed under: Uncategorized

Express Dictate is voice recorder software that works like a dictaphone and a dock station for a portable recorder. You dictate using your computer or a portable dictaphone or notetaker and send your recordings to your typist or assistant by email, FTP or over your computer network. Express Dictate can dramatically improve the turn around time for work and, most importantly, lets you work from wherever you want.

Features
~ Digital audio recording with superb signal processing quality (32 bit DSPs are used).
~ Record to wav, mp3 or dct formats (only dct supports encryption, sender information and notes).
~ Automatic non destructive record editing with multiple record modes including record-insert, record-overwrite and record-at-end.
~ Voice activated recording so long silences in dictation are not recorded.
~ Assign priority to individual dictations.
~ Ability to prompt for patient or file data before recording starts and supports the VIS Laser Barcode Scanner.
~ Send recordings directly to a typist immediately by email, over a computer network or via FTP or save to your hard drive.
~ Supports recording encryption if you are required to secure patient or client data for transmission over the internet (HIPAA compliant).
~ Ability to ‘dock’ normal analog and digital handheld dictation recorders so even if you don’t record with Express Dictate you can still use it to transmit recordings to your typist via email.
~ Attach additional files to the recordings or type in notes for your typist or for the record.
~ Ability to recover sent dictations.
~ View “Sent Work Progress” and backup sent dictations to hard drive or CD.
~ Audio compression to reduce file and transmission size. Codecs supported include PCM, wav, mp3, gsm and many more.
~ Can be controlled by system-wide hot keys (so you can record while working in other screens).

Recommand Link:

Apolo Apple TV Video Converter

youtube to wmv

Happiness SVCD VOB DAT Manager

Font Tools SPECIALIST

DVD to Sony NWZ-E436FBLU software

mov to avi converter free

Pavtube Video To Apple TV Converter

video to IPod Nano conversion tool

Professional DVD VOB Cloner

Hot DESKTOP

Explosion Blackberry Converter

PDA DVD-Audio Converter

Games Kids Catalogs

Lohan DVD to 3GP






















Get free blog up and running in minutes with Blogsome
Theme designed by Hadley Wickham