multiple

iPhone + UITableView with multiple columns

Hi, I want to display a UITableView with Multiple Columns. The first column will have some text and another column will have a button, click of button will navigate to some another view. ...

Multiple facebook accounts in single iPhone app

Is there a way I can allow user to login with multiple facebook accounts at the same time? Like what tweetie2 does for twitter accounts. So if I have two facebook accounts - [email protected] and [email protected]. I want the user to login with both of them on my iPhone app. Selecting tab for [email protected] will show statuses from a and selecting tab [email protected] would...

Table join using multiple columns in torque 3.3

Hi there, Here is something I'm trying to achieve using Apache Torque (3.3): Table 1: id f_id start_position end_position Table 2: id f_id start end I need to do: select * from table1 inner join table2 on table1.f_id = table2.f_id and ( (table1.start_position <= table2.start and table1.end_position >= table2.end...

addEventListener only works on last object.

In the following code, it seems I only get the 'otherboxclick' call for the last box added (b1). If I change the order the boxes are added, it's always just the last one that works. How can I get it to work for all the boxes? <html> <head> </head> <body> <script type="text/javascript"> function otherboxclick(e){ alert("other...

java 1.4 -sql server 2000:not able to insert multiple records into table.

INSERT INTO UPLOAD_FILE_RECORD_FIELDS_DATA select ?,?,?,? union all select ?,?,?,? union all select ?,?,?,? I have to insert multiple records into one table.So i am using query as below.and setting parameter values. But i am getting error code 77.What is cause? No of records to be inserted are approx 70000.So i am inserting 100 ...

AS3 - multiple level loaded swfs , unloading and assigning xml

I have a Main Document class that instantiates 2 classes that control loading of two navigation grid swfs. These are populated by xml from navigation buttons on the main stage. A 3x3 navigation grid repopulates it's images and links when the buttons on the main stage are clicked Then loads the chosen video when a node on the grid is clic...

PHP multiple radio buttons

how can i process all radio buttons from the page? <input type="radio" name="radio_1" value="some" /> <input type="radio" name="radio_1" value="some other" /> <input type="radio" name="radio_2" value="some" /> <input type="radio" name="radio_2" value="some other" /> this buttons will be added dynamically so i will not know the radio ...

on jQuery: with a lot of items show only div of this anchor clicked

first of all: sorry for my english i have a webpage like this <div class="item"><div class="details"> <ul> <li><a href="#">Show div 1</a></li> <li><a href="#">Show div 2</a></li> <li><a href="#">Show div 3</a></li> </ul> <div>div 1</div> <div>div 2</div> <div>div 3</div> </div></div> IMPORTANT: i have several divs called 'i...

MVC Multiple ViewPage items in aspx required

Hi I need to pass in 2 objects to a page to access Model.NewsItems and Model.Links (the first is a class of news item objects with heading, content etc and the Links are a set of strings for hyperlink depending on whether the system is up or down. This is the page declaration <%@ Page Language="C#" MasterPageFile="~/Views/Shared/Site....

Retain data from views while navigating through multiple views in ASP.NET MVC App

I have 5 views in my ASP.NET MVC application. Some data were captured from these views and I am navigating through these views using 2 buttons: the Previous and Next buttons. So I fill the data in View 1 and I go to view 2 and enter the data there and so on.. till View 5. Now the question is: If I come back again to previous views, ho...

Most efficient way to query multiple identical tables in separate databases

Hi, I have a server (SQL Server 2005) with multiple archive databases (1 per quarter stretching back 8 years) that are all structurally identical. I frequently need to query back over a certain date range that spans n databases, usually n is small 1-3 but it's possible I need to query the whole set. Any thoughts n the most efficient w...

Too many tables; MySQL can only use 61 tables in a join

What is the best way to export data from multiple tables in MySQL. I'm basically working with product details. Say a product has 150 attributes of data. How can I export that in a single row and then export it to a flat file in CSV or tabdelimited format. Getting error Too many tables; MySQL can only use 61 tables in a join /**** Get ...

Java Multiple Input Dialog

I have a Java application and I want to open a new dialog from the main interface where the user can enter his name, surname and country and then click ok. How can I open a dialog which has a number of different input fields and then save that information in a variable? ...

.NET solution - many projects vs one project

Hi all, We currently have a rapidly growing C# codebase. Currently we have about 10 projects, split up in the usual categories, common/util stuff, network layer, database, ui components/controls etc. We run into the occasional circular dependency where project x depends on something in y and vice-versa. We are looking at maybe collap...

How can I send data to multiple IPs in VB.NET with TCP/IP sockets?

I have an array of IP addresses, and I want to send the same data to all of them. I could just send the loop code that sends data but I think there's a better way of doing this. I've heard of multicast, what exactly is it? I think it's what I need but how do i use it. ...

Firebird multiple statements

Hello, is there any way to execute multiple statements (none of which will have to return anything) on Firebird? Like importing a SQL file and executing it. I've been looking for a while and couldn't find anything for this. ...

upload multiple documents in sharepoint with content type form

Hi, my question is this: how can I upload multiple documents in a sharepoint site and still have that page woth the form saying content type like it does when I upload one document? Thank you. ...

Android: ListView elements with multiple clickable buttons

I've a ListView where every element in the list contains a TextView and two different Buttons. Something like this: ListView -------------------- [Text] [Button 1][Button 2] -------------------- [Text] [Button 1][Button 2] -------------------- ... (and so on) ... With this code I can create an OnItemClickListener for the whole item: ...

Databinding property of multiple objects

Hello dear programers, how u doin? I have a problem. I want to bind multiple objects to a single textbox for example. Lets say I have a list with many tasks. Each task contains a title. public class Task { public string Title { get; set; } [...] } Now I want to select two tasks in a listbox. If the title of both tasks are the same I ...

php multiple databases problem

Hi, i've set two database conections as below $con1 = mysql_connect("localhost", "root", "pwd") or die (mysql_error()); $con2 = mysql_connect("localhost", "wordpress", "pwd", true) or die(mysql_error()); mysql_select_db("lab_ancp", $con1) or die(mysql_error()); mysql_select_db("wordpress",$con2) or die(mysql_error()); and it works...