background

wpf update ListViewItem background property

I have a listview that is binded to a ThreadSafeObservableCollection. The background of each of these items is set to an enum that is run through a color converter, here's the code for these 2 settings. <UserControl.Resources> <EncoderView:EncoderStatusToColorConverter x:Key="ColorConverter"/> <Style x:Key="ItemContStyle" Targe...

Background music in delphi application

Any ideas of how to make it? I think the Background Music Component For Delphi is a excellent choice, but damn, I can't find it anywhere to download, even a trial.. the homepage is down and all the download sites are using the original download link (homepage). ...

Background Intelligent Transfer Service In C#

Anyone successfully using this in c# or is there a better alternative to this? Also any good working project that I can look at and get a good feel? most projects i have come across is in C++ and was looking for a C# project ...

Java- How can you set a pane's background with an image?

I'm wondering if there is any way to set a JPanel's background to an image instead of just a colour. Thanks and I'm working on dr. java ...

Can I have multiple background images using CSS?

Duplicate of: Layering images in CSS - possible to put 2 images in same element? Is it possible to have two background images? For instance, I'd like to have one image repeat across the top (repeat-x), and another repeat across the entire page (repeat), where the one across the entire page is behind the one which repeats across the t...

CSS fixed repeated background problem

I'm designing a site with a fixed repeated background but can't work out why it has one problem. If you load the site in a small window, then scroll right, the background doesn't carry on and the background colour show's instead. Any ideas? Site is: http://new.focalpix.co.uk/ CSS for the background is: body { background: url(htt...

What's the proper background process behaviour for a non-GUI Java app?

What's the proper way for a Java command line application to do background work without hogging resources? Should it use sleep() in the loop or is there a more elegant/efficient way? ...

How to make console program,to dissapear and work in background?

How to make console program,to dissapear and work in background? I mean,I don't want to see the program,but I want to see it running through the task manager. How can I do that? Thanks. ...

I need a background program C++

Hi, I have created this program: //Includes.... int main() { ifstream readfile("File.txt"); string str; while(1) { getline(readfile,str); system("cls"); Sleep(10000); } } It's just a program that reads every 10 seconds a line from the file "File.txt" I want to make it work on background,how can I do ...

Dynamic backgroundimages PHP GD

Hi Stackers, Problem Basicly, it's impossible to use a full-size photograph with the background-image in a proper way imo. Different resolutions, wide-screen etc etc. What im looking for is a JS/PHP GD solution for this problem. Technique From what i hear, it would be as follows. Javascript looks up available screensize (browser window...

In OpenGL, how do I make a simple background quad?

Let's say I want to draw a simple quad like this: glBegin(GL_QUADS); glVertex2f(-1.0,-1.0); glVertex2f(1.0,-1.0); glVertex2f(1.0, 1.0); glVertex2f(-1.0, 1.0); glEnd(); Is there a way to draw this such that it appears behind all 3D objects and fills up the whole screen? My camera moves with the mouse, so this quad also has to appear s...

How do I run a Perl script in background on Windows?

I have a Perl script that pops up a message box when its work is done. How can I run this in the background? I looked at Proc::Background but this requires launching a specific command. I'd like my code to run in the background with out spawning a new process if possible. ...

How to set background image in Java?

I am developing a simple platform game using Java using BlueJ as the IDE. Right now I have player/enemy sprites, platforms and other items in the game drawn using polygons and simple shapes. Eventually I hope to replace them with actual images. For now I would like to know what is the simplest solution to setting an image (either URL or...

How to add background images to Delphi forms

How can I add a background image to my delphi form? I added a TImage, but now the labels aren't visible any more, and the texts of my checkboxes are in a blue "box" (blue is the background color i chose). This blue doesn't look very good on the background image, and the hidden labels also don't look good. How do I fix these problems? ...

Uninterrupted background music on website

I was making a website for a music band, and i was wondering the best way to play background music on the website without interrupting the flow of the music (even for a split second). At the moment, i am considering using frames, but this is not supposed to be good practice. Please someone tell me how i can do this. I would prefer to u...

Background Task still with cache? Or SO Team Find a Problem.

I am about to use what Jeff post about Easy Background Task in Asp.Net. I want to know if SO still use it or they found a Problem with the solution. Thanks ...

How do I run another script in Python without waiting for it to finish?

I am creating a little dashboard for a user that will allow him to run specific jobs. I am using Django so I want him to be able to click a link to start the job and then return the page back to him with a message that the job is running. The results of the job will be emailed to him later. I believe I am supposed to use subprocess.Po...

How to get div height to auto-adjust to background size?

How do I get a div to automatically adjust to the size of the background I set for it without setting a specific height (or min-height) for it? Any help appreciated! ...

Opacity of background not text

Anyone know how to make cross-browser (inc IE 6) transparancy of background of DIV while the text remains opaque? I need to do it without using any library such as jQUery etc. (but if you know of a library that does it I'd love to know so I can look at their code). ...

The ideal background filesystem backup

I am thinking about a script/program that can run in background, and attempt to backup or synchronize a given filesystem path to a mirror location (probably located on an external/separate storage device). This should apply to Windows but it could as well be used under Linux. Differential/incremental backups are a bonus. Windows Syste...