Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
143 views

Moving items from one tableView to another tableView with consolidation

Let's say I have 2 UITableViews next to eachother on an ipad in landscape-mode. Now I want to move multiple items from one tableView to the other. They are allowed to be inserted on the bottom of the ...
2
votes
2answers
163 views

Consolidate mssql databases into 1

I need to consolidate 20 databases that have the same structure into 1 database. I saw this post: Consolidate data from many different databases into one with minimum latency I didn't understand all ...
1
vote
4answers
98 views

Design Consideration - Should I consolidate my PHP files?

My understanding is that "name".class.php is standard convention for creating classes in PHP, and consequently I have a separate file for each class. What I would like to do is consolidate my small ...
1
vote
2answers
93 views

ANY way to consolidate this code?

I am building a PHP registration form which takes the following fields for up to 20 athletes: First Name Middle Initial Last Name Federation Number Address City State Zip DOB SSN Phone Email ...
1
vote
4answers
146 views

Condensing repeating JQuery code

I have a page that has a large image on it with a number of thumbnails. When you mouse over a thumbnail the main image changes to the image you have just rolled your mouse over. The problem is the ...
1
vote
1answer
86 views

How to do regular database cleanup in a JPA application?

Short background: I have a software that regularly downloads files. The Statistics of these downloads are stored in the database as a DownloadResult entity, which is in turn associated to the entity ...
1
vote
5answers
73 views

How do you decide which parts of the code shall be consolidated/refactored next?

Do you use any metrics to make a decision which parts of the code (classes, modules, libraries) shall be consolidated or refactored next?
0
votes
0answers
156 views

excel 2010 macro to consolidate data from several worksheets

I have to consolidate three different worksheets into a single worksheet based on value of first column of worksheets. Values of First sheet A1 1000 A2 1500 Values of Second Sheet A1 May A1 ...
0
votes
1answer
81 views

VBA::consolidating arrays

I am creating a search function that allows users to search up to 3 different properties at the same time in a database (prop1,2 and 3) and I have created this sub in VBA by putting the results for a ...
0
votes
2answers
68 views

Trying to consolidate jQuery code

I have loads of code that most need to be loaded BEFORE the other piece of code in order for it to work correctly. In order for me to achieve this I have multiple scripts over and over again. Is ...
0
votes
2answers
53 views

How do I open sheets and consolidate them into 1 file with multiple sheets?

I have a user to input 20 store numbers into cells A1 to A20. Cells B1 to B20 will have the hyperlink that each store number has, for example: cell B1 to B20 will have the following formula: ...
0
votes
1answer
56 views

Is there a way to host Azure Worker code within an Azure Web role?

I have a relatively low bandwidth Azure Web Role application and also several processes that run under a Worker Role. My worker role also spends most of its time idle as well. Is there a way to do a ...
0
votes
3answers
40 views

Consolidating integers within Ruby (on rails)

I have a class which contains two integers (a and b) and a reference to an entity. I want to be able to report back on the sum of all the a's and b's within the class. E.g. I might have three ...
0
votes
3answers
66 views

Condensing vb.net code

I have the following code: Private Sub txtFileFromLocation_TextChanged(ByVal sender As System.Object, ByVal e As System.Windows.Controls.TextChangedEventArgs) MachineNameUIDisabled() ...
0
votes
1answer
284 views

Script to copy files on CD and not on hard disk to a new directory

I need to copy files from a set of CDs that have a lot of duplicate content, with each other, and with what's already on my hard disk. The file names of identical files are not the same, and are in ...
0
votes
1answer
112 views

Local SQL Server 2008 Express data upload to Web based SQL Server 2008

Over the next few months, we need to consider the best technology/technique for periodically uploading SQL Server 2008 Express data that is held on a local network up to a Web based SQL Server 2008 ...
0
votes
1answer
29 views

Consolidating / Clustering Terms and phrases

Our application allows a user to enter company names that their organization works with. A current issue is that the way one user inputs the company name varies from user to user. We need to ...
0
votes
1answer
60 views

SQL Server Replication, Consolidation

How do I consolidate multiple publications into 1 consolidated table on the subscriber? For example. Consider a very simple sales model where we replicate sales data from the stores to the central ...
0
votes
1answer
810 views

How to build a consolidated pivot table when the source data contains column headings that are dates?

I have a customer who is currently using Excel to do their staff planning. They have many workbooks for different projects and each project contains 1 or more sheets containing the actual staffing ...
-1
votes
1answer
152 views

vba:: consolidate array

I am trying to create a function that calls 2 arrays from a sub and compares the two arrays and only input duplicate values in to a new array and return the new array back into the sub. I know there ...