All Questions
0
votes
0answers
12 views
PHP variables in dynamic CSS
I'm using a PHP/MySQL to style a web app using dynamic css (style.php).
The MySQL values are determined from the URL:
$url = "http://".$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'];
if($url == ...
0
votes
0answers
5 views
How do I get django to tell me where I am inside my code
I am starting to us logging in my django project at the moment (on step at a time) and I was wondering if there was a way to put where I am in my code into the error message using python. I.e. If I am ...
0
votes
0answers
12 views
CSS 3 tile effect
I'm developing a dashboard and I'm stuck at a place where I have to design a tile like effect. I tried using box-shadow and border properties but couldn't replicate the effect! Below is a sample image ...
0
votes
0answers
11 views
XML Parsing Error: not well-formed (c# asp.net master pages)
I've been messing around with html for a while, but couldn't find a good way to have a "template" besides using iframes or ajax pages. So I'm trying out c# asp with a master page. my site is working ...
0
votes
0answers
3 views
How to create SNMPv1 community string?
I'm currently working on SNMPv1 and I'm wondering how to define a community string generally on my server.
Using snmpset and snmpget, I have to specify a community name, but I can only use community ...
0
votes
0answers
5 views
Automatic templating of Strings in a content control
I'm having an issue with data templating in content controls. Its a situation ive overcome before with a datatemplateselector but I feel i must be missing something.
Consider this Xaml:
<Grid>
...
0
votes
0answers
3 views
Modify the framebuffer in Windows
Is there a way to modify the framebuffer before it is drawn ?
Let say I want to set red values to zero in the entire screen in any desktop application.
1) Catch drawing event and get framebuffer
2) ...
0
votes
0answers
4 views
Write WSDL for a RESTful service
I have read some document for this question.
1[IBM] 2[ODE]
But when I try to copy the sample into eclipse bpel designer, they got error like
cvc-dlt.1:Cannot find the declaration of element ...
0
votes
0answers
9 views
pagination link not showing the values in codeigniter,
Whenever i click on the links of pagination...it shows obeject not found.I am not getting how to pass the value to {index.php/view_expenses/view&per_page=2 } this page.Dont mind if this is a ...
0
votes
0answers
3 views
Unblock Google Translate plugin
I have scheme code as here:
<a href="fb link"><img src="facebook-img" class="fb"></a>
<a href="fb link"><img src="twit-img" class="twit"></a>
<div ...
0
votes
0answers
4 views
passing XAML window as parameter
In winForms I was using a method like this:
public static openAndCloseForms(Form toBeOpen, Form toBeClose)
{
}
How can define a method like this for XAML windows in WPF?
-1
votes
0answers
16 views
Strange return with regular expression
I have a string like this :
$somestring= "10, Albalala STREET 11 (768454)";
the for mat could change a little bit like :
$somestring= "10, Albalala STREET 11 (S) 768454 ";
or
$somestring= "10, ...
0
votes
0answers
3 views
Custom error page in ASP.NET MVC 4 not getting called
I need to implement my own custom error page in MVC 4. Basically when users try to view Details of any product with non-existent productID, I want this custom error page.
I created my own custom ...
0
votes
0answers
4 views
InvalidCastException: EF fails when inserting an entity with multiple relationships
If an entity have more than one relationships and I try to insert simultaneously data on them, EF throws InvalidCastException.
As an example, imagine these domain classes:
public class Person : ...
0
votes
0answers
4 views
Spring Roo JDialog Form update table contents
I have this JQuery dialog containing a <input> and <table>. The <input> is a filter field for the onload contents of <table>. I've heard JQGrid has this feature but this module ...