multiple

iPhone memory management question (adding a subview to a view in a for statement)

I need to add more views to a view for handling multiple webaddress and the clicks on the labels. I try to do it in a for statement. My code is something like that: // we have a UITabbarViewController for holding amongs other the parentViewController UITabBarController *tabbedViewController = [[UITabBarController alloc] init]; // creat...

I would like to generate view in oracle that converts comma-separated entry to columns

I would like to generate view CUSTOMER, CUSTOMER_ID, PRODUCTS ABC INC 1 A=XYX, B=ZZZ DEF CO 2 A=XYX, B=ZZZ, C=WWW GHI LLC 3 B=ZYX Would like the view to be something like CUSTOMER, CUSTOMER_ID, A B C ABC INC 1 XYX ZZZ DEF CO 2 XYX ZZZ WWW GHI LLC 3 ...

Multiple Forms in C# Window

Hi people I'm trying to build a simple application to test the idea of having multiple forms in one application. For example, in Visual Studio, you have the IDE - design area, and on the right hand side, you have a form called Properties and Solution Explorer When you click on something in the design area, i.e. Textbox, on the right ha...

Proprietary Software License

Hello guys, I've several people using the same proprietary software (at the same time, same installation), do I need an end-user license for each one or can I buy a multiple license (which, of course, would be cheaper) ? ...

Transferring MySQL Database Link Across Multiple PHP Pages

Are there any tricks to transferring and/or sharing the Resource Links across multiple PHP pages? I do not want the server to continue connecting to the database just to obtain another link to the same user in the same database. Remember that the link returned from mysql_connect() is automatically closed after the script it originated o...

C++ multiple declaration of function error when linking

Hi, I seem to be forgetting my C++ ... I'm trying to declare some functions in C in separate sources, and including the appropriate .h when necessary. It compiles OK; but the problem is during linking, where the linker complains about functions already being defined. I even tried defining the functions as extern, in a (vain) attempt ...

Grid editing multiple records in ASP.NET

I've got to present a spreadsheet-style interface with a grid of textboxes for the user to fill in in an ASP.NET application. What's the most efficient way to construct this and to save the results? ...

mysql dump tables only

Hi there In my database I have some tables and views. How can I export all the tables( and not the views ) from my database from command line? ...

UITableView with "multiple column": need sort

Hi friends, I have an UITableView with "2 columns" showing the content of 2 different "unlinked" arrays. The second array is dinamically updated. My question is: How can I sort the 1st array (actually a dictionary of arrays) using the content of the second array? ...

multiple instances of named argument in list

Hi, I have a problem executing oracle procedures from Visual Studio 2008's Server Explorer, when i try to execute a procedure all the input parameters are doubled! it only happend to me in one workstation, i've tried to reinstall oracle products, but it doesn't helped me... i get the following error message when i try execute the pro...

oracle6i form

I have to design the a form in oracle 6i. The form is as follows- the form has 5 field. they are: 1.patientid 2.visitid 3.babyid 4.examination 5.plan For a particular baby,patientid and visitid is unique. But for that patientid and visitid of a baby,there are multiple record in examination and plan field. I design the form and crea...

Managing concurrent projects written in different programming languages

I currently have three independent projects on my plate - each requiring development in a different language. There's a WCF Web Services / Windows Forms project in C# .Net 3.5, a web site in PHP with generous javascript, and maintenance on a legacy Windows application written in VB 6. Because I'm switching so often, I frequently start ...

MS Visual Studio 2008 Professional: How to disable webservers for other projects?

I am using visual studio 2008 professional edition. In my solution I have about 8 projects. When I am working on 1 project and I set this one as my startup project and want to debug this one, I get 7 webservers, all with different ports. I don't want this, I just want that only one webserver is getting started for the project I am debu...

delete rows from multiple tables

I'm trying to use SQL to delete multiple rows from multiple tables that are joined together. Table A is joined to Table B Table B is joined to Table C I want to delete all rows in table B & C that correspond to a row in Table A CREATE TABLE `boards` ( `boardid` int(2) NOT NULL AUTO_INCREMENT, `boardname` varchar(255) NOT NULL DEFA...

SQL Find most recent date from 2 columns, AND identify which column it was in

I have a table called tblAssetsInUse with the following structure: intPK intAssetID datCheckedOut datCheckedIn 1 450 1/5/2009 10/5/2009 2 300 2/5/2009 <NULL> 3 200 2/5/2009 <NULL> 4 450 12/5/2009 5/7/2009 ...

Java Generics Wildcarding With Multiple Classes

I want to have a Class object, but I want to force whatever class it represents to extend class A and implement interface B. I can do: Class<? extends ClassA> Or: Class<? extends InterfaceB> but I can't do both. Is there a way to do this? ...

How can I return multiple values from a function in C#?

I read the C++ version of this question but didn't really understand it. Can someone please explain clearly if it can be done and how? Thanks, Ash ...

How to Replace Multiple Characters in Access SQL?

I'm a novice at SQL, so hopefully someone can spell this out for me. I tried following the "Replace Multiple Strings in SQL Query" posting, but I got stuck. I'm trying to do the same thing as the originator of the above posting but with a different table and different fields. Let's say that the following field "ShiptoPlant" in table "...

Switch/toggle div (jquery)

Hello. I wish to accomplish a simple task (I hope!) I got two div tags and 1 anchor tags, like this: <a href="javascript:void(0);">forgot password?</a> <div id="login-form"></div> <div id="recover-password" style="display:none;"></div> What I wish to accomplish is use the anchor tag to toggle between the two div tags, hide the one a...

Running multiple web frameworks on one machine?

I want to start experimenting with all these different web frameworks that are available. I was wondering if they could all run in one machine at the same time? I know that all my database services can all run at the same time, along with the Javascript frameworks, but what about something like Rails and Java applications? Can those pl...