export

Fast C++ program, C# GUI, possible?

Hello everyone... I'm looking into developing an application that will process data from a line-scan camera at around 2000 lines (frames) per second. For this real-time application, I feel that C/C++ are the way to go. (It is my feeling, and others will agree that Managed code just isn't right for this task.) However, I've done very ...

export local outlook contacts to vcard

All, I'm trying to write a program that will export all the contacts stored in the local pst file of outlook to vcards I have seen several shareware programs that will do it but they seem pretty expensive (50 bucks+) I have seen an example here but it seems more geared to an exchange server rather than to the local install of outlook ...

How to export the definition of an R object to plain text so that others can recreate it?

Let's say you have this data in R, and you want to post a question on stackoverflow. For others to best help you, it would be nice if they could have a copy of your object (dataframe, vector, etc) to work with. Let's say your data is in a data frame called site.data > site.data site year peak 1 ALBEN 5 101529.6 2 ALBEN 1...

ComponentArt: Exporting the Grid Data

Hi all, I have a need to export the contents in a ComponentArt Grid into a file, preferably excel in csv format. I was wondering if anyone had any ideas how to best approach this task. At the moment we have the grid being populated with data, and using client templating some minor manipulation is being performed before it is displayed...

Is it possible to export a value of an variable from one javascript to an other?

Hi All I have made a Web page using jquery and php where all files are used in a modular style. Now I have two JavaScript files which must communicate with each other. One Script generates a variable (*id_menu_bar*) which contains a number. I want that this variable gets transported to the second JavaScript and is used there. How do I ...

How to export an entire Access database to sql?

I just got a lovely access database, so the first thing I want to do is to move it over to a normal database management system (sqlexpress), but the only solutions I've found sounds like craziness. Isn't there a "export database to .sql" button somewhere? I have around 50 tables and this export might run more than once so it would be g...

How do I expose erl_interface (Erlang's C library) through a DLL?

I've been working non-stop for the last three days on a completely managed interface to Erlang. At this point, I've decided that there simply must be an easier way. I've got a little over 3000 lines and it's not even in a compilable state yet. To be honest, I'm getting lost in my own code. So, I then remembered that Erlang has a C libra...

Import table data into database that expoted before

I am working on a feather that export some tables(~50) to a disk file and import the file back to database. Export is quite easy, serialize dataset to a file stream. But when importing: table structure need to be determined dynamically.What I am doing now : foreach table in dataset (compare table schemas that in db and imported datas...

Export to dxf from Google Sketchup

How can I write text entities to a dxf file? I found a script that can export Sketchup drawings to dxf files, unfortunately it was ignoring layers and text. I fixed it so it outputs the proper layer, but I cannot figure out how to get it to output the text. I have it to the point where it pops up a message when it comes across a text ...

How to flag commited files in svn to be excluded from the export?

We have the problem that we have the open project files in our svn like *.fla and *.psd. They are under subversion in svn but we don't want them to be exported. We want a clean export without our open project files. Is there a way to flag them somehow to prevent them from being exported. Thanx for your help! ...

Export Multiple Crystal Reports ASP.NET

Hey all, I want to export 2 different reports when I click an Export button. The problem is the routine only fires once and I only get one report to print out. Am I doing something wrong? I think it has something to do with the HTTPResponse, but I'm not sure. Here's my code: Dim badgeSize As Integer = 0 'Drop Down selection Dim...

What is the easiest way to export a SQLServer 2000 database to XML?

I have an old SQL Server 2000 database that I want to get into XML so I can from there import parts of it into an SQLite database for a PHP website. I've accessed the SQL Server 2000 database via SQL Server Management Studio 2008 Express, I can open all the tables, view the data, etc. I was expecting to be able to e.g. right-click on "...

.NET symbols disappearing from assembly

I have a project that is built with native C++, as well as C++/CLI. I have the following components: Assembly A (C++/CLI) | uses Assembly B (C++/CLI) | uses Static Lib C (Native C++) I did a major re-write of Static Lib C, and it compiles, and other native projects that use it compile fine as well. None of Assembly B changed in t...

When I export files with php/html my session data resets

I have a web-based system built with user login data based on session variables. Sometimes when a user is logged in and tries to export tables to csv or xls the session data seems to wipe and the user is 'kicked out' of the system. This is the header code I'm using to serve the file. header("Pragma: public"); header("Expires: ...

How to export a Microsoft Project file (mpp) to tif (tiff) without popup save file dialog?

The customer wanna preview mpp content without open Project Professional.So I decide to convert mpp file to image file. I already know that the Project Application interface has a method named EditCopyPicture can output to GIF,but when mpp is very large,gif doesnt look very vell.My boss tell me output to tif is a good solution. I found...

SQL Database Publishing wizard with SQL Server 2008

I'm desperately looking for SQL Database Publishing wizard. I've download it but it seems to require SQL Server 2005. According to http://blogs.msdn.com/webdevtools/archive/2007/10/15/sql-database-publishing-wizard-is-now-in-visual-studio-orcas.aspx it comes with Visual Studio 2008, but my Visual Studio 2008 Professional doesn't have tha...

different application pool and export problem

hi, We have a iis web application. Reports are part of the web application. In application in the menu, we can select reports and generate reports. So we can name the application as an olap and oltp application. We uses 2 application pools: one of is for reports and the other one is for oltp transactions. There is an iframe and reports a...

exporting to word file( *.doc ) in php

i have one php page which prints some information. Information is a table with some values dynamicaylly printed in table cells.Now instead of sending this page to browser i want the page to be exported to a word file.How can i do it? In short i have a page A.php . A.php contains a link to B.php. When the link on A.php is clicked i want ...

Easiest way to interface between a web app and SAP

Greetings! I've spent some time researching how to communicate with SAP from a PHP web application, but the documentation is more than spare. The ways I found are: Creating IDoc files, some sort of proprietary plain-text format. But how do I stick them in SAP when they are created on the webserver? Coding a Windows Application using t...

How do I load example datasets in R?

Let's say I want to reproduce an example posted on StackOverflow. Some have suggested posters use dput() to help streamline this process or one of the datasets available in the base package. In this case, however, suppose I have only been given the output of the dataframe: > site.data site year peak 1 ALBEN 5 101529.6 2 ...