|
We've been given the task by my customer to export data from a legacy DOS system, using a RAIMA database , so it can be imported into a new system we are writing for them. It looks like the data is stored in a flat file format, though when we open the...
Started by mattruma on
, 8 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Will the DOS application run in a command window in Windows XP? If so, you might be able to cut and paste the data into a text editor whatever reporting mechanism the dos app has to....
Dump the data from it, or figure out the file format.
|
|
In my Winforms application, I want to export the data from my DataGridView to a Excel spreadsheet.
Is it simply a job of looping and outputting the results comma seperated?
Started by Anonymous Cow on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Outputting results comma separated will give....
If you need more control, you can always automate excel from vb.net or from C# . .
It is a simpler way without any dependencies.
Is it simply a job of looping and outputing the results comma seperated? Yes .
|
|
How to export MVC detail view data to excel file? What's the simplest solution?
Started by KentZhou on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
RowNcol1,rowNcol2,rowNcol3, ,rowNcolM
In my opinion is the fastest and easier way to export data into Excel Separated....
Will only want to export data that can be opened in Excel, there is the option of creating Comman ....
|
Ask your Facebook Friends
|
How can i export table data with column name in text file in sql server 2005?
Started by Paresh on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Other way to do that is right click on database, tasks, export data and move it to another location.....
Safest way to do that is to backup data and then restore it on other server! right click it will be appended to existing dataset.
|
|
What is the simplest way to programmatically export Excel data to Matlab?
Started by Delynx on
, 6 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
If you are running Matlab.
Interface for transferring data back and forth between the two programs.
|
|
I have a gridview export to .csv file. When I export data, if there is a value like 10-10 and it open in excel it is shown as "10-oct". What do I do to get it to show up as "10-10"?
Started by Kumara on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
This will be displayed....
If you change the data in the .csv file as follows ...,=”10-10”,...
Isn't that Excel just going "oh that looks like a date"?
Another application viewing the data may tell Excel exactly how to interpret each column.
|
|
I am using Excel 2003's XML Data Source and exporting the data using the menu option Data -> XML -> Export. The data exports fine, but the resulting elements are indenting using tabs. This may sound trivial, but is there a way I can set the formatting...
Started by Richard Morgan on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
If you can, consider writing a simple macro to perform the export yourself to a string variable via the XmlMap.
To modify the indent character (or XML-writer formatting) of Excel's XmlMap export logic.
|
|
As the title suggests, is it correct or valid to import/export static data from within a C++ class?
I found out my problem - the author of the class I was looking at was trying to export writable static data which isn't supported on this platform.
Many...
Started by Dynite on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Arguably, among ....
That and it should give you the expected result - the static data would be accessible outside your dll and other of exporting classes, I'd say that exporting static data doesn't make the problem any worse.
|
|
This question may be too product specifc but I'd like to know if anyone is exporting bug track data from HP Quality Center.
HP Quality Center (QC) has an old school COM API but I'd rather use a web service or maybe even screen scraper to export the data...
Started by Gary Russo on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
In QC 9.2 (maybe present in earlier versions, too), there is Export/All in the Defects menu of other data formats....
Each graph has a tab called data grid that lets you export data to Excel and a bunch data.
Graphs).
|
|
How can I export a GridView's data to a Microsoft Excel 2007 file?
Also, does Microsoft Excel 2007 support html elements and tags?
Started by Myuser on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
If your users are using IE, just have them right "Export to Excel." It isn't an amazing faeture--and it requires IE--but otherwise if you need quick and dirty HTML table export....
The document and writes the data into the Response.
|