I've made a pretty simple WPF windows with a textbox in it.
As I type in it it gives me this weird typewriter-sound.
Any idea why? And how can I stop it from doing it?
Hello, I'm developing a web page in Django (using apache server) that needs to call a shell command to enable/dissable some daemons. I'm try to do it with
os.system(service httpd restart 1>$HOME/out 2>$HOME/error)
and this command doesn't return anything. Any idea how can i fix this?
Hello,
I am writting an application which must know when a windows is resized or moved.
I had a look on notifications but it seems it does not do what I expected.
Do you have any idea how I can achieve this?
Thanks in advance for your help :)
I have a simple slideshow (jQuery Cycle) that displays an image every ten seconds (7 total images). In an adjacent div, I have a list with 7 bullet points. What's the easiest way to script a method in which the css/style of the appropriate bullet point changes as its accompanying image. The idea is to have all list items displayed, but 1 highlighted every 10 seconds?
Hi,
i have these methods in module1/actions/actions.class.php:
public function executeMethod1(sfWebRequest $request){
$a = 10;
sfContext::getInstance()->set('a', $a);
return $this->redirect('module1/method2');
}
public function executeMethod2(sfWebRequest $request){
echo sfContext::getInstance()->get('a');
}
When i execute module1/method1 i get this error:
"The "a" object does not exist in the current context."
Any idea?
Javi
Can you please give me some idea about how to design a data structure in C# (3.0) which will give a representation of 3D data structure.
I mean to say something similar to cube. Like stock data to be viewed based on time , location .
Kindly give a simple working example or even a link will do.
It's urgent.
Any example will be appreciated.
Thanks in advance
I was trying to add a method to the String class. This method should mutate the current string (of course it would be possible to write a not mutating version but I'd prefer the mutating one). I had no idea how to do this and after some googling I found the method rb_str_modify which makes a given string mutable. That's exactly what I need but I couldn't find an equivalent in the Ruby language. Did I miss something or is there really no possibility in the language itself?
My strings are of this kind: City (PR) from a Database, where PR stands for Province.
At the end I want two separate variables. City and PR.
I have to do this with C#. Any idea? Thanks.
Hi
I am having one applications and I have to implement failover using terracotta.I have gone through the Documentation of terracotta.org for websession.I even run the provided examples but I am not getting any idea to use that with my application.
I'm using the rowDiffs() command to calculate the step by step difference in 116 rows in a matrix.
I get the following error:
Error in r[i1] - r[-length(r):-(length(r) - lag + 1L)] :
non-numeric argument to binary operator
I have no idea why this is happening. I could take the diff() separately for each row and it would work.
Any ideas?
Here's the data:
https://dl.dropbox.com/u/22681355/data.csv
Code:
a=rowDiffs(data)
Well, I'm pretty much trying to figure out how to pull information from a webpage, and bring it into my program (in Java).
For example, if I know the exact page I want info from, for the sake of simplicity a Best Buy item page, how would I get the appropriate info I need off of that page? Like the title, price, description?
What would this process even be called? I have no idea were to even begin researching this.
Hello,
I have come across lots of code which will find all the links on a page. I would like something that takes it a step further and finds it for the whole site.
Spidering the links is a little trickier than in seems!
Any idea will be greatly received.
Hello,
At the bottom part of my main UIView, I've an UIScrollView with an UIImageView inside.
I'd like to move the UIIMageView from the UIScrollView to the top part of my UIView.
I'm able to move my UIImageView inside the UIScrollView, but outside, I can't.
The UIImageView remains in the UIScrollView, it's parent.
Any idea?
Thanks in advance for any help.
Best regards,
Alx
I had inherited this SQL Server where we put data in a table (Call TableA) on a database (DB-A). I can see the tableA in another database on the same server ( DB-B) gets the same data right away.
Any ideas how this is implemented? I am trying to see the trace but so far no luck. Any one has an idea?
At this stage I am not sure if its replication. This is a guess
Write an assembly program to input keystrokes from the PC’s keyboard and display the characters on the system monitor. Pressing any of the function keys F1-F10 should cause the program to end.
I have no idea how to write this code, and need some help por favor.
I want share and introduce new idea to the program and algorithm for researchers. but those people disgraced my interest and degrade my thoughts. They closed my request. Why? I think this is not a good place to prove our talents. I think leave from this forum is better...
I am trying to build a query that does a sum if a certain parameter is
set. For example:
SELECT SUM(IF(<condition>,field,field)) AS total_value
...which is working correctly.
But i have more than one condition in IF(), like:
SELECT SUM(IF(<condition> <condition>,field,field)) AS total_value
..which is not working, could you have any idea what should be the right query for this.
i am using .net window application . i need to make my form UI better. how to do that?
Is there any predefined shins available?...
I am new in this suggest any good idea...
Hi there,
I i want to schedule an asp.net page on my hosting, how to achieve it?
for instance, i have a page named myservice.aspx runing on my website.com/myservice.aspx
i want to run this page on every 24 hours. any idea?
I have been given a context schema for a database i need to make for my coursework but some of the attributes (column names) contain letters in brackets at the end of them such as:
*x_Number (Adm)
*x_Number (A)
*x_Number (P)
The problem is i have no idea what these letters mean!
Can anyone help?
I am trying to remove an item from listbox but is not working. even that im sure that there exist an item to remove. any idea about what maybe going wrong?
iSelectedItem = ContactConflictListBox.ItemIndex;
if ((iSelectedItem == -1))
{
return;
}
ContactConflictListBox.Items.Remove(iSelectedItem);
I am trying to use PHP to make a JSON file. Part of the code is as follow
$array = array("hello", "world");
$string='{"person": [
{
"name":'$array[0];',
"age":'$array[1];'
}
]
}';
The file created. However, $array[0] and $array[1] doesn't return the values "hello" and "world" but as $array[0] and $array[1]
Any idea?
Thanks