0
votes
7answers
732 views
IE6 performance with CSS expressions
We are developing a web application that will be sold to many clients. There is already one client (a bank) which has decided that it will buy the product once it is ready. Unfortu …
2
votes
3answers
48 views
Do all parts of a SQL SERVER expression using ‘OR’ get evaluated?
Given:
WHERE (@Id Is NULL OR @Id = Table.Id)
If @Id is null: the expression evaluates to true. Does the second part @Id = Table.Id still get considered? or is it sufficient that …
2
votes
3answers
80 views
Overriding grails.views.default.codec=’html’ config back to ‘none’
If I leave grails.views.default.code='none' in the grails Config.groovy, it's up to me to HTML encode my expressions explicitly in the GSP files: ${myValue?.encodeAsHTML()}.
If I …
0
votes
1answer
40 views
resultSet.Expression {System.Data.Linq.SqlClient.SqlProvider+OneTimeEnumerable (…)}
I'm having a compiled query after which I've stacked a non-compiled query via an IQueryable extension method.
var resultSet = CompiledQueries.GetNewCustomers(datacontext).OrderB …
1
vote
3answers
64 views
Embed a JQuery expression inside a css file??
As the question implies, can I add a JQuery script inside an css file as an expression? Or something like:
.parent{
background-color: pink;
position:relative;
width: 100%;
}
. …
0
votes
1answer
110 views
Help with Expression Encoder SDK
I am currently experimenting with the Expression Encoder SDK, but I find it very confusing to use when it comes to live streaming. I am trying to capture a video stream from a webc …
0
votes
0answers
7 views
Expression Encoder 3: Green artifacts after encoding
Some of the videos I encode using the Expression Encoder 3.0 have green lines at the bottom. Since I have no prior experience with encoding, I have no clue about why this is happen …
5
votes
4answers
166 views
C comma operator
Why is the expression specified inside a comma operator (such as the example below) not considered a constant expression?
For example,
int a = (10,20) ;
when given in global sc …
1
vote
2answers
485 views
Connecting two shapes together, Silverlight 2
I'm looking to connect or glue together two shapes or objects with a Line. These shapes will be generated dynamically, meaning I'll be calling a Web service on the backend to deter …
1
vote
3answers
80 views
Boolean Expression Evaluation in Java
Hey everyone,
Is there a relatively simpler (when compared with writing a parser) way to evaluate boolean expressions in Java?
I do not want to use the JEP library.
I have a String …
2
votes
2answers
294 views
DataTable Select: Expression with a space problem…
Situation:
Hello! I have a little problem in a C# project. I am using the Select method from a DataTable object and using an expression to get what I want but I am having some tro …
0
votes
3answers
59 views
.net propertychange notification handlers - strings vs. expressions
Using WPF has made me a fan of INotifyPropertyChanged. I like to use a helper that takes an expression and returns the name as a string (see example code below). In lots of applica …
0
votes
1answer
23 views
Silverlight DataGrid Property error - “The member “AutoGenerateColumns” is not recognized or is not accessible”
I am trying to modify a Datagrid in Expression Blend 3 using Silverlight 3 tools. When I attepmt to open the file Blend shows the "Invalid XAML" error and in the XAML shows errors …
0
votes
2answers
24 views
Editing a xaml icons or images
Is it possible to edit a xaml icons or images in the expression design or using other tools?
Is it possible to import a xaml images (that e.g you have exported) in the expression …
0
votes
2answers
74 views
Are these jQuery expressions equivalent?
I'm wondering if these two expressions are equivalent, because if they are, it would make this much easier.
$('div', this).filter(':not(.trigger)')...
$('div:not([class*=trigger]) …
