A programming paradigm in which the program statements describe the data to be matched and the processing required rather than defining a sequence of steps to be taken.
Questions tagged [data-driven]
181 questions
0
votes
1 answer
How to automatically assign/copy all fields from an object A to object B without cloning?
Context: A non-intrusive way to reload objects when their description file is changed
Focus: adding dynamic reloading of objects with minimal changes to the existing codebase
Function called by FileSystemWatcher or alike:
void OnFileChanged(string…

JBeurer
- 1,707
- 3
- 19
- 38
0
votes
2 answers
"Mail merge"-like functionality in Dreamweaver, or in any other web editing tool?
I have inherited several related, low-traffic web sites to manage and edit. These sites are implemented with static html, and they've accrued lots of stray tags and other cruft. I want to try to clean these up and migrate them to some common page…

Chris Farmer
- 24,974
- 34
- 121
- 164
0
votes
1 answer
Is it possible to create multiple images in Photoshop using HEX values from a CSV file
I need to create 100's of single colour .png files in photoshop where I can call hex values from a CSV file to change the colour of the image and save as the corrisponding name in the CSV file.
What is the best way of doing this?

poisongrass
- 1
- 1
0
votes
1 answer
(D3) Data Driven Documents -- Transition Repetition
I've looked for over 3 hours now trying to find a way to chain transitions indefinitely...
My only solution is wrapping the code in a function, then repeatedly calling the function with setInterval or waiting for the transition 'end' event
Example…

neaumusic
- 10,027
- 9
- 55
- 83
0
votes
0 answers
Need C# example for setting background color on WPF ListBoxItem using runtime values
There are a lot of people providing coloring answers with meta-data programming which works fine, for simple color changes. But, most people really have a need to color based on data values in the model. Can someone provide a c# example code…

Grwon
- 61
- 2
0
votes
2 answers
SSRS Data-Driven Subscription [based on static Subscription table] Not Picking Up Changes Made to Subscription Table
I have a .RDL report which I designed in BIDS and have deployed to my report server. The report asks for three parameters before viewing report: Year, Month and Customer ID. The report works great and does exactly what it is supposed to.
While I…

ezbz
- 1
- 3
0
votes
2 answers
ASP.NET C# use session data from dropdown
OK so i am a bit lost and could do with some help.
I am creating a program that a user inputs data into a form on the default page (I have that working).
Then i use session variables to get the data input from a text box on the default page and…

Beep
- 2,737
- 7
- 36
- 85
0
votes
1 answer
How to get the HSSFCell string value to List>
I have created a method to pull the first row and another method to pull the test data. I am unable to add the cell directly to List using list.add(), how to convert them to string and add to list
public class read {
HSSFCell cell;
HSSFRow…

user2207839
- 77
- 1
- 9
0
votes
0 answers
MSTest data driven rows are cast to ints
I have a data driven test (using MSTest) that has inputs that look like this:
ValuesToInput,ExpectedValue
0,0
00,00
000,000
0000,000
00000,000
000000,000
When I pull those out of my TestContext they are just 0. It has converted my string of 0000 to…

Vaccano
- 78,325
- 149
- 468
- 850
0
votes
1 answer
Data Driven Website - how to hide specific columns
We have a datadriven website in C# being built in VS 2010. How do I prevent certain columns in a table from being displayed on the webpage ?

Vaishali Bulusu
- 151
- 2
- 5
- 10
0
votes
1 answer
Email option not showing up on Sharepoint site when setting up data driven subscriptions
I'm trying to create a data driven subscription on Sharepoint site and I want use Delivery type as Email. But I don't see that option there. Can someone please help? Do I need to enable any option or configure email somewhere?

user1220540
- 39
- 2
- 8
0
votes
1 answer
SSRS Multiple Data Driven subscription with same table
Currently I have 4 or 5 reports (more are coming) with over 50 subscriptions on it (different email and different parameters), and I want to regroup them using the data driven subscription.
I can create the dds subscription, I have test it and it…

AlphaDaemon
- 11
- 2
- 6
0
votes
1 answer
Building a data driven asp.net web forms application
I need to create an asp.net web forms application which is data driven using VS. The application needs to have a login screen, with customers and staff, with a product page where they can select a product, then go to a shopping cart.
The staff need…

user2293838
- 29
- 7
0
votes
1 answer
Dynamic data-driven website localization
I have a website that reads some of its content from a database, I need this website in both languages, English and Arabic.
the needed content is duplicated in the database in both languages. lets say I have a En_Name and Ar_Name columns in my…

halfraed
- 85
- 1
- 9
0
votes
2 answers
Junit Data Driven test using only selected Datapoints
i have 3 datapoints of string array and 2 datapoints of integer array.
@DataPoint public static Integer[] xxx ={100,200};
@DataPoint public static Integer[] x ={-14,15};
@DataPoint public static String[] xx = new String[]{"de" ,"Y"};
@DataPoint…

vinod
- 1,115
- 4
- 13
- 24