PC Forms: Err Msg: ...No E-forms Available in Shared Mail...

Last reviewed: October 11, 1995
Article ID: Q138003
The information in this article applies to:
  • Microsoft Electronic Forms Designer, version 1.0

SYMPTOMS

When Electronic Forms Designer has been installed in a shared Microsoft Windows installation, and the Novell NetWare Map ROOT command has been used to map the Windows directory, MEFBROWSE.EXE will not find the existing E- forms and gives the following error:

   There are no e-forms available in the shared Mail extensions
   directory, or installed on your machine.

CAUSE

This is due to the result returned from the GetWindowsDirectory() function that may or may not return the trailing backslash in the path to the Windows directory. If the Windows directory is the root of the drive, or Novell's Map Root has been used, then the function returns a trailing backslash.

In all other cases, the path returned does not include a trailing backslash. This creates a problem when the MEFBrowse code appends a backslash to the returned path because, in some cases, the path is invalid due to having two backslashes. As a result, Browser fails to locate your MSMAIL.INI.

RESOLUTION

To verify the cause of this problem remap the Windows directory so that it is not the root of a drive. Then change to the Windows directory, and run Windows. See if Browser returns the error above.

You can also modify the code of MEFBROWS.EXE by making the following changes to the BROWSER.FRM file, and recompile the VB project.

In the BROWSER.FRM object Form:

  1. Remove the following line:

          szMSMailIni = Trim$(Left$(szWinDir$, cbRet) & "\" & LOCAL_INI)
    

  2. Replace the above line with the following lines:

          predir$ = Trim$(Left$(szWinDir$, cbRet))
          If Right$(predir$,1) = "\" Then
    
              szMSMailIni = predir$ & LOCAL_INI
          Else
              szMSMailIni = predir$ & "\" & LOCAL_INI
          EndIF
    
    

  3. Save the project, and recompile the EXE.

STATUS

Microsoft has confirmed this to be a problem in version 1.0 of Microsoft Electronic Forms Designer. We are researching the problem and will post new information here in the Microsoft Knowledge Base as it becomes available.


Additional reference words: 1.00 eform shared windows
KBCategory: kbenv kberrmsg
KBSubcategory: MailPCForms


THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: October 11, 1995
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.