Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
2answers
268 views

C# - Difference between Keys.Shift and Keys.ShiftKey

In my application i detect when a key is pressed and see if the modifier is the shift key but the Keys enumerator has Shift and ShiftKey. It seems the event is always sending Keys.Shift, but is ...
6
votes
4answers
4k views

What is the difference between 'protected' and 'protected internal'?

Can someone please elaborate me the difference between 'protected' and 'protected internal' modifiers in C#? It looks they behave in same manner.
5
votes
3answers
393 views

final and static in Java

I have read this sentence in a book but I didn't understand it: A field that is both static and final has only one piece of storage that cannot be changed. Can anyone explain it for me?
3
votes
2answers
121 views

Why is the modifier set to Friend in Winforms?

When adding a new control to the designer in Winforms, the modifier on the control is set to Friend, but the default modifier is Private (right clicking the property and resetting the modifier). Does ...
3
votes
4answers
499 views

Difference between regular expression modifiers 'm' and 's'?

i often forget about the regular expression modifier "m" and "s" and their differences. what is a good way to remember them? as i understand them, they are: 'm' is for multiline, so that ^ and $ ...
2
votes
3answers
348 views

“TypeError: can't convert String into Integer” when trying to CTRL+click or SHIFT+click in watir-webdriver/selenium-webdriver script

I am trying to select multiple items in a date picker defined as table, in a cucumber script using watir-webdriver/selenium-webdriver on Chrome browser. The date picker allows Ctrl and Shift as ...
2
votes
2answers
80 views

Unexpected Behavior wrt the final modifier

This is my code package alpha ; class A1 { static class A11 { private final // WHAT IS THE EFFECT OF THIS MODIFIER? void fun ( String caller ) { ...
1
vote
3answers
49 views

c++ macro based on context

I'm injecting code into C++ classes through macros. Is it there a way to do this depending on the access modifiers' context? Something like #if (we_are_in_public_context) INJECT_PUBLIC_CODE(params) ...
1
vote
2answers
309 views

Smarty Modifier - Turn urls into links

Is there a smarty modifier that will add anchor tags to links. eg $smarty->assign('mytext','This is my text with a http://www.link.com'); {$mytext|link} which will display, This is my text ...
0
votes
1answer
40 views

How can I have varied KMOD status' for a single key in Pygame?

Here's what I've got so far: for event in pygame.event.get(): if event.type == KEYDOWN: if event.key == K_LEFT: mods = pygame.key.get_mods() if mods and ...
0
votes
1answer
346 views

Detecting Shift modifiers on MouseEvent generated from click in swing

I'm handling some MouseEvent in a GUI application using Java Swing. Since now i was analyzing mouse events inside mousePressed method, only to determine if a left or right click happened. My code ...
0
votes
1answer
166 views

Android - Change modifer to static?

So I got this bit of code http://pastebin.com/RMh4eHLq from the Android dev blog (modified) but when I try and call it via ImageDownloader.download(image, image_main, image_table); it tells me to ...
0
votes
1answer
334 views

How to dynamicly apply variable modifiers in Smarty 2.x

I can't find the solution of applying modifiers dynamicly in Smarty. Template - I would like to work this way (example) {$myVariable|$modifiers} Php script $smarty->assign('myVariable', ...
0
votes
2answers
2k views

JList containing JCheckBox and a String, with non ctrl click selection?

Been a while since I posted on here, and now I am at a point where I find myself stuck yet again. For my assignment at uni, we have been asked to create an address book application. It is going well, ...
0
votes
2answers
553 views

C# Locking, Properties & Permissions

I've been using lock on value type properties when multi-threaded access is required. Also, I've been meaning to become more diligent about applying proper access modifiers, especially in my library ...