im using this slide in my site. im new to js. i want one option.When i put the mouse over it, it should pause on the picture and not keep changing
Slideshow link:
http://smoothgallery.jondesign.net/
Im trying to order results ASCENDING from the current date
this is what im using now;
SELECT * FROM friends JOIN bdays
ON bdays.user = friends.friendname
WHERE username = $userid ORDER BY DATE_FORMAT(date, '%m %d')
any ideas?
i need to find a way how to find the address's for value of another program. i find the address before hand but i don't know how to find them again after i close and reopen the program with out searching for them again (i need the program to find them on it's own).
anyone know how i can do this (sorry if im unclear i don't know how to explain it really)
if your confused just ask and i'll try to make it clear
im using C++
im new to java ee platform and im having a hard time searching for a book for java ee that uses eclipse IDE. So please can you tell me any book that involves java ee and eclipse for beginners. and some tips from you how to learn this stuff and a follow up question, is java EE still good 20 years from now?
What im after is a greyed out editbox, like a results box.
Im having problems having the text properly formatted.
so starting fromm scratch, how is it usually done?
one big long string with line breaks?
having the code input one line at a time as a string?
When im inserting to the database on my dev server the text goes in fine, for example "that's" is "that's" in the db.
when uploading the exact same code to production server (hosted on a reseller account at bluehost) "that's" becomes "that\'s",
im not double escaping, its exactly the same code, what could be the issue here?
So i need to figure out how i can get a record count value and use that count as a new value to insert into a table.
Ex: In My Stored Procedure
@Count int
What im looking for
@Count to equal "select top (1) _fieldName from _someTable order by _fieldName Desc"
Finally
insert into _newTable (_fieldName) values (@Count)
End
I dont have to use a variable, just trying to demonstrate what im really trying to do. My SQL knowledge is pretty limited so no laughing, or smirking! ;)
Is it possible to add a attachment to a mail with the mailto function in actionscript 3?
Thats the thing, i want to open the default mail program compose window with some data but i also need to add a file as attachment, and that file must be a screen capture of the app.
Im doing some research and cant find nothing even close to this, someone have any ideas?
All help will be appreciated because im really lost here.
Thanks in advance ;)
if i have two classes x and y, both extend class w. and x implementing interface z. if i have methods doSomething(w object) and doSomething(x object), what would happen if i call doSomething(x)?
edit:
im implementing this on java, more specifically on android.
im asking this because some classes which implement a specific interface mostly does the same thing when doSomething() is called. but there are special cases which i would like to single out.
I am working on a search box that displays different options based on a users selection via dropdown box. Basically I need a really clean, light-weight method for switching out different divs without reloading the page. Im new to JS, but I know enough that there should be some really simple way of setting the display property using JS - Im just not totally sure how to go about it. Any help would be really appreciated, thanks.
HI,
Iv used the following code from this link.
http://stackoverflow.com/questions/1991159/getting-signals-from-a-midi-port-in-c/2024835%232024835
Im wondering what i need to add to able to get a list of device names.
Iv looked the MSDN website and found i need to implement midiInGetDevCaps and its a associated Struct. But iv never really done anything with dll imports and structs before so im a bit lost
correct me if im wrong, but isn't distributed SCMs for OS projects while centralized SCMs are better for corporate/private projects?
cause with eg. mercurial anyone gets an exact copy of the repository with FULL history features, while with centralized you only get the latest working copy.
im more focused on private projects so i wonder if its better with centralized SCMs or doesnt it matter?
hii...
im using fms to save datas like rdbms. Im using shared object for this. But I cant save more than one row of data into flash media server. What can I do for this purpose??
hello
im trying to query with facebook notification table using FQL
im getting the user_id but how can i get result and get the user name in the same FQL query?
im developing a piece of software to inset some text in a richedit of another program the code goes like this :
atlfe = FindWindowEx(wtlsplitterwindow, 0, "atl:0087d7a8" , null);
this is only one line: this works fine , problem is with every release of the program this number ""atl:0087d7a8" changes so i have to use spy++ to get the new one and change it in the code.
the question is , is there is any way i can get that number from code?
by the way im using C#, vs2010
thanks.
1 and I've uploaded all the files onto the file server that I am using 000webhost.com however Im having a few problems with the modrewrite I keep getting re-directed to http://error404.000webhost.com/?
Does anyone know how to setup cakephp 2.1 on a shared area??
Im getting this error now: Fatal error: Call to undefined function pluginsplit() in /home/a4300629/public_html/lib/Cake/Cache/Cache.php on line 151 not really sure how this error has come about, any ideas?
Thanks in advance.
Im looking for a tool that can watch database(mysql and oracle) for changes.
When someone inserts or updates something in any table i want to get to know about it.
I know that it can be done using triggers(http://stackoverflow.com/questions/167254/watching-a-table-for-change-in-mysql), but im more interested in some tool that can do it. free tool.
im trying to work through some questions and im not sure how to do the following
Q:Find the hard drive sizes that are equal among two or more PCs.
its q15 on this site
http://www.sql-ex.ru/learn_exercises.php#answer_ref
The database scheme consists of four tables:
Product(maker, model, type)
PC(code, model, speed, ram, hd, cd, price)
Laptop(code, model, speed, ram, hd, screen, price)
Printer(code, model, color, type, price)
any pointers would be appreciated.
Hi,
Im fighting with installation SIP for Python on Mac OS X. Finally after compilation and installation when I run console form folder of SIP (locally) I can import sipconfig, but when Im in other folder I cant - there is no module called sipconfig.
My question is - Where is folder to which I have to copy modules if I want to have them available globally (like "import os"), or how I can check it, because location "/Library/Python/2.6/site-packages/" doesn`t work.
Im trying to use this function with Wordpress:
http://www.wprecipes.com/post-on-your-wordpress-blog-using-php
When trying to add extra options im hitting problems:
Using the Wordpress Codex here: http://codex.wordpress.org/Function_Reference/wp_insert_post
Specifically trying to add:
'post_date' => [ Y-m-d H:i:s ] //The time post was made.
'post_excerpt' => [ <an excerpt> ] //For all your post excerpt needs.
Can anyone add them to the function for me?
Im trying to build a calculator with PyQt4 and connecting the 'clicked()' signals from the buttons doesn't as expected.
Im creating my buttons for the numbers inside a for loop where i try to connect them afterwards.
def __init__(self):
for i in range(0,10):
self._numberButtons += [QPushButton(str(i), self)]
self.connect(self._numberButtons[i], SIGNAL('clicked()'),
lambda : self._number(i))
def _number(self, x):
print(x)
When I click on the buttons all of them print out '9'.
Why is that so and how can i fix this?
Im trying to set up a AMP installation on my windows 8 laptop. However, Im not being able to get PHP to talk to MySQL. When I start apache server, the following error log is generated
PHP Warning: PHP Startup: Unable to load dynamic library 'ext\\php_mysql.dll' - %1 is not a valid Win32 application.\r\n in Unknown on line 0
PHP Warning: PHP Startup: Unable to load dynamic library 'ext\\php_mysqli.dll' - %1 is not a valid Win32 application.\r\n in Unknown on line ..
Any idea why this could be happening?
So I have a class like this:
def Word
end
and im looping thru an array like this
array.each do |value|
end
And inside that loop I want to instantiate an object, with a handle of the var
value = Word.new
Im sure there is an easy way to do this - I just dont know what it is!
Thanks!
im developing an app for the iphone and im able to get a video using a UIImagePickerController
the problem is that the video thats returned by the UIImagePickerControllerMediaURL is not full resoultion -- its only 480 x 360 as opposed to 640 x 480 like the videos that sync to my itunes.
-please someone tell me this is not a limitation of the current sdk?
- how can i work around it and is there a way to set the uiimage picker so its taking full res video?