As you might know katmouse enables scrolling over non active windows. Which would be especially great in vs 2010 because now you can take source code windows to other monitors. But of course it does not work. Is there a trick to make WPF receive the right message?
In OpenSolaris OS, when I run makefile generated by Eclipse CDT on the Linux OS, I get an error on the first -include line.
The same error was in FreeBSD, and was solved by executing gmake instead of make. In OpenSolaris (just installed) gmake doesn't work (command not found).
What package should I install and how exactly, to build Linux-generated C++ project in OpenSolaris?
I really like the strtotime() function, but the user manual doesn't give a complete description of the supported date formats. strtotime('dd/mm/YYYY') doesn't work, it works only with mm/dd/YYYY format.
if i have date in dd/mm/YYYY format, ho can i convert it to YYYY-mm-dd?
i can do it by using explode() function, but i think tere are better solution.
Thanks
I have try PDT 2.1.2 and 2.2 nighty build , both of them ,
javascript code assist is not work when editing php file. I have check the JSDT,WTP Plugin is loaded and no error.
But when i open a *.js file, it works , is it any configuration i miss?
Hi,
This is my jquery code
jQuery(document).ready (function() {
// post
$('.post').bind('mouseenter mouseleave', function() {
$(this).filter('.btn').toggleClass('hidden');
});
});
It works great on a normal document. but When I load some HTM: (i.e some divs with .post attributes) using ajax and embed it into my DOM.
The above code doesnt work with those divs.
The following code prints nothing
CHECK_INCLUDE_FILE_CXX(glog/logging.h GLOG_INCLUDE)
IF(GLOG_INCLUDE)
MESSAGE("YY")
ENDIF(GLOG_INCLUDE)
But I have the following environment variable set:
export CPLUS_INCLUDE_PATH=/usr/local/include
And, "ls /usr/local/include/glog/logging.h" returns the file.
I tried using
include_directories( "/usr/local/include" )
but it doesn't work either.
A while ago this code seemed to work, but now it doesn't anymore. Is there something wrong with it?
user=> (defn sum [a b] (a + b))
#'user/sum
user=> (sum 3 4)
java.lang.ClassCastException: java.lang.Integer cannot be cast to clojure.lang.IFn (NO_SOURCE_FILE:0)
user=>
It's probably time to take a break :)
i'm wondering why doesn't this work ?
it gives me the exception that the "File Format Is Not Valid"
richTextBoxPrintCtrl1.Rtf = richTextBoxPrintCtrl2.Rtf.Insert(richTextBoxPrintCtrl1.SelectionStart, myString);
I want to take Input from the user as Big-Integer and manipulate it into a For loop
BigInteger i;
for(BigInteger i=100000;i<=1;i--){
i=i+i;
}
But it won't work
can any body help me.
I am creating a simple batch file to assist in a few things, and I have some instructions that it prints out as well that I want the user to see before exit. Currently, the window closes very quickly. So I added PAUSE at the end of the file, but it does not want to work.
I looked at other questions on SO and have checked to make sure the line endings are CRLF and that I have CRLF at the end of the file.
Any suggestions?
Hello I have a string and when i try to use replace method in for loop it doesn't work
String phrase="hello friend";
String[] wordds=phrase.split(" ");
String newPhrase="sup friendhello weirdo";
for (int g=0;g<2;g++)
{
finalPhrase+=newPhrase.replace(wordds[g],"");}
}
System.out.println(finalPhrase)
It prints out "sup hello weirdo" and i expect it to print "sup weirdo".
What am i doing wrong?
is a problem to display data in Datagridview.
A large amount of data (stock quotes)
data to be displayed from left to right
Tell me what to do to display an array of data in datagridviev
Public dat As New List(Of act)
Public Class act
Public time As Date
Public price As Integer
End Class
Sub work()
Dim r As New Random
For x As Integer = 0 To 1000000
Dim el As New act
el.time = Now
el.price = r.Next(0, 1000)
dat.Add(New act)
Next
End Sub
For some reason my bind events won't work.
You can see my code here: http://dl.dropbox.com/u/145581/MyPage/default.html
Clicking on 'Add gadget' or the 'Remove gadget' button should be firing alerts but nothing happens.
Any ideas ?
It seems that padding style applying to <td /> doesn't work on IE7 in my computer, but is okay on FireFox3.5.
Is this a correct behavior? Or I get wrong.
Thanks.
Hello everybody,
When my website is in fullscreen mode (with IE8), the window.focus() javascript command doesn' work.
Do you have a fix for my problem?
I tried to put a window.blur() before, without success.
Thank you!
Nicolas
Hi Folks,
This is the first time I use mod_rewrite and I can't get it to work. I have a website with bands and their IDs. What I want:
a URL /bands/My_Band_id13/ should redirect to /bands/index.php?bandname=My_Band&bandID=13
What I have:
RewriteRule ^/bands/(.*)_id(.*)/$ /bands/index.php?bandname=$1&bandID=$2
What am I doing wrong?
THx,
Maenny
When I try to pull down a database while at work I get the following error:
:>heroku db:pull
Auto-detected local database: sqlite://db/development.sqlite3
Bad credentials given for http://heroku:[hidden]@taps.heroku.com
Note that when I am at home I am able to run this command just fine. I wanted to know if you have any suggestions for common reasons I would get this error.
I have a web app that work perfect in android 2.1, when I upgrade to 2.2 the pageX property in ontouchend event, this is my code:
menu1.ontouchend = function(e){
e.preventDefault();
if (e.touches && e.touches.length0) { // iPhone
x2 = e.touches[0].pageX;
y2 = e.touches[0].pageY;
} else { // all others
x2 = e.pageX;
y2 = e.pageY;
}
}
Anybody know what change in the javascript API for touch events from 2.1 to 2.2?????
Hi
As a developer I am a user of Subversion at the moment and I am changing job and going to work for a company that uses Team Foundation Server
I would like to learn the basic and more as user of Team Foundation Server
What do I need to do to replicate the enviroment and practice a bit?
Any Tips ?
What should I read?
Can I simulate the enviroment?
Thanks a lot
I want to my make a search-statement and query things like this
select * from table where col like '%vkvk%'
But with trial and error I've come to the conclusion that access doesn't work with LIKE or
wildcard operators. Does anybody have some other solutions because I ain't so in to access actually, so I really don't know.
I would like to understand how exactly does sql count work. Is it a whole table scan that happens or is it some property of the table that is read. However I feel a table scan would be an overhead in case of huge tables with lots of records.