import

XCode Cocoa Console Application Import Error

Hey guys, I made a new Console Application Project in XCode, and in the main.c file, I tried to Import Cocoa.h and another header file that I made. However, XCode started freaking out and gave me a bunch of errors. All of the errors were Parse Issues and came from NSObjCRuntime.h, NSZone.h, and NSObject.h. Anyone know why? Thanks! ...

The import com.sun.javadoc cannot be resolved in Eclipse

Hello. I'm having problem compiling a project in Eclipse. The import com.sun.javadoc cannot be resolved I added tools.jar as an external jar, changed default compiler to use jdk instead of jre, did Project -> Clean afterwards. But nothing of this helped. What am I missing here? UPD: this is how it looks like (packages exist on the le...

Importing XML files into an Access DB with multiple tables

Hello, I have a bunch of (flat) XML files such as: <?xml version="1.0" encoding="UTF-8"?> <SomeName> <UID> ID123 </UID> <Node1> DataA </Node1> <Node2> DataB </Node2> <Node3> DataC </Node3> <AnotherNode1> DataD </AnotherNode1> <AnotherNode2> DataE </AnotherNode2> <Anothe...

Importing from module with the same name as executable file in Python.

I have an executable file, named, for example, resource.py. It is disposed in the folder named resource. Renaming file or folder is objectionable - it is old product and users accustomed to use such naming. At old version it was under another project, so imports to it sound like import main_product.resource.<..>. Now I need to use impor...

Is it possible to import Photoshop PSD to Expression Blend to fill in an existing layout structure?

I need to create a fairly complicated layout for a widget in Expression Blend, with the visual design not yet set to stone, while having fairly refined functional wireframes. So I started to lay out the UI controls and choosing layout structures based on the wireframes, but as far as I have seen so far while experimenting, PSD files wil...

PostgreSQL import problem - all tables but one import.

I have a reasonably sized postresql dump (around 270 mb) that I'm importing into a new database. All the tables import without issue except for one - the users table - and I'm neither sure what the problem is, nor what the best way to figure it out is. The tables after it import without error, so it's not as if it barf's on something and...

Oracle imp dmp file, create table statements skipped

I get a dmp and install a Oracle XE for developing. However, when I use imp to import, the create table statements were skipped. Can anyone kindly help on the issue. The screen output were captured as follow: Many Thanks! C:\Documents and Settings\wong\Desktop>imp Import: Release 10.2.0.1.0 - Production on Mon Aug 2 22:48:32 2010 C...

how to import exsisting *.sql files in postgresql 8.4?

i am using postgresql 8.4 and i have some *.sql files to import into database how can i do so ? thanx in advance! ...

Importing 60,000 nodes :(

hi, I'm using Table Wizard + Migrate module to import nodes into my Drupal installation. I need to import around 60,000 questions / answers (they are both nodes) and I thought it would have been an easy task. However, the migrate process imports 4 nodes per minute, and it would take approximately 11 days to finish the importing. I wa...

Doctrine - how to get the SQL INSERT query, in the postSave() event?

I would like to get the exact SQL INSERT query that Doctrine generates when an object's save() method is called. Preferably, I would like to get it in the postSave() event of the model and log it in a txt file. For instance: <?php $user = new User(); // A Doctrine Model with timestampable behavior enabled $user->first_name = 'Manny';...

@class vs. import

Possible Duplicates: What is the difference between @class and #import Objective-C @class vs. #import Hi Can anyone explain the difference between @class and import in objective c? When shall I use which? Is either preferable/more efficient? Many thanks ...

open source address book importer

I plan to implement address book importer in my site so that users can invite their contacts. I am looking for a good open source script that would suffice my need. Yahoo, Gmail, Facebook and Hotmail address book is what i am targeting. Please suggest any software/script. ...

Is it possible to import/export EPiServer Community data (entity and attribute)?

Hi, I'm working on EPiServer Community 4 project. In development phase, I setup some predefine entity data (add some clubs, some forums, ...) and create/assign attribute to them. How can I export those data (entity data and its attribute/attribute value) and import later? (I will import when installing my product for customer). Thank...

Import database from File PROGRAMMATICALLY?

Hi guys!! Is there a way to programatically import an entire database from a file with SQL?? (either .CSV , .SQL and .DB files are fine) Thanks!! EDITED AFTER TO CLARIFY: I am interested in a solution that is Database independent (has to works with all types of databases (Mysql, SQL Server, PostGres, Oracle...) ...

mutually referencial .h files?

I'm pretty sure that I'm going to feel really dumb when I remember how to do this, but here it is: I have two classes A and B. A has an object of type B, B has an object of type A. This is not that unusual. The problem is that A.h needs to import B.h and vice versa. However, one of them has to happen first, and when it does, the use of ...

Contacts / address book data feed import for MS Exchange

Hi I've got an intranet (PHP / Zend Framework) application that holds people's contact information (name, address, phone, email, skype etc) I'm looking for a way to (securely!) create a data feed that MS Exchange (preferably) or MS Outlook (second choice) can consume that will ensure our worldwide user base always has up to date contac...

Access Data Project Importing CSV File In VBA

Hi Every now and then I come across a problem with an old system one of my colleagues has developed. They tend to have thousands of lines of code to do a simple thing like importing a csv file. Currently the vba process is: open excel application create new worksheet populate the csv file into excel add the header names to the f...

import user profiles in MOSS 2007 server into my SharePoint 2010

Hi, I want to import user profiles in MOSS 2007 server into my SharePoint 2010 server. Can anyone please suggest how can i go about achieving the same. Can we import user profiles using Business Data Connection in Configure Synchronization Connection in User Profile Service Application in SharePoint 2010. Why i am doing this: I want...

Importing my own modules in Google App Engine

Hi, I'm brand new to Google App Engine and have just been playing around with it, but for the life of me I don't understand how to import non-standard modules, and for that matter don't fully understand the app.yaml file's purposes. Essentially I want to import SimPy (a collection of ~15 python files) from my script file, but every com...

MEF: how to import from an exported object?

I have created a MEF plugin control that I import into my app. Now, I want the plugin to be able to import parts from the app. I can't figure how setup the catalog in the plugin, so that it can find the exports from the app. Can somebody tell me how this is done? Below is my code which doesn't work when I try to create an AssemblyCat...