Tagged Questions

2
votes
2answers
61 views

Code documentation style guidelines for Perl?

Does anyone know of a perlstyle-like guideline for how to document Perl code? Like this bit from javadoc guidelines: "Gets the label of this button.       (preferred)" vs. "Thi …
0
votes
2answers
16 views

After a “SetterCollectionBase” is in use (sealed), it cannot be modified.

<UserControl x:Class="FlowItem" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Width="300" Height="300" …
1
vote
1answer
20 views

Styling a QScrollBar by QStyle

I try to style a QScrollBar via a custom QStyle but if i draw nothing in drawComplexControl for the QScrollBar, the required space for the scrollbar on the parent widget is painted …
0
votes
2answers
24 views

Flex: changing Flex component styles in AS3

Hi, in MXML, there is a Button class which you can instantiate like so: <mx:Button id="something /> but what if you wanted to dynamically build this in AS3 and add it to t …
8
votes
14answers
478 views

Which is better coding style?

During a code review, a senior dev commented on some nesting I had going on in my code. He suggested I set a bool value so that I never have more than one level of nesting. I thi …
0
votes
2answers
47 views

WPF Change Style’s Brush Color

I have the following styles in WPF to draw and color a box, which is a custom control with various PART_Name items defined in a ResourceDictionary: <ResourceDictionary> . …
7
votes
6answers
127 views

2nd or 3rd Person Comments

Do you write comments in 2nd or 3rd person? What would you prefer? // go somewhere and do something (2nd person comment) or // goes somewhere and does something (3rd person co …
3
votes
1answer
28 views

Given a styled WPF DependencyObject, how can I get the Style Key in code?

I have a set of controls bound to data, on which I would like to programmaticaly add validators to the bindings. Currently I'm able to iterate over the visual tree to find those co …
0
votes
6answers
228 views

Is there a good way to avoid duplication of method prototypes in C++?

Most C++ class method signatures are duplicated between the declaration normally in a header files and the definition in the source files in the code I have read. I find this repet …
0
votes
8answers
101 views

dynamically change color to lighter or darker by percentage CSS (javascript)

we have big application on the site and we have few links, which are lets say blue color like the blue links on this site. now i want to make some other links, but with lighter co …
1
vote
4answers
47 views

Create own BibTeX style or customize existing one?

I'm looking for a way to define new BibTeX style or to customize existing one. I have two reasons for this: I want the author names/editors to be italic (for articles in book, bo …
8
votes
11answers
383 views

Declaring a looooong single line string in C#

Is there a decent way to declare a long single line string in C#, such that it isn't impossible to declare and/or view the string in an editor? The options I'm aware of are: 1: L …
16
votes
9answers
550 views

Does functional programming mandate new naming conventions?

I recently started studying functional programming using Haskell and came upon this article on the official Haskell wiki: How to read Haskell. The article claims that short variab …
0
votes
1answer
15 views

WPF - Use a ControlTemplate resource within a Style

When creating a Style, is it possible to set the ControlTemplate property to a previously defined resource? For example, if I had the following in a ResourceDictionary: <Contr …
0
votes
7answers
93 views

PHP Line Indentation

Hi, I'm curious to know, how many spaces of indentation do you prefer in PHP code? function one() { $one; function space() { $space; } } function two() { $two; functio …

1 2 3 4 5 21 next
15 30 50 per page