This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 42981 - On Windows the module manager doesn't present correctly module attributes
Summary: On Windows the module manager doesn't present correctly module attributes
Status: CLOSED FIXED
Alias: None
Product: platform
Classification: Unclassified
Component: -- Other -- (show other bugs)
Version: 4.x
Hardware: PC Windows XP
: P1 blocker (vote)
Assignee: _ ttran
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2004-05-10 12:46 UTC by Vladimir Hudec
Modified: 2008-12-22 17:58 UTC (History)
1 user (show)

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Vladimir Hudec 2004-05-10 12:46:33 UTC
This is the same for ZIP and Smart Installer based
distribution.
Comment 1 Jaroslav Tulach 2004-05-10 13:51:57 UTC
Caused by wrong order of ide4 and nb4.0 directories. I've modified the
netbeans.cpp file. Trung please rebuild the exe file. Until that
happen you can execute the platform by using nbexec.exe --clusters
nb4.0;ide4

ide/launcher/windows/netbeans.cpp,v  <--  netbeans.cpp
new revision: 1.3;


Index: netbeans.cpp
===================================================================
RCS file: /cvs/ide/launcher/windows/netbeans.cpp,v
retrieving revision 1.2
diff -u -r1.2 netbeans.cpp
--- netbeans.cpp        6 May 2004 12:07:35 -0000       1.2
+++ netbeans.cpp        10 May 2004 12:49:16 -0000
@@ -144,10 +144,10 @@
         if (ffh != INVALID_HANDLE_VALUE) {
             FindClose(ffh);
             sprintf(dirs, "%s\\%s;%s\\%s;%s\\%s",
-                    topdir, "\\ide4", topdir, "\\nb4.0", topdir,
"\\extra");
+                    topdir, "\\nb4.0", topdir, "\\ide4", topdir,
"\\extra");
         } else {
             sprintf(dirs, "%s\\%s;%s\\%s",
-                    topdir, "\\ide4", topdir, "\\nb4.0");
+                    topdir, "\\nb4.0", topdir, "\\ide4" );
         }
     }
     sprintf(nbexec, "%s\\platform4\\launcher\\nbexec.exe", topdir);
Comment 2 _ ttran 2004-05-11 16:38:14 UTC
netbeans.exe and nb.exe recompiled
Comment 3 Tomas Danek 2005-07-27 11:03:58 UTC
closing