Tagged Questions
The data-collection tag has no wiki summary.
2
votes
3answers
438 views
Which real-time communication protocol between hardware and web components?
I wasn't entirely sure how to word my question in the title so apologies if it's confusing.
I'd like to build a system that would function as a sort of information dashboard for my home. It would ...
1
vote
4answers
172 views
C# : Data collection to keep string?
Any Data Collection to keep the strings?
I want to know any other data collection that can keep string, because enum cannot keep string.
1
vote
1answer
201 views
Capturing International Personal Data (Name, Address, Phone, etc) ASP.NET
I am looking for the best way to capture and validate US & international personal data. I have to use ASP.NET 2.0 (vb.net) and no 3rd party web services. This are all client restrictions.
The ...
1
vote
3answers
592 views
Google Analytics - can it collect form data?
Simple scenario:
I have a signup form, with user name, password, email address, may be credit card number.
At the bottom of the page, I implement the Google Analytics code.
when user clicks submit, ...
1
vote
1answer
98 views
asp.net: which data collection should be used to return a table
I'm using a stored procedure to create a temporary table and want to return it in a data collection:
public static >>data collection<< reportData(int intUserID)
{
SqlConnection con = ...
0
votes
2answers
53 views
collect data from a form hosted on another site
We have a number of clients that have agreed to send us their form data once a form is submitted on their site. Is this possible and what is the best way to handle this? Our site is built in ...
0
votes
2answers
32 views
Database Design/Structure — Collecting Data over time
currently I am in the process of structuring a database for a site I am creating. However, I have come across a problem. I want to log the amount of times a user has logged in each day, and then be ...
0
votes
1answer
67 views
Interpreting multiple-choice forms (paper) in C#
I have a one-off project where the company is auditing a small amount of data for a huge amount of people. It is probably easiest to get each of these people to audit themselves, but not all people ...
0
votes
2answers
48 views
Moving .NET based data collection system to a remote, unattended installation?
I have a need to do some fairly simple (at least on the surface) data acquisition and logging. In a remote location (as in, on another continent), there will be a few RS-485 devices (our custom ...
0
votes
1answer
357 views
Automating acquisition of speed limit data from a source such as google maps API, ect
So, I developed a math model for optimizing biking routes based on user preference, and I am trying to develop an application where the solution is solved using Dijkstra's algorithms (and of course ...
0
votes
1answer
64 views
Data collection framework
Suppose you need to collect data from a bunch of people, and then collate their responses, is there a good framework to build an application to coordinate this activity? Are there any off-the-shelf ...
0
votes
2answers
79 views
What is the appropriate way/pattern to collect information from classes?
To keep things simplified lets say I have an interface RandomProvider interface
public interface RandomProvider
{
double nextRandom();
}
And say I have 3 different implementations of this ...
0
votes
3answers
87 views
How to direct people to fill out a form
What is the best way to get people to fill out a form correctly? For instance I originally had a "Name" field on a form and I want 1 person per form. People filled it out like this: "Mark & Becky ...
0
votes
2answers
83 views
Data Collection from multiple workstations
I'm currently working on developing a windows service which will be deployed to all the workstation within the company. The purpose of the service is to collect various statistics and record them in a ...
0
votes
2answers
78 views
Best practice of writing a program which has too many data collection processes C#
I have to login in to various elements to retrieve some data, problem is each element has its own login credentials, I want to write all such data collection processes into one single program so that ...