ViewSonic VP920b 19-inch LCD Monitor

PC Hardware : ViewSonic VP920b 19-inch LCD Monitor

ViewSonic VP920b 19-inch LCD Monitor

from: View Sonic



 : ViewSonic VP920b 19-inch LCD Monitor
See Larger Image







Binding: Electronics
Brand: ViewSonic
Color: Black
EAN: 0766907169416
Label: View Sonic
Manufacturer: View Sonic
Model: VP920B
Native Resolution: 19
Publisher: View Sonic
Studio: View Sonic
Warranty: 3 years warranty



Editorial Review:

Product DescriptionThe ViewSonic VP920b 19' LCD is the big contender of thin-bezel offerings with its uniquely sculpted detailing and Thinedge design with ergonomic adjustments. Class-leading features like XtremeView wide viewing angles and CLEARMOTIV 4MS gray-to-gray broadcast quality video response deliver superior clarity and perfect focus when viewing moving images. An excellent choice for graphics production, financial and medical professionals this display can be wall-mounted to free up desktop space or set up into multi-panel configurations to extend the viewing area and enhance productivity. Visual performance combined with rear-integrated speakers complete your multimedia experience. The VP920b 19' LCD separates itself from the rest with both price and performance.




Features:
  • 19 LCD OPTISYNC DIGITAL/ANALOG I/P HEIGHT 1280X1024 RES 250NIT
  • VIEWSONIC


















banned interdit verboden prohibido vietato proibido
  banned    interdit    verboden   vietato     prohibido    verboden  banned      vietato      interdit proibido   vietato       interdit      verboden      banned  prohibido   

Your IP has been blocked. Please perform the action below to regain access.

Code:  security image
Please enter the Code: 



Customer Reviews
Average Rating:  out of 5 stars

Rating: 2 out of 5 stars - dissapointed
I bought this LCD Monitor as a present for my parents to replace their old 15" CRT. This monitor was supposed to be in ViewSonics "professional" line. I was really disapointed with the quality of the monitor display. Compared to the CRT, the font was not clear, the contrast was poor and the colors were washed out, no matter how I tried to adjust all the control possibilities. My parents wished for their old CRT back, so I returned this LCD to Amazon, with absolutely no problem at all. For office work, this monitor is not to be recommended.



Rating: 5 out of 5 stars - Very good monitor
When my old nine year old monitor finally gave up the ghost, I decided to go for a flat screen. The first one I got was a huge disappointment. The overall screen quality wasn't very good. My previous monitor had been a ViewSonic and I was extremely happy with it. I found the ViewSonic VP920b and purchased it as a replacement for my first bad choice. I have not been disappointed with the ViewSonic. The picture quality is outstanding.



Rating: 4 out of 5 stars - TN panel, but better than I expected
Inexpensive LCDs have Twisted Nematic (TN) panels, which change brightness and color tint with viewing angle and are not very fast. MVA and PVA try to fix those problems with TN. IPS (in plane switching) panels are the most color accurate but also not fast ... and they're expensive. I really wanted a VP930b which has an IPS panel, because I do photo editing, but went with the VP920b, which I've read has a TN panel, due to price. It's quite bright, crystal clear, and when set to the sRGB preset color accuracy is surprisingly good! The last couple of bright white shades are difficult to distinguish; dark grays down to "black" (actually, just very dark grey - TN panels don't really get to black - keep the room lights on and you won't notice) are nicely distinguishable and are a good neutral grey - not tinted. Color/brightness variation with viewing angle is there but is substantially less than I expected, less than I've seen in some other LCD monitors - still, you will want to sit directly in front of it. All in all, it's a keeper; I am pleasantly surprised with what I got for this price.



Rating: 1 out of 5 stars - Short Lifespan
I purchased 2 Viewsonic LCD monitors and both lasted about a year and a half before the left side of the screens went dark. No diagnostics or interaction could bring them back to normal. I contacted customer support and was told that Viewsonic would do nothing. Maybe I was stupid or naive in not getting a warranty beyond the first year, but I assumed that a good product, made with good parts, from a company that desires to satisfy its customers with a good QA/QC program to ensure that quality products were being produced, could make a product that would last longer than a year and a half. With 2 moniotrs having the same problem within the same length of time, this indicates to me a non-coincidental problem within Viewsonic. I will not buy anything from Viewsonic again. I will spend a little more, if I have to, to buy a reliable product from a reliable company.



Rating: 5 out of 5 stars - Awesome monitor
I bought this VP920b a week ago. It is an awesome monitor. Look at the features it offers:
1. Height adjustment. Every LCD monitor should have one. There is no excuse for manufacturer not to include this feature.
2. Portait/Landscape pivot. Nice feature but not a must.
3. Thin edge. It is designed to put two or more monitors together into one big screen.
4. Integrated speaker. Make sure you turn the volume setting in the monitor to max and use your computer to adjust. It is adequate to me.
5. Analog and digital input. Make sure that your computer has digital output. All cables, including the DVI, are included.

The pictures are exceptional beautiful. It also depends on the source and resolution as well. I found no dead pixel which is a relief. The stand sits firm on my desk. No rocking motion is seen when I use my mouse or keyboard. I have not yet tested the response time. I am very happy with it. I had been research for a monitor with similar features for a while and there isn't any like it on the market.



