Tagged Questions

0
votes
4answers
38 views

Can anyone advice on a simple way to create SQL tables on the fly, using a CSV file upload in a .NET Web App?

Hi, I have checked a few answers but was unable to find specific details on how we can create a SQL table using custom metadata (or Columns from a CSV file) which is uploaded by a …
4
votes
6answers
124 views

Getting object as a result from func/proc in Delphi

What is the best practice for returning simple objects from functions / procedures in delphi? eg. 2 kinds of code: pass created object as reference, populate object in Proc, dest …
1
vote
3answers
61 views

How to identify all the singles in a huge selection of music MP3s?

I have a project at home I'm thinking about using as a way of teaching myself something new. On an external NTFS drive I have a few tens of GBs of music albums, all in mp3 format …
1
vote
2answers
76 views

Creating a simple database schema

I'm new to SQL and could use some help in creating a database schema for my program, which manages and installs programs for my home network. Are there any guidelines/tutorials for …
0
votes
0answers
6 views

drect3d _create device is giving anerror

hai When i am running the sample code from windows mobile 6.0 tutorial for creating a 3d device am getting a message "operation cannot be completed the file cannot be found" ,i Am …
0
votes
2answers
236 views

Fowler Data Mapper Object Creation

I have been utilizing the Fowler patterns for domain models with a Data Mapper and have run into some confusion on how to implement the creation portion of CRUD. I can't utilize ex …
0
votes
1answer
305 views

how to create a com dll using visual studio 2008.

how to create a com dll using visual studio 2008.what are the custome settings needed for creating dll. that dll should be used in microsoft navision(ERP PACKAGE).
1
vote
4answers
180 views

Creating objects makes the VM faster?

Look at this piece of code: MessageParser parser = new MessageParser(); for (int i = 0; i < 10000; i++) { parser.parse(plainMessage, user); } For some reason, it runs SLO …
4
votes
2answers
109 views

Screensavers With XNA and .NET?

I'm fairly sure you can create screensavers with.NET but are there any tutorials on doing so? and how well can you make XNA screensavers?
18
votes
18answers
833 views

Is this Factory Method creation pattern?

I have been using factory method creation pattern for awhile now. I was just recently told that this: public static class ScheduleTypeFactory { public static IScheduleItem Get …
0
votes
3answers
295 views

iPhone Dev - NSString Creation

I'm really confused with NSStrings. Like when should I do NSString *aString = @"Hello"; of should it be: NSString *aString = [[NSString alloc] initWithString:@"Hello"]; But t …
0
votes
1answer
185 views

How to force Flex validation when a container is displayed

I have a Flex 3 app with a view in a viewstack, and that view must only be created when requested. I have declared validators for each of the controls on the view and I have create …
0
votes
2answers
977 views

Creating XML document in jQuery environment

Have referred to JQuery docs where they mention this piece of code. var xmlDocument = [create xml document]; $.ajax({ url: "page.php", processData: false, data: xmlDocument, …
0
votes
2answers
78 views

Sorting SPARQL results by date

Is there a way to sort the results by creation date? Example query which must be sortet: SELECT * WHERE {?s ?p ?o} limit 200
1
vote
3answers
47 views

hash vs specific parameters

I am in the process of writing a small javascript library to make form creation/validation easier. This is mostly an excuse to get better with javascript. I am debating about how t …

1 2 next
15 30 50 per page