background

Output to console even ran in background

I am running a python script in background, but why does it still prints to console, even when piped to a file? I tried the following command: python script.py & python script.py > output.txt & I tried with a simple script: print "hello world" With python script.py & It still prints to console. But python script.py > output.t...

How to set background color of a View

I'm trying to set the background color of a View (in this case a Button). I use this code: // set the background to green v.setBackgroundColor(0x0000FF00 ); v.invalidate(); It causes the Button to disappear from the screen. What am I doing wrong, and what is the correct way to change the background color on any View? Thanks. ...

Refactoring routes - serving different layouts

As a Rails NOOB, I started with a routes.rb of: ActionController::Routing::Routes.draw do |map| map.resources :events map.connect 'affiliates/list', :controller => "affiliates", :action => "list" map.connect 'affiliates/regenerate_thumb/:id', :controller => "affiliates", :action => "regenerate_thumb" map.connect 'affiliates/st...

wxpython: StaticText on transparent background

I am trying to make a subclass of wx.StaticText that has no background. I tried setting the background's alpha component with SetBackgroundColor, or using SetTransparent on various objects with no luck, but maybe it is only because I am a noobie :) Anyway, I ended up subclassing wx.StaticText, modifying the OnPaint method so that no bac...

CSS/HTML Print Background Images/Styles without Browser Page setup tweaking...

Is there any way to print out something like, when the user Prints out the page? <div id="test" style="background:#000000; color:#FFFFFF"> Black Stripe </div> I'm trying to create a page with row striping in the printout the same way it appears on screen. When they go to print , it of course drops the background. Besides telling ea...

how to run process in background in .net using c#

i have to run process in background using thread and background worker. this process do the task of retrieve data from database,it retrieve successfully by i can not display that data into datagridview, there is give some data error event. so,pls help me for this. thanks . ...

Android - Bringing Activity to Foreground via the Call Button (Green Key)

Hi all, I currently have an application that naturally gets pushed to the background when the home key is pressed. The activity losses focus but continues running in the background. So I want to know is it possible to bring the application back to the foreground when the user presses the green key (call button) on the device? ...

HTML CSS Making the background image stagnant

I'd like to make it so the background image stays stagnant/put while the website scrolls up and down. How do I go about doing this? ...

C#: Background color problem

I am having trouble with background colors in C#. For some reason they are simply not working. Specifically on the System.Windows.Forms.Panel control. Setting the BackColor property does nothing. All I have is gray and all the efforts I have made will not change it. Is there something that could be overriding this? Am I approaching this ...

CSS: Background Issues. Is this possible?

Thanks for your help in advance. Here is PNG of the layout: Website Layout The Second Section (with the dark grey background) is giving me problems. Below is the CSS I am using for the background. #mainbg { width:100%; height:450px; padding-top:25px; background-image:url(../images/mainbg.png); background-color:#303030; background-posi...

CSS Background Image link

Linking a background image with CSS is giving me so me issues. They seem pretty simple but I can't quite get around them: I have list items for my main menu: <div id="menuContainer"> <ul id="menu"> <a href="#"><li id="home" title="Home" alt="Home">Home</li></a> <a href="#"><li id="current" title="Current Students" alt="Current Stude...

Changing background color of ListView items on Android

How can I change background color of ListView items on a pair-item basis. When I use android:backgroundColor in the ListView item layout I can achieve this, however the list selector is no longer visible. I can make the selector visible again by setting drawSelectorOnTop to true but then the selector overlays the whole item. Any ideas h...

Background color for GTK_WINDOW_TOPLEVEL Gtk Widget

In the following code, I want the background colour of the main GTK_WINDOW_TOPLEVEL to be 0xc0deed. But when I run it is appearing black. I even tried gtk_drawing_area_new and adding it to the main window. But still it is appearing black although I could get other colours like red, blue, white etc #include <gtk/gtk.h> int main( int arg...

How to create a full brower background image slider with Jquery and CSS?

I was wondering if there's a way to combine this cool full browser background image script with a slider, to create a slideshow that would slide the background while preserving aspect ratio. The full browser background can be achieved with this code and there are some slideshows that can fade the background. Is there a way to take it to ...

java swing background image

I am using JFrame and I have kept a background image on my frame. Now the problem is that the size of image is smaller then the size of the frame so i have to keep the same image once again on the empty part of the window. If user clicks maximize button than I may have to put the image on empty region of the frame at run time. Can anyone...

What are background, foreground & main threads ?

Hi folks, what's the difference between background, foreground & main threads? What are the diff types of threads in .NET? TIA ...

Android thread in backgorund

Hi, i'm developing an Android application and i have a problem running a new thread in background. I make a class with this code: public class Downloader implements Runnable { private Vector <DownloadRequest>messages = new Vector<DownloadRequest>(); static final int MAXQUEUE = 5; ApiRequest mApi; public void run() { try { ...

How to set table background transparent in iphone?

I am new to iphone development .I have displayed a list of contents in a grouped table view.How can set the table background transparent such as i should see the text displayed on the gray-color(default color) background and not on the white color.Please help me out.Thanks. ...

AS3 transparent background

Hi, I'm creating a game for an assignment and am using Flash CS4. I'm figuring the best way to do this is to create each room setting in a separate file and insert the characters (it's first person, so you only see his back the entire time). I don't want to just animate him for every room because it's basically the same actions he does i...

how to kill 2 processes in linux

I have two programs running simultaneously ( in linux ) , with one running at the background. When i press ctrl+c , the prompt returns , but the processes seem to continue.. How to kill them both ? ...