magneato / ispyconnect

Automatically exported from code.google.com/p/ispyconnect
0 stars 0 forks source link

downloader.cs is missing in revision 44 #83

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Hi,
I downloaded and tried to compile the sources (revision 44) in VS 2010 
where I got compiling errors for missing files:
downloader.css
iSpyServer.bat
Can you implement the missing files?

There is also a compiling problem with the kinect.dll missing, 
but that could be solved by installing the Windows SDK. 
Perhaps it would be a good idea to write some info in a readme file?

Thanks
Roland

Original issue reported on code.google.com by RonDola...@googlemail.com on 22 Dec 2012 at 10:46

GoogleCodeExporter commented 9 years ago
I walked back down the changes stack all the way to REV 37 and finally got it 
to work, with the following minor tweaks:

1. The Microsoft.Kinect.dll is available in the iSpy installation folder (after 
you've installed the product itself). I copied this into an ..\Externals folder 
(peer of trunk) and then updated the reference.
2. I modified the "build events" of the iSpyApplication project and REM'ed out 
the call to iSpyApplication.bat.

Doing the above enabled me to build the solution, though I don't know what 
newer functionality is missing.

HTH.

Original comment by samc...@zenzagal.com on 8 Jan 2013 at 12:47

GoogleCodeExporter commented 9 years ago
Another alternative is to add a new Form called Downloader to iSpyApplication.
This way, you will have access to all features except the "GetLatest List" 
camera feature which is implemented by the Downloader class. 

Here's the steps:
- In iSpyApplication, add a Windows Form and call it Downloader.
- Add these properties to the Downloader class:
        public string Url { get; set; }
        public string SaveLocation { get; set; }
- Compile and you will get three compile errors about missing reference 
'downloader'. So change them to Downloader and recompile and that should take 
care of that.
- In Build events of iSpyApplication as pointed out by samc, REM'ed out the 
call to iSpyAppplication.bat

This works for me and I can build and debug the application with no issue.

Original comment by ken0t...@gmail.com on 18 Jan 2013 at 12:29

GoogleCodeExporter commented 9 years ago
Revision 45 adds the downloader

Original comment by hunter1...@gmail.com on 18 Jan 2013 at 4:07

GoogleCodeExporter commented 9 years ago

Original comment by ad...@developerinabox.com on 14 Feb 2013 at 1:28