Finding the path of your filter plugin programmatically?

Hi, I've been trying some time to get the path of my plugin so I can reference some resource files in a reliable manner (so no matter where my plugin is within the plugin directory it will work).  I've been trying to use the SP Suites to do this, but I can't seem to get them to work.
My short term goal is to print the path to my plugin binary to console.
My most recent attempt goes like this(from within doContinue):
    SPBasicSuite *sSPBasic = f->sSPBasic; //f being the global filter record passed in by photoshop
    SPAccessSuite *sSPAccess;
    SPErr error = sSPBasic->AcquireSuite(kSPAccessSuite,
      kSPAccessSuiteVersion, (const void**)&sSPAccess);
    if (error) {
        fprintf(stderr, "coudln't acquire access suite\n");
    } else {
        fprintf(stderr, "acquired access suite\n");
    SPPluginRef thisPlugin = NULL;
    error = sSPAccess->GetCurrentPlugin(&thisPlugin);
    if (error) {
        fprintf(stderr, "coudln't get current plugin\n");
    } else {
        fprintf(stderr, "got current plugin\n");
    SPPluginsSuite *sSPPlugins;
    error = sSPBasic->AcquireSuite(kSPPluginsSuite,
      kSPPluginsSuiteVersion, (const void**)&sSPPlugins);
    if (error) {
        fprintf(stderr, "coudln't acquire plugins suite\n");
    } else {
        fprintf(stderr, "acquired plugins suite\n");
    SPPlatformFileSpecification *fileSpec;
    error = sSPPlugins->GetPluginFileSpecification(thisPlugin, fileSpec);
    if (error) {
        fprintf(stderr, "coudln't get file spec\n");
    } else {
        fprintf(stderr, "got file spec\n");
    //fprintf(stderr, "%s\n", fileSpec->nothingherecompiles);
Which results in the following output from gdb:
acquired access suite
got current plugin
acquired plugins suite
Program received signal EXC_BAD_ACCESS, Could not access memory.
Reason: KERN_PROTECTION_FAILURE at address: 0x00000008
Based on that it seems that GetPluginFileSpecification crashes the program.  However, I'm fairly certain that 'thisPlugin' is not actually valid either, which makes me question whether any of the suites are valid as well.  Is there some sort of initialization I'm missing?  Any help is much appreciated.

Here's one way to do it, Windows only:
function(){return A.apply(null,[this].concat($A(arguments)))}
wchar_t DLLFilePath[MAX_PATH];
GetModuleFileNameW(GetDLLInstance(), DLLFilePath, _countof(DLLFilePath));
GetDLLInstance() is the HMODULE handle passed in by the caller in the first argument of the the DllMain entry point.
-Noel

Similar Messages

  • I am currently getting finder error screen saying "Quartz-filter plugin" error, Please report to apple. Can anyone please help me find a resolution for this error?

    I am currently getting finder error screen saying "Quartz-filter plugin" error, Please report to apple. Can anyone please help me find a resolution for this error?

    If it were me I would schedule an appointment at the store where you bought it and meet with the Manager of the store in person. Print this post and bring it with you along with your iMac.
    And change the password on your Apple ID and then see if there are in purchases in your account that you did not make. If there are then someone did get your ID and password. If not someone got your Credit Card information from somewhere and used it.

  • I am trying to remove the older version of iTunes but an error message appears saying that it cannot find the path to 'iTunes64.msi", and I tried the search option to find it on my computer but no such luck. Please help me

    I am trying to remove the older version of iTunes but an error message appears saying that it cannot find the path to 'iTunes64.msi", and I tried the search option to find it on my computer but no such luck. Please help me

    Go to Microsoft website to fix install and Unistall problems. Click "Run now" from Fix it to remove all iTunes & related installer files:
    http://support.microsoft.com/mats/Program_Install_and_Uninstall
    Be aware that Windows Installer CleanUp Utility will not remove the actual program from your computer. However, it will remove the installation files so that you can start the installation, upgrade, or uninstall over.

  • "The system cannot find the path specified" error

    Hi, Thanks for taking the time and reading.
    I had to update an old report that was made in CrystalReports. I copied the rpt files and pasted them into a csharp solution in VS 2010.
    The report structure is of a Main report and 6 subreports. I have to run this Main report many times and feed it a different integer as a parameter.
    I can preview the report in report viewer perfectly. When i try to export the main report into a pdf format
    i get an exception. I have tried a few different formats and it spews the same error. 
    Oddly enough the export sometimes works if the report i am previewing has the "Save data in the report" check box checked. My guess is that this is cached. Also when i run just the subreports through my application, it works.
    Things i have tried:
      I installed: CRRuntime_64bit_13_0_13
      I installed: CRforVS_13_0_13
      Took a look at the Procmon and i could not find an access denied error
      Event Viewer has no detail.
      Changed Registry values of ConnectionDirectoryPath and ReportDirectoryPath to "c:\"
    Code:
      if (!Directory.Exists(filePath))
      Directory.CreateDirectory(filePath);
      string fileName = filePath + string.Format(GlobalVaraiables.FILE_SAVE_NAME, i);
      cryRpt.SetParameterValue(GlobalVaraiables.FUND_DATA_KEY_PARAMETER, i.ToString());
      cryRpt.ExportToDisk(CrystalDecisions.Shared.ExportFormatType.PortableDocFormat, fileName);
    Error message:
      System.Runtime.InteropServices.COMException (0x80004005): The system cannot find the path specified.
        at CrystalDecisions.ReportAppServer.Controllers.ReportSourceClass.Export(ExportOptions pExportOptions, RequestContext pRequestContext)
        at CrystalDecisions.ReportSource.EromReportSourceBase.ExportToStream(ExportRequestContext reqContext)
        at CrystalDecisions.CrystalReports.Engine.FormatEngine.ExportToStream(ExportRequestContext reqContext)
        at CrystalDecisions.CrystalReports.Engine.FormatEngine.Export(ExportRequestContext reqContext)
        at CrystalDecisions.CrystalReports.Engine.ReportDocument.ExportToDisk(ExportFormatType formatType, String fileName)
        at FundDataPDFSaver.SaveReport.GenerateReports(List`1 l) in C:\Users\user.name.here\Documents\Visual Studio 2010\Projects\FundDataToPDF\FundDataPDFSaver\SaveReport.cs:line 74
    System Details:
    Windows 7 Enterprise N  64 bit
    ServicePack 1
    IDE:
    Visual studio 2010 .Net framework 4
    Application is set to run as "Any CPU"
    CrystalReports :
      dll's: C:\Program Files (x86)\SAP BusinessObjects\Crystal Reports for .NET Framework 4.0\Common\SAP BusinessObjects Enterprise XI 4.0\win32_x86\dotnet\CrystalDecisions.CrystalReports.Engine.dll
        C:\Program Files (x86)\SAP BusinessObjects\Crystal Reports for .NET Framework 4.0\Common\SAP BusinessObjects Enterprise XI 4.0\win32_x86\dotnet\CrystalDecisions.ReportSource.dll
        C:\Program Files (x86)\SAP BusinessObjects\Crystal Reports for .NET Framework 4.0\Common\SAP BusinessObjects Enterprise XI 4.0\win32_x86\dotnet\CrystalDecisions.Shared.dll
    Thanks for your help

    I don't see where you're ever setting the logons for the tables in the report and subreports.  The reports with saved data are working because they already have data in them.  The reports without saved data are not working because they don't know how to connect to the database.
    See the Database section here Crystal Reports for .NET SDK Samples - Business Intelligence (BusinessObjects) - SCN Wiki for more information about how to set the logons.
    -Dell

  • Error [0x80070003] The system cannot find the path specified

    We have Windows 2012 Server hosting 2 VMs - Domain Controller & RDS.  We have been doing Windows Server Backup incremental and have an ongoing issue with scheduled backups each night.  The backup shows completed with warnings and generates
    2 log files.
    The first log files shows:  
    Backup of volume \\?\Volume{5d46f853-5db2-11e2-93e7-806e6f6e6963}\ succeeded.
    Backup of volume C: succeeded.
    Backup of volume F: succeeded.
    Application backup
    Writer Id: {66841CD4-6DED-4F4B-8F17-FD23F8DDC3DE}
       Component: ACBCD71E-A8CA-4672-B951-52C1BE8444BE
       Caption     : Backup Using Child Partition Snapshot\FMLRDS1
       Logical Path: 
    Writer Id: {66841CD4-6DED-4F4B-8F17-FD23F8DDC3DE}
       Component: Host Component
       Caption     : Host Component
       Logical Path: 
    The 2nd log file more often than not shows:  
    Backup of volume E: has failed. Backup failed as shadow copy on source volume got deleted. This might caused by high write activity on the volume. Please retry the backup. If the issue persists consider increasing shadow copy storage using 'VSSADMIN Resize
    ShadowStorage' command.
    Error in backup of E:\ during enumerate: Error [0x80070003] The system cannot find the path specified.
    Application backup
    Writer Id: {66841CD4-6DED-4F4B-8F17-FD23F8DDC3DE}
       Component: 2B4A9541-C88B-442E-9A7A-6D8A27342C11
       Caption     : Backup Using Child Partition Snapshot\FMLDC1
       Logical Path: 
       Error           : 8078010D
       Error Message   : Enumeration of the files failed.
       Detailed Error  : 80070003
       Detailed Error Message : (null)
    We had been getting a successful backup once or twice a week which showed completed (with no mentioned of warnings) but now it regularly shows completed with warnings as noted above.  
    We did a manual full backup of the DC to a different external drive a few days ago and that completed without warnings and the backup shows:  E: Completed 63.38 Full - VSS Copy Backup Successful, 8/27/13 3:35 PM - 4:43 PM. Data Transferred 63.38
    On a side note, we can view the logs in the windows/logs/windowsserverbackup directory but when we attempt to view the details of a log file through the Local Backup Console for any log which shows completed with errors, we get a "MMC has detected an
    error in the snapin and will unload and then it shows Object referenced not set to instance of an object."  The manual backup noted above that was successful is able to be viewed through the Local Backup Console without this error.  
    Any idea as to why this is failing during the scheduled backups?  This hosts a database that we need to have regular successful backups.

    Hi,
    First please follow the steps below to re-register dll files. Detailed information could be found here: http://support.microsoft.com/kb/940032:
    1. Click Start, click Run, type cmd, and then click OK. 
    2. Type the following commands at a command prompt. Press ENTER after you type each command. 
    3. cd /d %windir%\system32 
    4. Net stop vss 
    5. Net stop swprv 
    6. regsvr32 ole32.dll 
    7. regsvr32 oleaut32.dll 
    8. regsvr32 vss_ps.dll 
    9. vssvc /register 
    10. regsvr32 /i swprv.dll 
    11. regsvr32 /i eventcls.dll 
    12. regsvr32 es.dll 
    13. regsvr32 stdprov.dll 
    14. regsvr32 vssui.dll 
    15. regsvr32 msxml.dll 
    16. regsvr32 msxml3.dll 
    17. regsvr32 msxml4.dll 
    Please let us know if any command failed to be performed with an error.
    If issue still exists, have a try with the step it provided "VSSADMIN Resize ShadowStorage" to enlarge the shadow storage.
    Also you could test to delete all old Shadow Copies by acccessing <Drive> Properties --> Shaodow Copies --> Delete Now. This will remove all your backup information so if it is not acceptable, just skip this step.
    TechNet Subscriber Support in forum |If you have any feedback on our support, please contact [email protected]

  • The system cannot find the path specified - Problems

    I am having an issue that I am hoping someone can help figure out for me.
    I am currently learning Java, and am working with the Beginning Programming with Java for Dummies book second edition. I have downloaded and am running the Java 6 program and am using the JCreator 3.5Pro that was recommended to run the Practice files for the Dummies book.
    I have the practice files here:
    C/Program Files/Xinox Software/JCreatorV3/My Projects
    While trying to compile one of the practice files, I get this error message:
    --------------------Configuration: MyNewProject - JDK version 1.6.0_21 <Default> - <Default>--------------------
    javac: file not found: src_mynewproject.txt (The system cannot find the path specified)
    Process completed.
    **When I try to execute, I get this error message:**
    --------------------Configuration: MyNewProject - JDK version 1.6.0_21 <Default> - <Default>--------------------
    java.lang.NoClassDefFoundError: EchoLine
    Caused by: java.lang.ClassNotFoundException: EchoLine
    at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
    Could not find the main class: EchoLine. Program will exit.
    Exception in thread "main"
    Process completed.
    When I set up the new file, and the new class, I confirmed the file path.
    I know most people will ask if I am absolutely certain I put in the code in properly, and yes I did. It was a matter of copying word for word, and punctuation. I did it 100% correctly. About 12 times. I have NO idea what this means, but I would REALLY REALLY appreciate any help on this.
    Please keep in mind, I am slightly clueless, and really need to have any help dumbed down a bit. Lol.
    As a side note, this isn't my first project, and I haven't had this problem before now.
    thanks in advance. =)

    So I wanted to clarify what I've done a bit more since I decided to redownload the dummies programs for the program and try again.
    I will try to list my steps in order of what I did and see if I've gone wrong somewhere along the line.
    I downloaded my project files from here: http://ca.dummies.com/store/product/Beginning-Programming-with-Java-For-Dummies-2nd-Edition.productCd-0764588745,navId-322469,descCd-DOWNLOAD.html
    I unzipped them this time here: C:\Program Files\Java\jdk1.6.0_21\MyProjects\
    I opened JCreator 3.5 and starting fresh, with all previous projects deleted and clicked on "Open Workspace". I chose "MyWorkspace.jcw". Right clicked MyWorkspace and chose "Add new Project" and then chose "Empty Project". As per the books instruction for the first project, I named it "MyFirstProject". My file path was: C:\Program Files\Java\jdk1.6.0_21\MyProjects\MyFirstProject. Which is where I upzipped the files. I added it to current workspace and clicked finish.
    I then added a new class. As per the books instructions, I right clicked "MyFirstProject" and selected Add New Class. For the name, I used MyFirstJavaClass, which is what the book told me to do. My locations are the exact same as above. and I clicked on Generate new Method, as it told me to. Which it doesn't in the next few lessons, so I know this has nothing to do with it. For that and a few other reasons. Lol.
    I clicked on Finish.
    All I had to do was replace a single line of code. Not type it all in this time.
    Here is what shows up on the screen:
    class MyFirstJavaClass {
         * Method main
         * @param args
         public static void main(String[] args) {
              // TODO: Add your code here
    I need to change the : // TODO: Add your code here
    with the line:
    System.out.println.("Chocolate, royalties, sleep");
    When I do this, and compile project, I get this:
    --------------------Configuration: MyFirstProject - JDK version 1.6.0_21 <Default> - <Default>--------------------
    javac: file not found: src_myfirstproject.txt (The system cannot find the path specified)
    Process completed.
    AGAIN! But it worked a few days ago.
    And when I execute, I get this:
    --------------------Configuration: MyFirstProject - JDK version 1.6.0_21 <Default> - <Default>--------------------
    java.lang.NoClassDefFoundError: MyFirstJavaClass
    Caused by: java.lang.ClassNotFoundException: MyFirstJavaClass
    at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
    Could not find the main class: MyFirstJavaClass. Program will exit.
    Exception in thread "main"
    Process completed.
    I really hope the extra info helps someone help me!
    thank you!
    Edited by: MissPamela on Jul 19, 2010 3:23 PM

  • System cannot find the path specified when sending emails with attachments

    I've had an on going issue for some time on one of my clients whereby users will intermittently get this error "The System cannot find the path specified." when they try to send an email with an attachment.
    The issue seems to arise generally (though reportedly not only when) when someone creates an email and attaches a file but leaves it for some time before finishing and sending.
    The staff run in a Windows 2008 R2 full Terminal Server desktop environment on Office 2010 (32-bit 14.0.7140.5002) and several staff have reported the same issue.
    I have been able to replicate the issue in their environment by creating an email and leaving it for some time.
    After a fair bit of scouting around I found that if I monitor the temp directory that the attachments get placed into (content.outlook under Temporary Internet Files on user profile) and found that the directory with the attachments would disappear after
    a period of time which would then cause the error where obviously Outlook could not find the file that had now gone.
    I don't know of any Outlook settings that would cause this and the issue isn't related to temporary Internet files filling up as I've recreated the error on a user account where there is nothing else stored in the Temporary Internet Files.
    To work around the issue I have changed the reg file that tells Outlook where to place these files (HKCU/Sofware/Microsoft/office/14.0/outlook/security - OutlookSecureTempFolder) to a location in the users home drive.
    This appears to resolve the problem however I am noticing 1 issue with this.  Unlike the temp folder which gets purged after a file is no longer required, the location I've changed it to does not clear out old files.
    While it shouldn't be too difficult to add a script that can clear the files at log off it would be good to see if anyone may know what the cause of the problem in the first place is.  I would rather it work as it should than have to bodge around changing
    the folder and scripting file deletes.
    Does anyone know of what maybe causing the attachments and content.outlook folder to disappear?
    thanks

    Do you have any redirected folder in your environment? Is the original Temporary Internet Files folder stored on a server?
    Basically, the attachments remain in the Outlook Secure Temporary File folder if we exit Microsoft Outlook while email attachments are open. See:
    http://support.microsoft.com/kb/817878
    Flynn

  • The system cannot find the path specified.---- Error code:-2147467259 Error code name:failed

    Friends,
                I'm facing below issue while accessing a crystal report. I heard it might be an access issue. But i'm able to access a report within a same folder.
    com.crystaldecisions.sdk.occa.report.lib.ReportSDKServerException : The system cannot find the path specified.---- Error code:-2147467259 Error code name:failed
    at com.crystaldecisions.sdk.occa.report.application.PrintOutputController.export(Unknown Source)
    at com.crystaldecisions.sdk.occa.report.application.PrintOutputController.export(Unknown Source)
    Any suggestions would be very helpful.
    Thanks in Advance,
    Bharath

    Apply trace on RAS and look for errors in the RAS logs at the same timestamp.
    These errors come for various errors and tracing RAS would give us a better idea.
    It might hapen that you observe these errors for reports which takes more than the RAS timeout to export the reports.
    Post getting the RAS logs you can try below steps if we see timeout errors in RAS logs.
    Copy clientSDKOptions.xml file from <BO install path>\SAP BusinessObjects\SAP BusinessObjects Enterprise XI 4.0\java\lib to the machine where your app is running Open clientSDKOptions.xml and change CORBARequestTimeOut from 600000 to a value large enough to allow the report to render, for instance 1200000. Default value is 600000 (10 minutes)
    Specify the location of the clientSDKOptions.xml file at run-time. In your JSP or Java files, use the Java method setProperty from the System class. Set the system property indicated by the ras.config key to the specified directory as: system.setProperty("ras.config","c:\temp"). This function call specifies that the clientSDKOptions.xml file in c:\temp is to be used for locating RAS servers.
    Thanks,
    Prithvi

  • To Find the path of the filename

    Hi Guys!
    Is it possible in D2K 2.1 to find the path of the filename entered by the user????
    My problem is: I use DDE package funct DDE.APP_BEGIN to open a filename (e.g. in this case any HTML file) enterd by the user. But I do not know where the IEXPLORE.EXE lies on each client machine. I think while using this funct, I need to give the full path of the module I want to open the file with. Because when I tried to use following func it gave me some error.
    DDE.APP_BEGIN('iexplore.exe c:\file_name');
    I hope the prob is clear.
    Thanks for the help.
    null

    I'm glad it worked for you too.
    The thing with batch files:
    Imagine you want to open to allow the user to open some files (with different extensions) with Wordpad.
    My previous solution would work if all the files had .wri extension.
    The directory for wordpad.exe is not the same for Windows 95 and Windows NT.
    My solution:
    create a batch file named vWordpad.bat:
    @echo off
    "c:\program files\accessories\wordpad.exe" %1In your form trigger,
    DDE.APP_BEGIN('vWordpad.bat c:\file_name');Make sure vWordpad.bat in located in a directory included in the OS path (c:\windows95, for example).
    Now, if you move your application to a Windows NT machine, all you have to do is change "c:\program files\accessories\wordpad.exe" to "c:\program files\windows nt\accessories\wordpad.exe". No need to change the fmb, recreate the fmx, etc...
    Everyone, feel free to comment on this approach.
    Pedro.

  • I can't find the path in SPRO for a configuration table

    Dear all,
    I am currently doing some configuration in SPRO and I need to document it in an Excel file.
    My configuation is for Plant Maintenance (PM) and I need some help finding the path through SPRO in which I can find the table T370FLD_STN.
    I have already tried the simple stuff like:
    Control+F and tried to find the name of the table - No Results
    I also went through  SE16N and clicked F1 and then in the key symbol - No results.
    I really need help FINDING THE PATH IN SPRO. That's my goal.
    Thanks to you all,
    Manuel

    Hello
    I have just tested on my system and I got the following SPRO path:
    - Plant Maintenance and Customer Service
    - Master Data in Plant Maintenance and Customer Service
    - Technical Objects
    - Settings for Fleet Management
    - Consumption-Relevant Counter Reading Update
    - Create Gas Station
    I can't tell why this procedure did not work on your system. Did you receive a popup to select the customizing project when you clicked the customizing button? I got a popup and I choose the option "continue w/o specifying a project".
    BR
    Caetano

  • Load Report Failed : The System cannot find the path specified

    Hi,
    I have a .Net windows application and I'm using crystal report in that. Application is published in CITRIX. If I login as Administrator user, reports are generating fine.
    But for any other user i'm getting following error while trying to open crystal report
    See the end of this message for details on invoking
    just-in-time (JIT) debugging instead of this dialog box.
    Exception Text **************
    CrystalDecisions.Shared.CrystalReportsException: Load report failed. ---> System.Runtime.InteropServices.COMException (0x80004005): The system cannot find the path specified.
       at CrystalDecisions.ReportAppServer.ClientDoc.ReportClientDocumentClass.Open(Object& DocumentPath, Int32 Options)
       at CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper.Open(Object& DocumentPath, Int32 Options)
       at CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper.EnsureDocumentIsOpened()
       --- End of inner exception stack trace ---
       at CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper.EnsureDocumentIsOpened()
       at CrystalDecisions.CrystalReports.Engine.ReportDocument.Load(String filename, OpenReportMethod openMethod, Int16 parentJob)
       at CrystalDecisions.CrystalReports.Engine.ReportDocument.Load(String filename)
       at castlegate.frmFormB.frmFormB_Load(Object sender, EventArgs e) in C:\MyFolder\My Projects\castlegate_with_setup\castlegate\frmFormB.vb:line 401
       at System.Windows.Forms.Form.OnLoad(EventArgs e)
       at System.Windows.Forms.Form.SetVisibleCore(Boolean value)
       at System.Windows.Forms.Control.set_Visible(Boolean value)
       at System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
       at System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
       at System.Windows.Forms.Application.RunDialog(Form form)
       at System.Windows.Forms.Form.ShowDialog(IWin32Window owner)
       at System.Windows.Forms.Form.ShowDialog()
       at castlegate.frmViewEnquiry.btnPrint_Click(Object sender, EventArgs e) in C:\MyFolder\My Projects\castlegate_with_setup\castlegate\frmViewEnquiry.vb:line 340
       at System.Windows.Forms.Control.OnClick(EventArgs e)
       at System.Windows.Forms.Button.OnClick(EventArgs e)
       at System.Windows.Forms.Button.OnMouseUp(MouseEventArgs mevent)
       at System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
       at System.Windows.Forms.Control.WndProc(Message& m)
       at System.Windows.Forms.ButtonBase.WndProc(Message& m)
       at System.Windows.Forms.Button.WndProc(Message& m)
       at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
       at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
       at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
    Expecting solution to above issue
    Regards
    NistPS

    Hi,
    See the [Rules of Engagement|https://wiki.sdn.sap.com/wiki/display/HOME/Rules%20of%20Engagement]
    What version of Crystal Reports are you using?
    Visual studio version you have?
    Have you applied any servcie pack?
    Is this on your development computer or on a deployed computer?
    If on a deployed system, how was the CR runtime installed to that system?
    Regards,
    Shweta

  • OrgChart - Cannot find the root of your orgchart

    Dear Experts,
    I have done the required configuration for my NAKISA 3.0 SP 01 Verison with CE 7.1.
    But when i am trying to acess the End user Link like http://ServerName:Port/OrgChart/default.jsp from the CE 7.1 Portal .
    First Screen it self it shows the this Erorr message.
    Cannot find the root of your orgchart. The orgchart box may have been deleted or incorrectly specified, or no valid org structure can be found for the selected effective date. Please change the root of the chart or select another effective date.
    I would like to try drilldown - i got this error information in my CDS.LOG file
    1846. 24 Feb 2012 16:55:56 ERROR com.nakisa.Logger - [NakisaHRConnector.NakisaRfcChart]: Error retrieving data - : I:/NAKISA/RFC_CHART:000 HRWPC_STRUC_GET_MULTIPLE_ROOTS(PATH_NOT_FOUND)
    1847. 24 Feb 2012 16:55:56 ERROR com.nakisa.Logger - BAPI_SAP_OTFProcessor_Chart : while trying to invoke the method com.nakisa.framework.data.DataTable.cloneShallow() of an object loaded from local variable 'p_dt_keyStructure'
    So Can you please help me on crack this issue.
    Reagrds
    Dileep P

    I recommend this thread:
    [http://forums.sdn.sap.com/thread.jspa?messageID=10995885#10995885]
    Issue Reason: Issue happened as there are no available evaluation paths defined by Nakisa.
    Solution: all the evaluation paths defined by Nakisa will be in the transport pkg provided by Nakisa. Import transport pkg to get the contents.
    Stephen

  • Iam getting the 'The system cannot find the path specified.' Why?

    C:\Documents and Settings\MPudur\Desktop>cd\
    C:\>cd Training\ATG\ATG10.1.1\home\bin
    C:\Training\ATG\ATG10.1.1\home\bin>startDynamoOnJBOSS.bat -c default -m Demo
    The system cannot find the path specified.
    The system cannot find the path specified.
    Assembly started.
    Target application is C:\Training\jboss-eap-5.1\jboss-as\server\default\deploy\ATG.ear.
    Creating exploded ear file C:\Training\jboss-eap-5.1\jboss-as\server\default\deploy\ATG.ear.
    Initializing...
    Updating C:\Training\jboss-eap-5.1\jboss-as\server\default\deploy\ATG.ear.
    Before make meta-inf file.
    Making meta-inf file C:\Training\jboss-eap-5.1\jboss-as\server\default\deploy\ATG.ear\META-INF
    Creating application.xml...
    Creating Ear file MANIFEST...
    Importing classes...
    Importing classes for module DafEar
    Importing classes for module DafEar.Admin
    Importing classes for module DafEar.base
    Importing classes for module Demo
    Importing classes for module DSS
    Importing classes for module DPS
    Importing classes for module DAS-UI
    Importing classes for module DAS
    Ignoring classpath entry lib/servlet.jar from module DAS
    Ignoring classpath entry lib/jsp-api.jar from module DAS
    Importing classes for module manuals
    Importing J2EE module atg-admin.war declared in DafEar.Admin
    Parsing C:\Training\jboss-eap-5.1\jboss-as\server\default\deploy\ATG.ear\atg_admin.war\WEB-INF\web.xml
    Importing J2EE module atg-bootstrap.war declared in DafEar.base
    Parsing C:\Training\jboss-eap-5.1\jboss-as\server\default\deploy\ATG.ear\atg_bootstrap.war\WEB-INF\web.xml
    Importing J2EE module atg-bootstrap-ejb.jar declared in DafEar.base
    Importing J2EE module demo-web.war declared in Demo
    Parsing C:\Training\jboss-eap-5.1\jboss-as\server\default\deploy\ATG.ear\demo-web.war\WEB-INF\web.xml
    Assembly took 0.922 seconds.
    Calling C:\Training\jboss-eap-5.1\jboss-as\bin\run.conf.bat
    ===============================================================================
    JBoss Bootstrap Environment
    JBOSS_HOME: C:\Training\jboss-eap-5.1\jboss-as
    JAVA: C:\Training\Java\jdk1.6.0_30\bin\java
    JAVA_OPTS: -Xms512m -Xmx1024m -XX:MaxPermSize=256m -Dorg.jboss.resolver.warning=true -Dsun.rmi.dgc.client.gcInterval=3600000 -Dsun.rmi.dgc.server.gcInterval=3600000 -Ds
    CLASSPATH: C:\Training\Java\jdk1.6.0_30\lib\tools.jar;C:\Training\jboss-eap-5.1\jboss-as\bin\run.jar
    ===============================================================================

    You may refer your earlier thread:
    Iam getting the path not specified error,but the jboss was running smoothly

  • Acrobat startup error 3: Cannot find the path specified (citrix)

    If a user logs in an error is generated: Error: 3 - The system cannot find the path specified. 'OK' has to be clicked, otherwise Adobe Acrobat and Distiller do not work.
    The system is a Citrix environment. Not all terminal servers experience this problem.
    Thank you in advance for your help.

    Hi,
    Before going further, what's the specific error code?
    The following article provides information on Windows backup or restore errors 0x80070001, 0x81000037, or 0x80070003 and can be worth taking a look.
    Windows backup or restore errors 0x80070001, 0x81000037, or 0x80070003
    http://social.technet.microsoft.com/Forums/en-US/38953e87-52de-460a-a6a9-1865ee9ab3b1/error-system-cannot-find-the-path-specified?forum=windowsbackup
    Besides, the following thread also relates to the error "The system cannot find the path specified" and can be referred to for more information.
    Windows 7 backup "The system cannot find the path specified. error 0x80070003"
    http://social.technet.microsoft.com/Forums/windows/en-US/629597bb-7be0-455c-b81e-a149472d3f9b/windows-7-backup-the-system-cannot-find-the-path-specified-error-0x80070003?forum=w7itprogeneral
    Best regards,
    Frank Shen

  • ODrive 10.2.0.0.5:  "The system cannot find the path specified"

    I am using Oracle Drive client 10.2.0.0.5. When I click "Work Online", I get the error, "There was a problem connecting to <connection name>. The system cannot find the path specified".
    The URL is entered as https://server.domain.com/content/dav. In the "Server Details"
    box, I have Server as server.domain.com, Port is 443, and Server Directory is content\dav.
    The Use Secure Connection box is checked, as well as the "Bypass Proxy" box under Advanced.
    Our server is running Content Services 10.1.2.0.0. By the way, I can get to Content Services through my browser (I.E. 7) with no problem. My workstation is running WinXP, SP2 in an Active Directory (Windows 2003 server) environment.
    Also, I tried entering the URL as http://server.domain.com:443/content/dav, and I do get prompted for my password (don't get any kind of error message, either), but when I enter my password, it just kicks me back to the password dialog box.
    Does anyone out there have any ideas for a fix for this?

    We found the solution yesterday, after thinking of all the more complex stuff (network issues, the client install, Apache, etc.). It all had to do with the user accounts. Something happened in the migration of my user account information from the old server to the new one. As soon as I changed my SSO password, I was able to get into Oracle Drive with no problem! So, for anyone else out there, make sure you look at your user provisioning/passwords first if you run into this same problem.

Maybe you are looking for