Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
4answers
491 views

how to dim your webpage to center your attention on a banner? (dim-bright effects on your webpage)

I was wondering on how this effect is created in certain webpages - On loading the webpage, a banner ad with a close button is displayed as the topmost layer, and the actual webpage is displayed as ...
4
votes
1answer
2k views

How do I dim the system bar in Android 3.0 (Honeycomb)?

How do I programatically dim the system bar in Android 3.0 (Honeycomb)?
3
votes
3answers
99 views

How do I resolve this scope issue in VB .NET?

I have a code structure something like this: For row = 1 To numRows Dim arrayIndex As Integer = 0 For column As Integer = startColumn To endColumn ' whatever code arrayIndex = ...
2
votes
1answer
298 views

Make the iPhone Screen Dim

I have managed to ensure that the iPhone doesn't auto-lock using: [[ UIApplication sharedApplication ] setIdleTimerDisabled: YES ]; But how do I make the screen dim after a certain amount of ...
2
votes
1answer
203 views

C# Best Method to Dim Screen, Multiple Windows Forms?

So I've written code to create a new Windows form from the parent that is fullscreen, black and opacity of 80% to create a dimming effect. Then another form is shown above this to show progress. The ...
2
votes
1answer
252 views

Dimming the screen with Delphi

I am looking to create an effect similar to the lightbox effect seen on many website where the background of the screen fades out and the content you want to emphasize does not. What would be the best ...
2
votes
3answers
162 views

When is a Dim statement processed when vba code is compiled?

When is a Dim statement processed in the compiling of VBA code? Is there any efficiency gain if I do this?: Dim oFileDiag As FileDialog Set oFileDiag = ...
2
votes
4answers
222 views

Is there an equvalent to Dim/var in C++?

I'm new to C++ and i have a case where vb.nets Dim or C#s var would help me greatly. i googled around and i found no questions for this? (although search terms with var or dim and C++ seemed to stray ...
2
votes
2answers
1k views

Android: dim screen while user inactive

I have an app which is used for lets say 4 hours, but only every 5 minutes a user needs to make an input or read the screen. Putting the phone to sleep and locking the screen is a bit annoying. So I ...
1
vote
1answer
216 views

Subscript out of Range with ReDim (VBA)

Could you please explain to me why this simple VBA code fails at the last line ("Subscript out of Range"): Dim test() As Variant ReDim test(0, 1) test(0,0) = "key" test(0,1) = 1 ...
1
vote
2answers
368 views

UISegmentedControl.enabled = NO doesn't dim it

I have a UISegmentedControl in a UIView in my popover that I want to disable in some cases. The segmented control is set up with Interface Builder in a nib file. Its IB "Enabled" checkbook is checked. ...
1
vote
3answers
224 views

C++ dim identifier not found

First let me say, i am as novice as novice gets when it comes to C++. However, knowing VB i presume dim as the a variable declaration. However, online research appears that C++ dim(variable) makes ...
1
vote
1answer
636 views

UISearchDisplayController without instant search: How do I control the dimming of the TableView?

I have implemented a UISearchDisplayController using Apple's TableSearch sample reference. My list contains just over 10.000 elements, and this makes the filtering too slow to execute it on every ...
0
votes
1answer
77 views

Dim/Blur Background When SlidingDrawer Is Open

I'm looking for a way to dim/blur background when the slidingdrawer is open but I couldn't find. Now, my question is, is it possible?
0
votes
2answers
71 views

Trouble reading database records into memory variables in VB 2010

I followed an example on stackoverflow about how to read database records into variables. This is the first time doing this and I feel that I'm close but I'm baffled at this point about the problem. ...
0
votes
4answers
56 views

Dims being used by .class File

I have this and I want to use something similar to the way Java uses .class files to be able to call events and use them in my main code. The problem is that I cannot get the .class file to use my ...
0
votes
0answers
78 views

Disable screen dim when Activity starts via AlarmManager

I have an alarm clock app. My alarm activity is launched via the AlarmManager and sets the window to full screen brightness. The brightness setting works but isn't apparent until I touch the screen to ...
0
votes
2answers
245 views

C# setting screen brightness Windows 7

I want ajust screen brightness by my self. Because Windows lets me only adjusting in limited range. I want dim the display from 0 to 100% and turning it off/on. It should be possible if windows can it ...
0
votes
1answer
72 views

Dim all children (except one being hovered on)

I would like to hide all the children except the one being hovered on. I can't seem to figure out why it won't work - I've included the full sites CSS and everything on this ...
0
votes
2answers
87 views

C# best way to simulate a device with screen and dim it

I've been messing around with this for a couple of months and I'm still not certain of what I can do to accomplish want a want. I need to build a real device, that is, that exists in the real world ...
0
votes
0answers
117 views

How to dim a Android Phone to almost complete dark

There are a lot of solutions to dim the display of an android device like this one: WindowManager.LayoutParams lp = getWindow().getAttributes(); lp.dimAmount=1.0f; ...
0
votes
2answers
74 views

Dim page except for panel

I have a page with multiple panels on it. When a user clicks on a button one panel becomes invisible and another becomes visible. I was wondering if it is possible to dim the entire page except for ...
0
votes
1answer
144 views

CSS Dim overlay: Shining through

I have a dim overlay, and want certain elements to poke through. It seems a higher z-index is not enough: I must set position: relative/absolute. Is there any way to avoid this? See my basic example ...
0
votes
2answers
117 views

Is it possible to use Variables without DIM in VB.NET?

Is it in VB.NET possible to use variables without the need of use DIM? now I have to use the variables like this: dim a = 100 dim b = 50 dim c = a + b I want to be able to use vars in this way: ...
0
votes
1answer
380 views

Android dim screen down problem

This code dims the screen down, and it works for android 2.2 units. But when i tried it on my emulator(2.3) and on my friend's phone(2.3), i went to lock screen. Any ideas why, And how i should do to ...
0
votes
0answers
48 views

SQL server -data mart when dim hierarchical table dose not have a unique PK

example address and address description for dim-address do not have a many-to-one relationship. Many records in the database have address which fall into multiple groups, for example a customer who ...
0
votes
2answers
154 views

Not dim prevouse activity when new activity is started

When I start an activity B over activity A, A is dimed. Is it possible to not dim activity A, when activity B is started?