From: SourceForge.net <no...@so...> - 2007-04-27 15:48:03
|
Feature Requests item #1708553, was opened at 2007-04-27 10:00 Message generated for change (Comment added) made by anmar You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=821571&aid=1708553&group_id=161868 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None Status: Closed Priority: 5 Private: No Submitted By: fxh (hillion) Assigned to: Jamie McQuay (jamcquay) Summary: nplot.dll & visual studio Initial Comment: Hi, Here is a stupid question from a newbie : how to make nplot available in visual studio ? Installation is not clearly mentioned on the web site and in the readme.txt ... or I am just looking no at the right place. I added PlotSurface2D objects linking nplot.dll with Visual Studio "Choose Toolbox Items" window. But then in I cannot do "Dim lp As NPlot.LinePlot = New NPlot.LinePlot" and even "Imports Nplot.Windows" I surely missed a stupid thing but what ? Thanks for your help because I am eager to use nplot ! Francois ---------------------------------------------------------------------- >Comment By: Angel Marin (anmar) Date: 2007-04-27 17:48 Message: Logged In: YES user_id=627967 Originator: NO There is also option 4 :) http://nplot.sourceforge.net/nightly/ ---------------------------------------------------------------------- Comment By: Jamie McQuay (jamcquay) Date: 2007-04-27 17:46 Message: Logged In: YES user_id=613279 Originator: NO Hi Francois, You have three options. 1. You can get the latest source from the repository, if you don't know how to do this take a look at http://sourceforge.net/svn/?group_id=161868 2. You can install MSBEE (see VisualStudio2005_ReadMe.txt in the source tree) 3. You can make the following changes in the project files (open them in a text editor) file--> NPlot.csproj Change: <Import Project="$(MSBuildExtensionsPath)\MSBee\MSBuildExtras.FX1_1.CSharp.targets" Condition="'$(SharpDevelopBinPath)'=='' AND '$(TargetFrameworkVersion)'=='v1.1'" /> to <Import Project="$(MSBuildExtensionsPath)\MSBee\MSBuildExtras.FX1_1.CSharp.targets" Condition="'$(SharpDevelopBinPath)'=='' AND '$(TargetFrameworkVersion)'=='v1.1' and Exists('$(MSBuildExtensionsPath)\MSBee\MSBuildExtras.FX1_1.CSharp.targets')" /> file --> NPlotDemo.csproj change: <Import Project="$(MSBuildExtensionsPath)\MSBee\MSBuildExtras.FX1_1.CSharp.targets" Condition="'$(SharpDevelopBinPath)'=='' AND '$(TargetFrameworkVersion)'=='v1.1'" /> to: <Import Project="$(MSBuildExtensionsPath)\MSBee\MSBuildExtras.FX1_1.CSharp.targets" Condition="'$(SharpDevelopBinPath)'=='' AND '$(TargetFrameworkVersion)'=='v1.1' and Exists('$(MSBuildExtensionsPath)\MSBee\MSBuildExtras.FX1_1.CSharp.targets')" /> I would suggest option 1 to get the lastest code (this configuration has been fixed in the latest code). Option 3 is basically doing manually what has been changed in the latest source. Jamie ---------------------------------------------------------------------- Comment By: fxh (hillion) Date: 2007-04-27 17:25 Message: Logged In: YES user_id=1779834 Originator: YES Hi Jamie, It started with this demo ; but VS complains that "MSBee\MSBuildExtras.FX1_1.CSharp.targets" is not found - of course since MSBee is not installed. I am working with NS.Net Framework 2.0 but also have version 1.1 installed. Do I really need MSBee ? The 2006.10.15 pdf document for O'Reilly book only says to link nplot.dll. This is done but this is probably not enough ?? Francois ---------------------------------------------------------------------- Comment By: Jamie McQuay (jamcquay) Date: 2007-04-27 17:13 Message: Logged In: YES user_id=613279 Originator: NO Hi Francois, There is a demo project that is with the sourcecode to demonstrate how to use the various graphing types. Look for the "demo/csharp" folder in the nPlot tree. Jamie ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=821571&aid=1708553&group_id=161868 |