read more customer reviews on ViewSonic VP920b 19-inch LCD Monitor


 





Cooking For Two - Convection Oven Cooking |
 wisescreen tv
Video Games   Reviews





The Web Services Policy Working Group has published two Web Services Policy 1.5 - Working Drafts: an update to the Primer and a First Public Working Draft of Guidelines for Policy Assertion Authors. The new Guidelines document provides ...

(Source: Sunbelt Software) Messaging, internal and Web-based threats are increasing in number and severity. The risks to organizations large and small are real problems that users and their employers face if they do not establish adequate defenses against this growing variety of threats.

Read this Osterman Research paper to learn how organizations must implement a layered defensive strategy to protect against all types of threats and how Sunbelt Software can help.


Mark Matthews' Weblog

During the process of building the new query analysis feature for MySQL Enterprise Monitor 2.0, we thought the best way to test it at a nascent stage was to use it to tune our own application (since we use MySQL as the backend repository). What we found was actually quite interesting. It also showed that even to seasoned developers, who know that frameworks while helpful, often aren‘t the most direct, concise way to get things done, can often do very strange things that you don‘t quite expect.

For those of you that haven‘t heard about the feature itself, “query analysis“ takes all queries that are being processed by a MySQL server, normalizes them into something similar to a prepared statement form by removing literals, and then keeps track of total, min/max, average execution times, result set sizes, etc. at an aggregate level. It also takes snapshots of the “worst” examples of these queries, the ones with the highest execution time.

When we started using the first implementations of the feature on our own code, we found the following, interesting output:

What stuck out (at least to us), is that there is a lot of time spent toggling auto-commit state. In fact, if you add the "on" and "off" together, it's the second-most time consuming statement in our entire application! We thought we had this licked before we even looked at this query analysis data, because our application uses transactions all of the time, so we told DBCP to always return connections in auto-commit "false" mode. We even looked through what we thought was enough of the DBCP code to make sure this would actually work. So, what was causing these statements to run anyway? Well, the trick was, at this point during implementation, the server-side agent wasn't ready, so we were injecting this query analysis data via statement interceptors in the MySQL JDBC driver. So, we also setup the “worst” query to put in a stack trace in the comment field:

So, it was indeed coming out of some glue code we‘d written to wire DBCP into hibernate for our application (and still use our existing configuration mechanisms). Once the way was pointed, we set some appropriate breakpoints, and low-and-behold, we find this gem:

public void passivateObject(Object obj) throws Exception {
if(obj instanceof Connection) {
Connection conn = (Connection)obj;
if(!conn.getAutoCommit() && !conn.isReadOnly()) {
conn.rollback();
}
conn.clearWarnings();
conn.setAutoCommit(true);
}
if(obj instanceof DelegatingConnection) {
((DelegatingConnection)obj).passivate();
}
}

It makes sense to rollback when a connection is put back in the pool, as the application could‘ve misbehaved and started a transaction but didn‘t call commit() or rollback(). But, then, DBCP, without looking at how we‘ve configured this data source (to always be in auto-commit “false“), goes ahead and sets it to “true”.

So, what to do now? Should we internally fork DBCP, and keep merging this one-liner change every time we update DBCP? Do we file a bug, and wait for a new release of DBCP (we will, eventually). How do we fix it now? Well, once again, MySQL‘s JDBC interception facilities to the rescue. We just implement a very simple ConnectionLifecycleInterceptor that has the following implementation of setAutocommit(), which lets the caller setAutoCommit(false) and have it sent to the server, yet setAutoCommit(true) will never be sent to the server, and the JDBC driver will adjust its idea of autocommit state accordingly.

public boolean setAutoCommit(boolean flag) throws SQLException {
if (!flag) {
return true;
}

return false;
}

Of course, we had to test that nothing bad happened with our application using this trick, and when we determined that it was safe to operate in this manner, we ran query analysis again, and lo-and-behold, one issue solved, other statements to fix:

In my mind, the power of this feature is looking at query performance in aggregation. Seeing the SET … statements popping up in “SHOW PROCESSLIST” (which you‘d be lucky to catch, they‘re very short), or even in the general query log, wouldn‘t have demonstrated the amount of time wasted that we see here in our UI. Using this feature we have iteratively improved performance, watching with each release which queries bubble to the top, and tackling them.

For those of you that would like to see this feature in action on your own systems, if you‘re an existing MySQL Enterprise customer, you can get access to the beta release of MySQL Enterprise Monitor 2.0 at the MySQL Enterprise website.

For those of you that aren‘t yet existing customers, hold tight, soon we‘ll refresh the enterprise trial with this codebase.

In either case, feel free to ask us questions about the new features in our forums at http://forums.mysql.com/list.php?166

For those of you wanting to integrate query analysis with your application at a source-code level like we did with this example, hold tight as well and watch this space. MySQL Enterprise Monitor 2.0 supports REST as a way to populate the repository, and I‘ll be posting an example of how to do this with Connector/J and statement interceptors soon!


DAYTON, Ohio (Reuters) - Republican John McCain made a surprise choice of Alaska Gov. Sarah Palin as his running mate on Friday, adding a political unknown to the presidential ticket who could help him appeal to women voters.






ViewSonic VP920b 19-inch LCD Monitor

Shopping