2
votes
2answers
645 views
Import Dumped SVN Repo into Visual SVN
I have dumped my repository on my old computer to a file with the command.
svnadmin dump C:\myrepo/ > mydumpfile
Now I decided to use Visual SVN on my new computer as opposed to just a baseline …
1
vote
3answers
66 views
How to use .NET configuration files (app.config, settings.settings) to save and restore all application data?
Although there are a lot of posts about .net config files, I believe that my requirements do not allow for any of the solutions proposed (or I don't understand the process enough to make it work for …
0
votes
0answers
7 views
how to import a csv or excel to pgAdmin III?
Hi people,
How can you import to a table in PgAdmin III from an excel or CSV?
Command copy works only when the file is in the server! :S
0
votes
2answers
42 views
Where is the python imp module’s source code? Or the common location of the file.
I'm using Python 2.6 on Ubuntu.
0
votes
1answer
10 views
Importing old data with Rails and Paperclip
I'm using paperclip for attachments in my application. I'm writing an import script for a bunch of old data, but I don't know how to create paperclip objects from files on disk. My first guess is to …
1
vote
4answers
41 views
How can I import an Excel spreadsheet on a 64 bit OS using ASP.NET?
I wrote an ASP.NET page that imported data from an Excel spreadsheet without any problems. Then I moved it to the server and found out that it didn't work on a 64 bit OS. After some Googling I found …
0
votes
3answers
51 views
Suppress deprecated import warning in Java
In Java, if you import a deprecated class:
import SomeDeprecatedClass;
You get this warning: The type SomeDeprecatedClass is deprecated
Is there a way to suppress this warning?
2
votes
5answers
484 views
C# Excel import data from CSV into Excel
How do I import data in Excel from a CSV file using C#? Actually, what I want to achieve is similar to what we do in Excel, you go to the Data tab and then select From Text option and then use the …
1
vote
3answers
53 views
Tool for transforming Excel files? (swapping columns, basic string manipulation etc)
I need to import tabular data into my database. The data is supplied via spreadsheets (mostly Excel files) from multiple parties. The format of each of these files is similar but not the same and …
1
vote
3answers
66 views
#import command line equivalent
Using Visual Studio with Microsoft's C++ compiler, we have several source files which use the Microsoft-specific '#import' directive to import a type library. For instance:
#import my_type_lib.tlb
…
0
votes
1answer
15 views
IronPython disable Import after use
Is there any way to disable the use of import once I've finished using it? I'm using IronPython as a scripting engine and I don't want users to be able to import anything. This could be done in …
0
votes
1answer
33 views
Pyjamas import statements
I'm starting to use Pyjamas and I'm running into some annoyances. I have to import a lot of stuff to make a script work well. For example, to make a button I need to first
from pyjamas.ui.Button …
1
vote
4answers
130 views
how to make import conditionally in Python?
I want to do something like this in C:
#ifdef SOMETHING
do_this();
#endif
But in Python this doesn't jive:
if something:
import module
What am I doing wrong? Is this possible in the first …
2
votes
3answers
104 views
How can I prevent a Python module from importing itself?
For instance, I want to make a sql alchemy plugin for another project. And I want to name that module sqlalchemy.py. The problem with this is that it prevents me from importing sqlalchemy:
…
0
votes
1answer
21 views
Importing into the SPS-Birthday field in Sharepoint from Custom Field in Active Directory, why does it always store a null value?
For reference this is the User Profile Properties section of Sharepoint where you can start an import. Ours is configured to interface with Active Directory. We have mapped the SPS-Birthday field to …
