Message from Xavier Callejas Most recent post: 12/29/2007 4 authors and 7 replies. Hi, I'm developing a small stand alone client, I need a database to store some data, It would've 4 - 5 tables. I have never worked with embended databases, just with remote db servers. What db do you recomend me? thanks & regards. xavier. read more about embended db for stand alone client?
Message from Sean Carrick Most recent post: 12/29/2007 4 authors and 10 replies. ------=_Part_7847_8345720.1198611150401 Content-Disposition: inline Hey All! Maybe I should actually be posting this to a JAVA-specific list, but I thought I'd ask here first, to see what kind of responses that I get. You know how if, while designing a JAVA/Swing application, you set the LAF to the system default, you get the following: - Window$ LAF on Window$ - Mac LAF on Mac - GNOME LAF on GNOME Why is it that you *do not* get the same LAF on KDE as the rest of your native applications? I'm just curious about this because I want to understand why there isn't a Sun-supplied LAF for KDE. Instead, on KDE, you get the Metal/Ocean LAF, which is a lot better than the old Metal LAF, but it'd be nice if we could've our JAVA/Swing applications look like native programs under KDE, would not it? I did find a LAF package that makes an application look like a native KDE application, but it is *very* buggy. Little things do not work, like tabbing from field to field, text highlighting when you move to a new field, etc. I just think that it'd be nice to have a quality LAF for KDE that can be set in the same way you set the LAF to the system default for the others. What do you all think? Cheers, Sean Carrick PekinSOFT PekinSOFT@xxxxxxxxxxx ------=_Part_7847_8345720.1198611150401 Content-Disposition: inline Hey All!<br><br>Maybe I should actually be posting this to a JAVA-specific list, but I thought I read more about Just a thought...
Message from Sean Carrick Most recent post: 12/29/2007 3 authors and 6 replies. ------=_Part_11175_26124073.1198735135098 Content-Disposition: inline Hey All, I'm working in NetBeans 6.0, with JDK 6 update 3, on openSuSE 10.2. I'm writing a command-line switch for viewing the LICENSE file, which is in my JAR under loe.resources.files.LICENSE. I'm using the following code to attempt this: private static void showLicense() { // Declare a couple of local variables for file reading and screen // writing. FileReader in = null; PrintStream out = new PrintStream ( System.out ); try { in = new FileReader ( adminUtils.validatePath( Main.class.getResource("/loe/resources/files/LICENSE").toString()) ); int c; while ( (c = in.read()) != -1 ) { out.write(c); } } catch ( IOException ioE ) { // Display a message to the user that something went wrong. String msg = "A problem occurred while trying to show the " + "text\n" + "of the LICENSE file in /loe/resources/files/\n\n" + "Cause: " + ioE.getCause() + "\nMessage: " + ioE.getLocalizedMessage(); String ttl = "I/O Error"; String typ = "error"; adminUtils.showMessage(null, msg, ttl, typ, ioE, "Main.show" + "License()"); } } // End of showLicense() method. The call to adminUti read more about Weird File Access Problem...
Message from JamesBourette Most recent post: 12/29/2007 3 authors and 7 replies. I have installed 5.5.1 and 6.0 on my mac book pro under parallels (also on Mac OS X) I am having trouble with what seems to be a refresh problem. The applications work fine on my dell (installed today) and I have uninstalled everything on the problem machine, removed the old project directories and re-installed 6.0 but it still behaves the same way. In 5.5.1 the scroll problem only appeared in the Source code area, when you scroll up the lines duplicate. */ * FLogin.JAVA * FLogin.JAVA * FLogin.JAVA ... to the bottom of the screen a page down / page up will clear the problem a similar problem happens if using the scroll bar. What is different in 6.0 that was not in 5.5.1 is that the project tab and Navigator tab are also subject to the problem. In the project Tab, with a scroll I get... Project Name Source Packages Source Packages Source Packages Source Packages .... to the bottom of the window. As I say I have uninstalled everything and done a clean install. I have searched everywhere I can think of but cannot find a solution. I hope someone can help. Thanks -- View this message in context: http://www.nabble.com/Refresh-problem-win-xp-under-parallels-%28mac-book-pro%29-tp14518021p14518021.html Sent from the Netbeans - Users mailing list archive at Nabble.com. read more about Re[nbusers] fresh problem win xp under parallels (mac book pro)
Message from Cruxic Most recent post: 12/29/2007 5 authors and 11 replies. Hello fellow coders, How do I turn off the new method parameter guessing auto-completion feature in Netbeans 6? (See this if you do not know what I'm talking about: http://wiki.netbeans.info/wiki/view/JAVA_EditorUsersGuide#section-JAVA_EditorUsersGuide-HowToUseCodeCompletion) I'm sorry to say that the guessing ends up creating more work for me because it usually guesses incorrectly. Does anybody know how to disable it? Much Thanks. -- View this message in context: http://www.nabble.com/Can-parameter-guessing-feature-be-disabled-tp14411914p14411914.html Sent from the Netbeans - Users mailing list archive at Nabble.com. read more about Can parameter guessing feature be disabled
Message from Bayless Kirtley Most recent post: 12/29/2007 3 authors and 3 replies. Since I never had performance problems with NB5, I did not put much = credibility in the many complaints I have read about NB6. After finally = upgrading, I too have some serious issues with the JAVA editor in = particular. 1. When scrolling through the lines of a file of any significant size, = there are long pauses every few seconds. Every couple of screens, it may = just stop for anywhere from 2 to 10 seconds. 2. When holding down a key for the auto repeat, a similar thing happens. = Every few characters on a line, it may pause for anywhere from almost a = second up to 3 or 4 seconds. This can be particularly disconcerting when = the key in question is the delete key. 3. Any time I insert a newline into a line, there is a hesitation of 1 = or 2 seconds before I can do anything else. 4. An unrelated complaint is all those marked lines in the far right = column. In NB5, they made sense and were useful in quickly locating = lines that might need attention for some reason or another. There are so = many markings in NB6, however, as to make them completely useless. I do not really believe this is a computer resources issue as I never had = any of these problems with 5.0. For what it's worth though, I have = Windows XP Home in a P-4 2.6GHz with 1.75GB RAM. I imported my NB5 = settings when installing 6.0, the Release version. Bayless read more about NB 6.0 performance issues
Message from Jacques Nogueira dos Santos Most recent post: 12/29/2007 2 authors and 2 replies. ------_=_NextPart_001_01C84990.378260CE Hi, I have a doubt about JAVA Database Application. I have 3 tables Scholl, People, Class and I must create a form for each = one using CRUD. So, When I did my JAVA Database Application it just allowed me to select = one table (or more if the table has a foreign key).How can I do a CRUD = for the three tables on the same project? I tried to find like "DataBaseForm" so as to include a CRUD form on the = project but there isn=B4t. Is there anyway so as to have all the CRUDs on the same project? ------_=_NextPart_001_01C84990.378260CE ------_=_NextPart_001_01C84990.378260CE-- read more about ? Doubt about JAVA database application.
Message from Xavier Callejas Most recent post: 12/28/2007 2 authors and 4 replies. Hi, I like very much the taskbar that automatically appear in a JDesktopPane when the GTK Look&Feel is in use, but this do not automatically occur in others Look&Feel like metal or kde. I do not use GTK, how can I do to have this same taskbar in metal look&feel? Thanks. read more about GTK/Swing Look&Reel taskbar
Message from Amdy Most recent post: 12/28/2007 2 authors and 5 replies. I want to place my .class files in c:\Program Files\Adventnet\WebNMS\classes folder. My objective is to use the .JAVA examples given in c:\Program Files\Adventnet\WebNMS\examples folder and compile them and place them in c:\Program Files\Adventnet\WebNMS\classes folder. :confused: -- View this message in context: http://www.nabble.com/Placing-.class-files-in-a-specified-folder-tp14484984p14484984.html Sent from the Netbeans - Users mailing list archive at Nabble.com. read more about Placing .class files in a specified folder
Message from EchoB Most recent post: 12/28/2007 3 authors and 3 replies. Ok, I'm writing Ruby with NetBeans IDE 6 - how do I enable whitespace viewing? Tabs, and space marks - not as interested in linefeed/carriage return but that'd be nice to know too. Ive looked in preferences, and I'm either blind or looking in the wrong spots. Thanks! read more about Noob Question. WhiteSpace Viewing?
Message from brunosm Most recent post: 12/28/2007 4 authors and 6 replies. Hello How can I run netbeans in another virtual machine than the "by default" I have a mac and I want to try the last jdk 1.6 preview but the "default" is 1.5 Thanks read more about running other virtual machine
Message from Alex Lam S.L. Most recent post: 12/28/2007 2 authors and 2 replies. I have created a web project with existing sources (through a ClearCase mounted volume) which is set up to use Tomcat 5.5.25 The project builds and deploys properly. However, I keep getting compiler errors within the editor windows claiming that all the JAVAx.servlet classes and classpaths are missing. Regards, Alex. read more about Spurious compiler errors for JAVAx.servlet
Message from Lloyd Meinholz Most recent post: 12/28/2007 2 authors and 3 replies. I am using nb6 with updated plugins. The problem I have occurs on both a Windows XP Pro laptop and my Ubuntu 7.10 box using jdk_1.6.0_03. I initially installed the web and JAVA ee version of nb6 and added a few plugins including the ruby plugins. I recently updated the ruby gems, which picked up the rails 2.0 update. I have only a couple extra gems installed (redcloth, bluecloth and facets). I am using the built-in JRuby (1.0.2) and managing my gems through netbeans. When I try and create a new Ruby on Rails Application, I click on the Install JRuby OpenSSL Support and get the following error: Exception in thread "main" JAVA.lang.NoSuchMethodError: org.jruby.RubyHash.op_aset(Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject; at org.jruby.ext.openssl.X509Name.createX509Name(X509Name.JAVA:98) at org.jruby.ext.openssl.X509.createX509(X509.JAVA:40) at org.jruby.ext.openssl.OpenSSLReal.createOpenSSL(OpenSSLReal.JAVA:83) at JopensslService.basicLoad(JopensslService.JAVA:38) at org.jruby.runtime.load.ClassExtensionLibrary.load(ClassExtensionLibrary.JAVA:50) at org.jruby.runtime.load.LoadService.smartLoad(LoadService.JAVA:307) at org.jruby.runtime.load.LoadService.require(LoadService.JAVA:333) at org.jruby.RubyKernel.require(RubyKernel.JAVA:762) at org.jruby.RubyKernelInvokerSrequire1.call(Unknown Source) at org.jruby.runtime.callback.InvocationCallback.execute(InvocationCallback.JAVA: read more about rails problem after updating gems
Message from Wade Chandler Most recent post: 12/28/2007 2 authors and 2 replies. I know one could use apt and call it from ANT and generate helper/side files from Annotations using the SOURCE RetentionPolicy, but I'm wondering if NB can handle these things automatically. That means, if I have an interface or something which uses SOURCE annotations can NB tell what will be generated using APT or does one have to run the generator (in this case apt or something similar) and then have the files produced? I know annotations are supported in NB, but I'm not sure about source annotations, so instead of spinning my wheels or digging too much I thought I'd ask point blank. Thanks for any input, Wade ================== Wade Chandler, CCE Software Engineer and Developer, Certified Forensic Computer Examiner, NetBeans Dream Team Member, and NetBeans Board Member http://www.certified-computer-examiner.com http://wiki.netbeans.org/wiki/view/NetBeansDreamTeam http://www.netbeans.org read more about RetentionPolicy.SOURCE Annotations Support - Does anyone know if NB supports it in any fashion?
Message from Gary Greenberg Most recent post: 12/28/2007 2 authors and 2 replies. ------_=_NextPart_001_01C848CE.3E7EBEE8 I decided to print relatively big XML file from IDE. I did get NPE while doing page setup and I sent a report but this is another story. When I sent file to the printer, IDE froze and stayed that way until it finished spooling 80+ pages to the printer. As I was using common printer, which is pretty busy, I was dead in the water for almost 15 minutes and I do not like it at all. I'd like to know what your experience with printing from IDE is, and if there is a way to avoid this kind of freezes. Thanks, Gary------_=_NextPart_001_01C848CE.3E7EBEE8 <html xmlns:o=3D"urn:schemas-microsoft-com:office:office" = xmlns:w=3D"urn:schemas-microsoft-com:office:word" = xmlns=3D"http://www.w3.org/TR/REC-html40"> <head> <meta http-equiv=3DContent-Type content=3D"text/html; = charset=3Dus-ascii"> <meta name=3DGenerator content=3D"Microsoft Word 11 (filtered medium)"> <style> <!-- /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal {margin:0in; margin-bottom:.0001pt; font-size:12.0pt; font-family:"Times New Roman";} a:link, span.MsoHyperlink {color:blue; text-decoration:underline;} a:visited, span.MsoHyperlinkFollowed {color:purple; text-decoration:underline;} span.EmailStyle17 {mso-style-type:personal-compose; font-family:Arial; color:windowtext;} @xxxxxxxxxxx Section1 {size:8.5in 11.0in; read more about Printing freezes NB 6.0
Message from sadon alsuwaida Most recent post: 12/28/2007 2 authors and 2 replies. --_2208dfc7-fb94-4db0-aeee-b83cba200e2a_ Greetings to you all I have a complete project about SMS messaging over GSM= modem written in JAVA, and I am trying to import it to NetBeans 6.Can anyo= ne please help me accomplishing that?This is the project that I am trying t= o import:http://smslib.googlecode.com/files/smslib-JAVA-v3.1-RC3.ziphttp://= smslib.googlecode.com/files/JAVAcomm20-win32.zip Best regards=20 =20 _________________________________________________________________ Do not get caught with egg on your face. Play Chicktionary! http://club.live.com/chicktionary.aspx?icid=3Dchick_wlhmtextlink1_dec= --_2208dfc7-fb94-4db0-aeee-b83cba200e2a_ <html> <head> <style> .hmmessage P { margin:0px; padding:0px } body.hmmessage { FONT-SIZE: 10pt; FONT-FAMILY:Tahoma } </style> </head> <body class=3D'hmmessage'> <DIV class=3Dpad5x10>Greetings to you all<BR><BR> I have a complete pr= oject about SMS messaging over GSM modem written in JAVA, and I am trying t= o import it to NetBeans 6.<BR><BR>Can anyone please help me accomplishing t= hat?<BR><BR>This is the project that I am trying to import:<BR>http://smsli= b.googlecode.com/files/smslib-JAVA-v3.1-RC3.zip<BR>http://smslib.googlecode= .com/files/JAVAcomm20-win32.zip<BR> Best re read more about import an existing project to netbeans 6
Message from KF Most recent post: 12/28/2007 2 authors and 2 replies. Hi, When I start NetBeans 6, I receive this warning message several times. Can somebody tell me what should be changed in configs to avoid this message? Best Regards, iMoon read more about Folder keybindings already exists in Default System
Message from nickg Most recent post: 12/28/2007 2 authors and 2 replies. Is there way to run a web browser using Iframe within NetBeans 6.0 IDE. Thanks , Nick-- View this message in context: http://www.nabble.com/Running-a-webapplication-e.g.-A-URL-within-NetBeans-6.0-IDE-tp14526305p14526305.html Sent from the Netbeans - Users mailing list archive at Nabble.com. read more about Running a webapplication e.g. A URL within NetBeans 6.0IDE
Message from Marco Mangiante Most recent post: 12/28/2007 3 authors and 3 replies. Hello to everyone, I downloaded the php plugin and now I'd like to use it with iis7 on windows vista. I see that it it possible to configure apache like web server but haven't found in what mode to configure iis 7. I am a novice on netbeans, so I do not know where to start: can someone help me? Thanks in advance.-- Marco Mangiante read more about How to connect Netbeans to IIS 7 on Windows Vista
Message from Sergio Lopes Most recent post: 12/28/2007 3 authors and 4 replies. Hi, I have been using this build and all goes well. I picked up a project I was developing some time ago and I now see a library added to it that I do not know what is for. I think it is related to persistence in some way but I do not know if I need it, at least I know it wasn't me who added it to the project. What is the impact of this lib in my code? Is it really necessary? Can I remove this lib? Where can I find information about it, or about why it is there so I can decide what to do with it? --=20 Best regards, S=E9rgio Lopes read more about What's the TopLink Essentials library for? Using daily build 200709050000.
Message from Harri Pesonen Most recent post: 12/27/2007 5 authors and 13 replies. Hello, I tried to do the JSF tutorial at http://www.netbeans.org/kb/60/web/helloweb.html but I get org.apache.jasper.JasperException: Invalid standard action E:/SRC/JAVA/NetBeansProjects/HelloWebJSF/build/web/Page1.jsp(7,5) E:\SRC\JAVA\NetBeansProjects\HelloWebJSF\nbproject\build-impl.xml:417: The following error occurred while executing this line: E:\SRC\JAVA\NetBeansProjects\HelloWebJSF\nbproject\build-impl.xml:396: JAVA returned: 1 when I try to compile the generated jsp or run the project. What gives? Here is the generated jsp: <?xml version="1.0" encoding="UTF-8"?> <jsp:root version="2.1" xmlns:f="http://JAVA.sun.com/jsf/core" xmlns:h="http://JAVA.sun.com/jsf/html" xmlns:jsp="http://JAVA.sun.com/JSP/Page" xmlns:webuijsf="http://www.sun.com/webui/webuijsf"> <jsp:directive.page contentType="text/html;charset=UTF-8" pageEncoding="UTF-8"/> <f:view> <webuijsf:page binding="#{Page1.page1}" id="page1"> <webuijsf:html binding="#{Page1.html1}" id="html1"> <webuijsf:head binding="#{Page1.head1}" id="head1" title="Hello Weeeb"> <webuijsf:link binding="#{Page1.link1}" id="link1" url="/resources/stylesheet.css"/> </webuijsf:head> <webuijsf:body binding="#{Page1.body1}" id="body1" style="-rave-layout: grid"> read more about JSF tutorial and "Invalid standard action"
Message from "George, Kenneth V [NTK]" Most recent post: 12/27/2007 2 authors and 2 replies. --_000_42B85F6F65D61147BA17519B3ADE01C227D8E7480EPLSWM02Cadspr_ Ok, I have gone through the archives and cannot find a satisfactory answer = for this (or at least one that works). I DOn't want automatic compilation of source code to occur (too much like = Eclipse and if I wanted Eclipse - I would've downloaded it). I have foll= owed the examples in the thread for turning it off, but this DOESn't work!= !! Does anyone out there really know how to turn it off? --_000_42B85F6F65D61147BA17519B3ADE01C227D8E7480EPLSWM02Cadspr_ --_000_42B85F6F65D61147BA17519B3ADE01C227D8E7480EPLSWM02Cadspr_-- read more about Turn-off automatic compilation NB 6.0
Message from James Rome Most recent post: 12/27/2007 2 authors and 2 replies. My NB project uses the javb2.1 libraries, so I need to set JAVA.endorsed.dirs in the command line if the user runs using JAVA 1.6. When I build my project, it puts a README.TXT file in the dist directory. How can I get NetBeans to modify what it puts into this file to specify the correct command line if he is running JAVA 1.6? Thanks, Jim Rome read more about How to change the README.TXT file
Message from Baskar Most recent post: 12/27/2007 3 authors and 3 replies. ------=_Part_14015_1629936.1198746785421 Content-Disposition: inline Hi Netbeans team, After I had posted a message in Nabble, I am getting all the others post to this my mail. I do not really want to receive all the mails, I am interested only in my mails and for that, I am setting the mail alert for those messages. So, do not mail me, all the posts posted in the Nabble site. Please unsubcribe my mail id, for the same. With Regards, Baskaran K ------=_Part_14015_1629936.1198746785421 Content-Disposition: inline Hi Netbeans team,<br><br>After I had posted a message in Nabble, I am getting all the others post to this my mail. I don't really want to receive all the mails, I am interested only in my mails and for that, I am setting the mail alert for those messages. <br><br>So, don't mail me, all the posts posted in the Nabble site. Please unsubcribe my mail id, for the same.<br><br>With Regards,<br>Baskaran K<br> ------=_Part_14015_1629936.1198746785421-- read more about Please un subcribe me...
Message from Lloyd Meinholz Most recent post: 12/27/2007 2 authors and 3 replies. I am begining development of a Rails 2.0 project. Are there any issues with upgrading the jruby gems to rails 2.0 and developing with nb6? I am using the jruby that came with the netbeans ruby module. I'd like to do this, but want to make sure that nb6 will support this first or at least be aware of any gotchas. Thanks, Lloyd read more about any issues with rails 2.0 and nb6?
Message from Jacques Nogueira dos Santos Most recent post: 12/27/2007 2 authors and 5 replies. ------_=_NextPart_001_01C847DE.0487BAD8 Hello, I have a jTable with three columns: Register (Boolean column = where it=B4s possible to selected the register), Name and Surname. I need to catch the selected registers and put all the values on a list. Example: There are 10 registers and the user selected just 2. I wanna get these = selected registers and include it on a list as ArrayList. How can I do it?Does anybody have an example? =20 ------_=_NextPart_001_01C847DE.0487BAD8 ------_=_NextPart_001_01C847DE.0487BAD8-- read more about How to include selected registers on a list?
Message from gyorgyg Most recent post: 12/27/2007 2 authors and 2 replies. hi, I prepared a jsp/jsf page named DBmanage, its backing bean's scope is set to "session" the page contains - among other components - one radiobuttongroup, the buttons of which I would like to rename at the first time when the user visits the page... (default names are "item 1", "item 2", "item 3") I thought that the overridden init() method does the work for me with this simple code: ... import com.sun.webui.jsf.model.Option ... @xxxxxxxxxxx init() { ... rbg_default_options.setOption( new Option[]{new Option("it1", "RB1"), new Option("it2", "RB2")} ... ) } so, let see how this code works when DBmanage backing bean's scope is "request" great! I see a radiobuttongroup with two buttons, named RB1 and RB2 ok, now I change the scope to "session" sh&#@xxxxxxxxxxx!!! now i'm gazing at a page with buttons named "item 1", "item 2", "item 3" let's place a breakpoint inside the init() method and DEBUG... and my init() code hasn't run(??), how can this happen? init() method is valid only for request beans? pls! could anyone help me? ps.: I work with netbeans6.0 & glassfish thanks Gabor read more about calling init() method from "session scope" backing beans (AbstractPageBean)
Message from kurzweil4 Most recent post: 12/27/2007 3 authors and 5 replies. When I create a web project with JAVAServer Faces as the framework (no Visual Web JAVAServer Faces), there are only 2 components in the JSF palette: JSF Form and JSF Data Table. Is this supposed to be that way or is this a bug??? It inconvenient only having these 2 components in the palette. Thanks, Kurzweil4 -- View this message in context: http://www.nabble.com/JSF-Palette---Only-2-Components-tp14508745p14508745.html Sent from the Netbeans - Users mailing list archive at Nabble.com. read more about JSF Palette - Only 2 Components
Message from netbean3r Most recent post: 12/27/2007 3 authors and 4 replies. Please help me! I have been trying for hours and hours! I am trying to use C++ with Netbeans 6.0. I have gotten MinGW, GDB, and Msys. Netbeans finds my tools OK. The problem is with the makefiles. I don't know how to write makefiles by hand and don't with to do so, as Netbeans does this automatically. The problem is, I believe, that the make program wants UNIX style pathnames, and the Netbeans automatically generated makefiles use Windows style pathnames, or vice versa....I am not completely sure but I am 99% sure this is the problem. I get syntax errors when trying to compile (not C++ syntax errors) such as: ================== Running "C:\MinGW\bin\mingw32-make.exe -f nbproject/Makefile-Debug.mk build/Debug/MinGW-Windows/test2.o" in C:\ mkdir -p build/Debug/MinGW-Windows The syntax of the command is incorrect. mingw32-make: *** [build/Debug/MinGW-Windows/test2.o] Error 1Build failed. Exit value 2. ============ Can anyone help with this? I have tried searching for answers but found none....I am pulling my hair out!! -- View this message in context: