I'd like to implement drill down view in Android. Currently, onListItemClick, I refill
the same list view with different data.
questions:
any other suggestions? Something like the way it is done using UITableView on iPhone?
is it possible to animate (push left or right) the listview fill operation?
I got an active social networking site right now with about 530 members and I would like to change my site's domain name to another one.My question is how can you do this efficiently without losing my members?Do I need to create a redirect page for the old members?
I have a C# program that works correctly on xp and vista but it needs to be used on windows 7, I have not been able to come up with a solution, it appears that getpixels just doesn't work right on windows 7, thanks.
Are there situations that we should use a windows service ?
I am building a client-server project (c#) and the server supposed to work alone without any user so someone advised me to use a windows service to run the server, is this right ? or there are a better solutions ?
I am trying to figure out what is needed for the CONTACTS_IMPORT_CALLBACK variable in django-friends or django-contacts-import applications (contact import is built from friends). I have tried view models, etc.. but everything throws errors. Neither application has documentation so I am just grasping at straws for what is needed. Can anyone point me in the right direction?
OK so here's my code: http://www.so.pastebin.com/08ghTkQL
When I press UP, DOWN, LEFT, or RIGHT... the applet redraws itself and positions the new player... sometimes when I do this (pressing buttons), the whole java applet flickers.... how do I stop this?
Thank you.
I have 2 divs...each are float left, and each have a "width".
When I resize my browser, the right div goes down to the bottom of the left div. Why? I'd like it so that during resize, it stays there.
Hi,
First PHP project and I'm stuck!
I wish to allow users to click a button or a link and download a file.
However, my PHP must first perform some tasks, choose the right file, record the download event in a db etc. This I can do, but how do I then send the file as a response to the user's click?
Thanks for any help.
How can i create a function which looks like the jquery callback $
Say i want to call a element with id= "mydiv".
i want to be able to call it like
var div = $("mydiv").value;
i think the function should look like
function $(element)
{
return document.getElementById(element);
}
Is that the right way to do it, or do you prefer another way to solve it?
i search online but can't get satisfactory result
i want to protect images on my website, i know i can disable save as, right click.
the real question is can we Disable Clipboard & Print Screen with JQUERY or java script.
so no image copy from print screen.
thanks
Hey,
what i read on several help-pages, was, that getting jquery code completion to work, was just:
getting targeted browsers right (the
only one i choose was firefox 3.x or
later)
putting jquery file into project (it
is now visible in "source files")
adding the "script type"etc.-line (tried filename with and without / before )
Did this... but still no code completion. Any ideas? Got windows 7 and netbeans 7, 32bit system.
Wtf is wrong? :(
http://www.loaditup.de/files/615138.png
I have a very cluttered code, and the current revision is almost complete, meaning all functionalities i wanted for this revision/sprint are done.
Should i finish this revision as it is and refactor it later or should i refactor it right now?
I know that this is a very objective question but I really want your opinion on this. What's the best right now in terms of comfort and performance? What do you use and why?
I've been using a eclipse with the aptana plugin and have all my projects neatly defined.
However one project is a main corporate website lets say http://sun.com and it's set up nicely for FTP transfers.
However i was wondering if there was a way to define directories of that as subprojects or projects in there own right without messing up the file transfer stuff.
Any ideas?
lets say i want to test if the first letter in cell A1 is an "A"
=Mid(A1, 1, 1)="A"
Now lets say i want to find out if either the first and fourth letters in cell A1 is an "A"
I would of thought you could something like this:
=Mid(A1, or(1,4), 1)="A"
Instead of having to do this:
=IF(MID(A1,1,1)="A",TRUE,IF(MID(A!,4,1)="A",TRUE,FALSE))
Am i on the right track?
Could i make the above Formula simpler?
If not, why not?
Hi SO, and happy Friday
I have a question regarding the use of this.method();. My code seems to work without using the this., but I include it because it seems like the right thing to do. When should .this be used, and because it's presence doesn't always make a difference, what's the best practice for .this?
Hi ,
I want to trigger an event when user Right-click on the page, let's say I want to navigate to another page on Rightclick down event.
Can any one help on this please?
Is the web sill 100% stateless? Before you start to say "of course it is, wtf" listen to what I'm saying here.
I'm starting to wonder about this because web servers are definitely caching things, keeping connections open in connection pools, etc. So you can't really stay it's 100% stateless anymore.
Am I right on this?
I don't have the c++ environment yet right now.
It seems to me that a function must be declared/defined first to be called in c.
I mean, the declared/defined part should be ahead of the calling part.
Is it the same in c++?
Finally, it seems c++ is adding new features to itself,
what about c, has it stopped being developed?
There are 3 loops in C: for, while, do-while. What's the difference between them?
For example, it seems nearly all while statement can be replaced by for statement, right? Then, what's the advantage using while?
There are 3 loops in C: for, while, do-while. What's the difference between them?
For example, it seems nearly all while statement can be replaced by for statement, right? Then, what's the advantage using while?
I have image in website's header as background. Now, when page is loaded, I'd like to move it slowly from left to right (about 100 pixels) and then stop. Is there any not too complex way to do that?