Hi Guys,
Sorry for the long post....
I'm trying to understand if the behavior I'm getting on my app is "normal".
I have an app developed against the 2.0 sdk version (i.e. to make sure max #of devices can run it, as I don't use any "special" 3.0 features I tend to think the lowest denominator must be the best choice).
So In Xcode (lates...
I have an iPod touch with OS 2.2.1 and an iPhone 3GS with OS 3.0 both attached to my Mac. They both show up in Xcode Organizer. I now would like to be able to select which one of them an application gets installed on when running it from Xcode during testing. Is there any way at all to do this (except unplugging one of the devices, of co...
if i do this...
$('.class1, .class2').hide();
Then all items with class1 or with class2 will be hidden.
<pre class='class1'>hello1</pre>
<pre class='class2'>hello2</pre>
<pre class='class1 class2'>hello3</pre>
What is the syntax so only the 3rd <pre> will be hidden, I want to hide things based if they have both class1 and class2.
...
Hi All,
I have a script having dependencies to two other scripts. I'm using Eclipse as my NSIS editor. whenever I have changes to script3, I have to compile script1 and script2 first. And I do it manually. Other than creating a batch file, is there a way you could tell Eclipse that everytime you compile script3, it has to compile scri...
Hi there, I'm writing a Java application that will instantiate objects of a class to represent clients that have connected and registered with an external system on the other side of my application.
Each client object has two nested classes within it, representing front-end and back-end. the front-end class will continuously receive da...
Hi, I'll first tell you what I am trying to do, and then how I am trying to do it. If there is a better way please let me know.
I am working with two forms - lets call them form_main and form_preferences
When the form_preferences form is up, I want form_main to be disabled until a button (save button) on the form_preferences is clicke...
Hi,
I want to add multiple objects of UIImageView at run time. I just read that its possible through NSMutableArray.
But I also want to move that all objects of the UIImageView. Is it possible to track, on which UIImageView's object I touched?
Please help me. Any type of help will be accepted.
Thanks
...
I store various user details in my MySQL database. Originally it was set up in various tables meaning data is linked with UserIds and outputting via sometimes complicated calls to display and manipulate the data as required. Setting up a new system, it almost makes sense to combine all of these tables into one big table of related conten...
I'm working on a web application that will be a hosted, multi-user solution when it is finished. I'm trying to figure out the best way to handle the database design for my app. Specifically, I need to figure out how to handle multiple, separate accounts.
The way I see it, there are a few options:
1) Have one set of database tables. I...
How do you specify a multiple line string literal in Actionscript 3?
Multiline String Literal in C#
...
I have a nettcp WCF service that supports single callback method.
I want to add new callback methods by adding new interface that contains the new methods without breaking the old one as there is another things depend on the old interface.
I tried to add new interface that inherits from the old one but the gerenated proxy in the the cl...
Hi,
I have an account in oracle database. I can connect it via jdbc in my java code.
When I access database from Oracle SQL Developer, under "Connections"->"Other Users", I can access to their tables (I have been assigned privilege for reading others tables).
My question is, how to access / retrieve data from others tables via jdbc?
...
I've got an ItemsCollection hosted inside a ScrollViewer that is large enough to span multiple pages when printed. I've so far managed to print a single page using PrintVisual(itemsControl) but from what I've read, I need to approach printing a single control accross multiple pages differently. Could anyone point me in the right directio...
What am I missing? I need to return all records that match the Last_Name Query whether they do or do not have a Customer Number in the Field_Table.
I am calling the Client table twice because each client Id has a parent whose contact number = 0. I need the parent record to return the city, state, zip and company name.
I have tried loo...
Hi,
Im new in using Django, and i want to know if there is some way to have a multiple date selection from a calendar,
i have multiple days :
for example a day is :
[ 28 july 2009 8:30 - 28 july 17h00 ]
Is there any way to do this with Django Forms
Thanks a lot
kimo
...
I have an array with zipcodes indexed by distance. now i need to select pizza shops
based on the zips, some thing like:
ziparray[]
foreach loop
SELECT * FROM location WHERE food='pizza' and zip='ziparray[]'
//do stuff
The zip array can grow up to 30 or 40 zips in time, which means 30 or 40 querys.
Is there a better way to do this? ...
When you create a Service bean or Dao bean in your Spring applicationContext.xml file, what is the scope of those beans?
Will every person who accesses the web application use the same instance of the bean, or is the bean instantiated for each user's session?
...
Hey all, first time poster, long time reader, so take it easy on me :)
I'm writing an application that reads in a bunch of folders and allows you to download an image for each folder. There is a WebBrowser control where you can browse to a particular image, and click a button "use this image for the selected folder".
Each "folder" is r...
Hi,
Is there an already implemented Calendar for JSF which allows the user to select multiple dates? I need a calendar in which I can select more than one date.
Thanks
...
I have a view based app going here with 3 different pages, I can't for the life of me get all the pages linked together correctly or completely.
Its just a home page with 2 buttons linking to the first and send page.... then back to the home page.
I have a mock up of what I am working with if someone could look at it and tell me what...