Tagged Questions
The computed tag has no wiki summary.
3
votes
3answers
480 views
TSQL divide by zero encountered despite no columns containing 0
I've been trying to understand why I get a "divide by zero encountered" (Msg 8134) with my SQL query, but I must be missing something. I would like like to know the why for the specific case below, I ...
3
votes
2answers
355 views
MarkupExtension as computed property in Template
Having such MarkupExtension
public class Extension1 : MarkupExtension
{
private static int _counter = 0;
public override object ProvideValue(IServiceProvider serviceProvider)
{
...
1
vote
1answer
340 views
How to format email link in Drupal cck Computed Field?
I am trying to create in Drupal a cck computed field that copies an email address from a cck field in a "job post" node content type to this computed field in the "job application" node content type.
...
1
vote
3answers
689 views
Get actual margins of an html element in c#
I need to get the actual number of pixels that an IHTMLElements margin is taking up, in my c# code. I've looked in it's style and currentStyle members, but the relevant parts are either null or set ...
0
votes
0answers
106 views
Conditional Image Based upon date values in Drupal 6 Computed field of CCK
I referred to http://drupal.org/node/149237 and modified the code to my needs. I want to design a computed field which does the following:
Compare a date field with the present date. After this:
If ...
0
votes
0answers
103 views
computed column formula validation failed when based on date typed column
i have formula validation error in sql management studio when i create computed column with formula based on date column with table designer
create table sometable
(
datecolumn date,
computedcolumn ...
0
votes
1answer
118 views
alternative to computed field in drupal6
is there alternative for computed field module for drupal 6? im using it but its causes lots of problem cause its not updating once user do changes in his data (there is a patch,but its makes bugs)
0
votes
0answers
131 views
Best getComputedStyle() scripts?
I've heard of a few scripts that can return the computed/rendered style of an HTML element. I've found that simply using currentStyle and computedStyle will often be buggy. In addition, simple scripts ...
0
votes
2answers
165 views
XQuery wrap result in computed node
I am trying to do some simple pagination in XQuery. I would like my root element of the returned XML to have (as attributes) various properties about the pagination (current page etc).
However I ...
0
votes
1answer
109 views
SQL — Derive Date Difference Column
+------+-------------------------+
| proc | endTime |
+------+-------------------------+
| A | 2010/01/01 12:10:00.000 |
| B | 2010/01/01 12:08:00.000 |
| C | 2010/01/01 ...