background

iPhone Background App in Ad-hoc distribution?

I need to be able to ensure that the iphone is always connected to a network. If it loses reception I need to be able to warn the user. Since the only way I see this working is using a background process is it possible to use private APIs so that the app can run in the background. I know it can be done with Jailbroken phones but I would...

One question about background overlay

<div> <div> <div></div> </div> </div> It seems to me that the inner background will overwrite the outer one,why is it designed like this? ...

How do I get rid of white background on my SWF file?

I'm putting a SWF file into an HTML page in GoLive, and even though all my code and SWF file are set to a blue background, there is a quick second during the loading of each page where my entire SWF document is completely white on top of the blue HTML background. I don't know if this is making sense, but check out www.eloquentcreative.co...

Changing the background color of a paragraph in JTextPane (Java Swing)

Is it possible to change the background color of a paragraph in Java Swing? I tried to set it using the setParagraphAttributes method (code below) but doesn't seem to work. StyledDocument doc = textPanel.getStyledDocument(); Style style = textPanel.addStyle("Hightlight background", null); StyleConstants.setBackground(style, ...

Qt painting without clearing the background

I'm using a QPainter to get some graphics on a window. Unfortunately every time the .paintEvent is run, the whole window is cleared. How can I draw without clearing? I.e. how do I leave the stuff from previous paint event untouched? I'm using Qt4 ...

CSS absolutely position element extends background

I have a absolutely position div that is overlapping a containers background due to it having a larger height. This div is sharing the container with a body div that's sitting happily to the left of it. Is there a way to extend the container to be the height of the absolutely positioned div, rather than the body content? Or should I ju...

Deleting a window's background image WPF

I'm having a problem in WPF where a window doesn't release it's file-lock on the background image file after closing, before another part of the application tries to write to the image. So as an example; say I have a WPF app consisting of 3 windows, 1 "menu" selection window and 2 others. Both of the windows create an ImageBrush using a...

How to get javscript event to fire only when the background is clicked (and not other elements)?

I'm trying to write a web app which replaces the context menu (right-click menu) with my own customized ones. I want it so that when the user clicks on a table row, they get one certain context menu and when they click on the background of the page, they get a different one. I have already written the menus and gotten them working. ...

Creating a Canvas Background Dynamically

I currently have a canvas which contains a bunch of sqaures as its children. These sqaures sit on different lines. I would like to draw a background for the canvas which draws lines (like a notepad would have feint blue lines on the paper) I would like to draw this dynamically by binding it to a collection of "lines" So if there are 2 ...

Visual Studio - Current file in Solution Explorer - Make it darker?

I don't want to change the entire background color of solution explorer in VS, only the selected file. Hints? Thanks. ...

Why The Multimedia Application Uses a Background Color

Hello, I was seeing that all the video application(Camera monitoring, Windows Media Player, multimedia applications in general...) uses a backgound color, because if you have that color on something like a Web page and you put a video to play in Windows Media Player with it behind this color at the page you will see that your movie will...

Launch multiple stored procedures to run 'in the background' on SQL Server Express Edition

Is it possible to run multiple stored procedures that run 'in the background'? The stored procedures must be launched from a single, master stored procedure, in the same way that multiple worker threads are spawned. For example: CREATE PROCEDURE MyLauncher AS BEGIN BEGIN @EXEC MyBackgroundSP01 -- Runs in parallel to the othe...

Making sure HTML div goes to the bottom of the screen.

I currently have a site that uses a two-tone background image that is centered on the page. On top of the background I have a div that is cenetered as well, so that the background on the left and right sides of my content are different. However on a few pages where the content is shorter than the screen length, it leaves an ugly stripe...

Including a background drawable foobars my layout in Android. Ideas why?

If I don't include a background in my root layout then everything renders as I expect: However, if I add JUST ONE LINE adding in a background then the layout goes completely haywire: The relevant bit of the XML layout is: <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width ="fill_paren...

Make a Powershell function/task run in the background.

I have a function that lets me write the file-path of files to a text file, depending on your input. That sounds confusing, but I don't know of a better way to put it, so here's the function: Function writeAllPaths([string]$fromFolder,[string]$filter,[string]$printfile) { Get-ChildItem -Path $fromFolder -Recurse $filter | Select-Obj...

How to add background image on iphone Navigation bar ?

Hi guys ! i want add an image background to my navigation bar like this : what is the code ? thank you ist it right ? //set custom background image UIImageView *backgroundView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"NavigationBackground.png"]]; [self.navigationBar insertSubview:backgroundView atIndex:0]; [back...

Fix DIV to bottom right corner

Hey http://www.naomisalsi.com/ I have used html and body attributes to have a gradient background and a flower background for the above site. i have also used a div to have the bottom right hand flower where it is. Works great, but not when scrolling. How do i get the bottom right hand corner image to stick to the bottom of the screen...

HTML CSS Table Background

I have a form which is presented in a table. In the third column, there are 4 rows for selecting the preferred method of contact (radio buttons). I'm currently using a label to write this text in the first row. I'm told, however, it doesn't look as nice as using a custom image. The image is supposed to sit nicely amongst the form conten...

Android: how to create a background from pattern?

Hi, I got a pattern (.png image 4x4px) and have to fill the layout with it. Does anyone know how to do it? If I simply select the drawable as a background the image is streched but it has to be repeated along the x and y axis. ...

How to make transparent background of Silverlight 3 application?

How to make transparent background of Silverlight 3 application? I have the next code but it does not work ( <html xmlns="http://www.w3.org/1999/xhtml" > <!-- saved from url=(0014)about:internet --> <head> <title>BGtest</title> <style type="text/css"> html, body { height: 100%; overflow: auto; } bo...