display

Multidimensional data feedback

This is hardly a programming question, so if you're a purest feel free to read no further. Are there any good examples on how to display multidimensional data on a computer screen? I don't know how many dimensions there will be, though anything more than 10 I suspect will be rare. I can think of the obvious solution, but I don't know if...

Display the 'right' style of a div with JQuery

I'm trying to display the "right" value of a div named "slider", displaying it inside of "span.display_value" var rightStyleValue = $('div.slider').css('right'); alert(rightStyleValue); $('.display_value').html(rightStyleValue); UPDATE: Html is posted below. I'm using a drag and drop script to drag a div called "slider" that...

EnumDisplaySettings reports wrong values on Win7 with Nvidia cards

I've been encountering a problem when trying to query all available resolutions on some nvidia cards under Win7. for(int i = 0; EnumDisplaySettings( deviceName.c_str(), i, &dm) != 0; ++i) reports resolution which aren't available like 866 x 650. Most supported resolutions on the other hand are missing. Changing driver/monitor setup di...

Stacking DIVs in top of each other?

Hi, Is it possible to stack up multiple DIVs like: <div> <div></div> <div></div> <div></div> <div></div> </div> So that all those inner DIVs have the same X and Y position? By default they all go below each other increasing the Y position by the height of the last previous DIV. I have a feeling some sort of float or display or other...

Search Controller is not showing up in TableView Controller.

I draged and dropped Search Display Controller onto my TableView Controller. When I push that TableView controller from RootView controller, Search Bar is not showing up on the top of the TableView. I used the same technique for the rootview controller and I could see SearchBar on the top of my TableView. What could possibly cause that...

jQuery css() function won't apply IE hack attributes

I'm trying to apply an inline-block style to an element (a div to be specific). And in order to achieve this in IE you have to use a hack: $('#element').css( { 'display' : 'inline-block', //applies inline-block to matched elements in all browsers except IE due to hasLayout bug 'zoom' : 1, ...

Set the display precision of a float in Ruby

Is it possible to set the display precision of a float in Ruby? Something like: z = 1/3 z.to_s #=> 0.33333333333333 z.to_s(3) #=> 0.333 z.to_s(5) #=> 0.33333 Or do I have to override the to_s method of Float? ...

Pointers wanted: How to display image grids / plots with superimposed vector data?

A few years ago I participated in an MFC VC++ project to draw a grid of JPG or TIFF images and superimpose them with vector data of lines and shapes. Something like a plot of 4X6 images of areal photos and lines showing distances and directions between user defined points. What are good ways of doing the same nova days? Would the Silv...

How do I display a name for a form that is not its real name?

When a form opens in MS Access, it displays its name on the title bar of the form. I want to hide the real name of my form and display a more user-friendly name on the title bar. How can I do this? ...

Simple Java Display Images

I have a GUI written using netbeans with a few simple components in place. I want to be able to draw images (any file type, whatever's easiest) alongside the GUI components inside the JFrame. Don't have to resize them, just draw them as they are, at the x and y location of my choosing. There will be several images being drawn at each up...

Split Strings and arrange db to display products in PHP

Hello, I'm new in php. Could you please help me to find the way to properly arrange following task: Table "Products" id - details 1 - 1-30,2-134:6:0;;2-7:55:0;;1-2,2-8:25:0 - where this string can be very long 2 - 3 - 1-360:17:0;;1-361:185:0 Every product 1, 2, 3, ... are stored in db in one row, although product is addition...

Java Netbeans simple display Image in Design Mode

I am using a custom subclass of JPanel to offer me more control over the display of some images. The code to it is below. However, in Netbeans, in design mode, I would like to be able to see the image that I am working with, instead of simply looking at the outline of the object. There is an image attribute, but the only way I can cur...

Hierarchy Datagrid Display in Wpf

hi am new to wpf can any body help me how to display hierarchy /grouping in wpf datagrid using backend as sqlserver 2005 ,language c#. thanks in advance.... ...

img with {display: table-cell} -- is it a bug?

I want to use the display: table-* css properties to format a list of photos. I believe that below is a "correct" implementation of it, in that there's nothing theoretically wrong with it, but it displays in Firefox and Safari with the table layout screwed up, as you can see by the borders. For a comparison, try wrapping both img tags be...

upload small file in asp.net end up in Page can not be displayed

Hi, I am using asp.net file upload control to upload excel file data to database. Till morning it was working fine..But now I am not able to upload even 10 kb files.. The httpruntime ->maxrequestlength values is 10mb in my web.config :(. Please help me :( :( :( Advanced happy new year !!! ...

Display jpegs coming from http post

Hello. I'm sending jpegs to a web server via Http POST. I can access the bytes of each jpeg file that reaches the web server. Now I want do display these jpeg as they reach the web server, as a mjpeg video. How can I do it? Please help! Thanks ...

Attempting to use Segoe font in browser

I want to render a page with fonts mostly being font-family:"Segoe" (that line goes in the appropriate class selectors which I've verified are working), however I get back a standard font (times new roman I think). Why won't it work? I am on Windows-7 64 bit so it's installed. ...

RadGrid - check if a column is fully/partially displayed

How can you check if a column is partially or fully shown on screen when using a radgrid. ...

Float a div above page content

I've implemented a popup box that dynamically displays search options. I want the box to "float" above all of the site content. Currently, when the box is displayed it displaces all of the content below it and looks bad. You can see an example at http://www.employeratlas.com/advancedsearch by clicking the "Add Specific Locations" opti...

Getting the Visual of a multi-layered WPF control

I've got a control that is essentially an Image with an AdornerDecorator layer on top which acts as a layer for mouse selection. What I'm trying to do is to get the section of the Image which has been selected without having to deal with mapping the co-ordinates of the selection back to the image (as there potentially many transforms whi...