displaying

What's the best 3d model format for loading and displaying inanimate textured objects in an OpenGL program?

I just want to know what file formats are the most OpenGL friendly in terms of loading and displaying inanimate textured 3d objects. ...

DropdownList Setting Default Value

How should i get a value displayed in the dropdownlist when redirected through a cancel buttton.The value in the page where cancel button is there in a textbox should be cought in the dropdownlist. This dropdownlist is having selectedindexchanged event also fired for which on selection of a country in the list we get a listview displaye...

Programming microcontroller to store images and displaying them as a dia-show with an dvi/hdmi output in several resolutions?

Hi, I would like to solder a microcontroller, control buttons and an DVI/HDMI output and program this in a way, that I can store images on it and let them display as a dia-show via the outputs. It doesn't have to have a lot of storage capacity, 128Mb would be enough. but I don't know how to start, because I haven't done anything like t...

Displaying large sorted lists in WPF QUICKLY?

I am developing a program that should be able to display long (up to 500 items) lists of data that need to be resorted when their contents change. Essentially, I have a viewmodel with an observable collection that contains classes with observable data bound to the gui, which is displayed in a ListView. The data must be sorted, but the ...

Site not displaying but rather downloading

Hi there, I am working on a site and just published it to the client's domain, but when I try to access the root or subpages, they download to my computer rather than displaying as the pages. Could it be the fact php is not installed (the server is managed by my client so I don't know if PHP is installed)? Thanks, Elliott ...

How to display table in COBOL's SCREEN SECTION?

Hey everyone, For learning purposes I am trying the following: I am trying to display a table via COBOL ... I want to define the way it is all displayed in the SCREEN SECTION. Following happens or is supposed to happen - all without multiple screens opening: (1) User enters ENTRY-SCREEN (2) User has to type in a password (nothing hap...

how to draw a text in OpenGL view cocoa-objective-c

i need draw a counter onto a OpenGL view. here is my source code for the video frame display cgl_ctx = CGLContextObj ( [[self openGLContext] CGLContextObj]); glEnable(GL_TEXTURE_RECTANGLE_ARB); glGenTextures(1, &_surfaceTexture); glDisable(GL_TEXTURE_RECTANGLE_ARB); GLint swapInt = 1;//100;//1; ...

Display multiple language using j2me

hai, V did the mobile application using j2me which is sending SMS in mobile, when sending sms in english is working fine.... but i want the all language to display the message (eg) if i send sms in hindi it should display same hindi language in recepiant mobile.... what is the method to code in my application.... Thanks in advance ...

Assembly Language Question: Display Characters to screen LIFO (Last In First Out) in assembly language

Given a stack that displays characters to the screen First in First Out(FIFO), how do you switch it to display them Last in First Out(LIFO). Theoretically speaking... is it simply just sending the characters to print in reverse order? ...

when is the right time to draw

hi i just finished essential part of my own personal 2d engine in c++ and i'm kinda deciding how to complete the part where it is actually supposed to display everything on the screen, namely when do I call that function which does the job. I don't have much idea of how does the graphic card work, my biggest experience is calling bios g...

Displaying .aspx and .aspx.cs files such that it's not understood by the browser

I have to give the user the option to upload his own aspx and aspx.cs files on to the server, and adjusting the hyperlink to point to a page which would do the following. Display the aspx and aspx.cs files code onto the page without actually rendering the code. The browser should not understand anything and while reading the files to d...

Display pdf file inline in Rails app

Hi, I have a pdf file attachment saved in the cloud. The file is attached using attachment_fu. All I do to display it in the view is: <%= image_tag @model.pdf_attachment.public_filename %> When I load the page with this code in the browser, it does what I want: it displays the attached pdf file. But only on Mac. On Windows, browse...

xcode... switching to a new view display an image which is randomly selected... iphone

when i switch to a new view instantaneously a random image is selected via the arc4random function and displayed in the view can some one give me direction on how to achieve the instant execution of random function selection process with out a button to prompt the random function process. any examples of code, were should the code b...

Using $_Get['color'] to display different colors.

I think I'm doing this wrong but this is what I have... if($_GET['color']) { $color = "signature_"; echo "<img src=\"/images/+ $color \"; \"class=\"border\" alt=\"\" />"; What I'm trying to do is output the colored image based on the users input. So say this is what I am doing. Http://somedomain.com/index.php?username=Ultima&amp...

Customer Display

Is there any Customer Display available that can not support the POS7300 character set ?! Recently I am developing a software, showing some results on a customer display. I am using the POS7300 standard as the character set of my customer display. I was wondering if there would be some kind of customer display which can not support my p...

PHP: How to layout records horizontally and vertically

I have a users table which I want to display like the stackoverflow users page. So say display 5 records then take a new row, display 5 records, take a new row... What's the best way to achieve this? Thanks, Billy ...