Forum: Graphics and Multimedia 16 Days Ago |
| Replies: 2 Views: 253 actionscript3.0 Is this a forum to submit a question on actionscript3.0?
if not. my apologies.
if so:
I made two move clips. one in sepereate layers and an action layer.
I have symblos changing position on these... |
Forum: Graphics and Multimedia 28 Days Ago |
| Replies: 1 Views: 302 symbols & arrays Hello
I have a quick question. I will have to learn syntax for action script. Before I research my objective. Can someone enlighten me with a yes or no (example code would be awesome).
Question: ... |
Forum: MySQL Jun 4th, 2008 |
| Replies: 0 Views: 302 traveldb script Is someone farmiliar with the travel database that installs with the netbeans installation?
I can finally connect to the db and it shows folders to hold tables etc yet there is no tables in the... |
Forum: JSP May 30th, 2008 |
| Replies: 2 Views: 650 Re: Travel database MySql,netbeans samples? Actually I got it when I dl netbeans and I re-installed it but still no traveldb added. I have to follow a lead that all the sample "demo" Projects may be packaged with the Glassfish dl.
-Thanks any... |
Forum: JSP May 30th, 2008 |
| Replies: 2 Views: 650 Travel database MySql,netbeans samples? For some reason I deleted a sample database that was in the netbeans tutorial. Of course now I need it and I don't where to get it( I tried the google,and will try again) but does anyone know how to... |
Forum: JSP May 25th, 2008 |
| Replies: 1 Views: 238 What is * doing? String str="<table border=\"0\" cellpadding=\"5\">";
I believe \ this is an escape caracter?Y,N, but what is * doing?
Thanks
-Steve |
Forum: JSP May 23rd, 2008 |
| Replies: 4 Views: 541 Re: init() I fixed some var and it looks like it is in working order.
I really need more JSF examples if possible
(dealing with database binding)
Thanks
-Steve |
Forum: JSP May 23rd, 2008 |
| Replies: 4 Views: 541 Re: init() I have also realized I have no clue on prerendering the dataProvider for the table dropdown list and will redo this project and pay more attention to this.
Thanks anyway.
-Steve |
Forum: JSP May 23rd, 2008 |
| Replies: 4 Views: 541 Re: init() I have reaized that there is no relationship between a drop down list and a table .
I think I need to establish a query to populate the table with records related to the choice of a persons name... |
Forum: JSP May 23rd, 2008 |
| Replies: 4 Views: 541 init() I recently deployed a program
http://www.netbeans.org/kb/61/web/hibernate-vwp.html#01
in a pakage containing *.hbm.xml's and backing beans a HibernateUTIL.java class was
created.
in the IDE the... |
Forum: JSP May 23rd, 2008 |
| Replies: 2 Views: 258 |
Forum: JSP May 23rd, 2008 |
| Replies: 2 Views: 258 code question There are elements in this code I would like for someone explain if possible.
Please.
_int();
and the ? and the : in the code throw e instanceof FacesException ? (FacesException) e : new... |
Forum: JSP May 22nd, 2008 |
| Replies: 0 Views: 233 |
Forum: JSP May 21st, 2008 |
| Replies: 3 Views: 354 Re: jsf Out of sheer ignorance I built JSP pages as perscribed by the tutorials but failed to work with the these tags
<webuijsf:page id="page1">
<webuijsf:html id="html1">
... |
Forum: JSP May 21st, 2008 |
| Replies: 3 Views: 354 Re: jsf Yes it is. It is really helping me understand the relationship of beans,xml,and taglib. I plan on continuing studying the architecture. I have not had any luck getting the JSP pages to display in... |
Forum: JSP May 21st, 2008 |
| Replies: 3 Views: 354 jsf Is there anyone working with Visual web java server faces? |
Forum: JSP May 21st, 2008 |
| Replies: 1 Views: 356 |
Forum: JSP May 21st, 2008 |
| Replies: 1 Views: 356 Can't view JSP in browser I created a nbproject,webapplication,visual web java Server Faces
Glashfish,deployed it.(netbeans6.1)
I have written a couple of them and they do not show up in a browser.
Below is the one I just... |
Forum: MS SQL May 19th, 2008 |
| Replies: 1 Views: 373 ERD I have a database designed in Access. I would much rather use MySQL. Is there an IDE that I could use MySQL and work with building tables and ERD's? |
Forum: Java May 15th, 2008 |
| Replies: 1 Views: 191 beanInfo If I am adding components and queries to a JDesktopApplication (database) would it be safe to say I need a BenaInfo class extending SimpleBeanInfo and for lack of a better term sync them? |
Forum: Java May 15th, 2008 |
| Replies: 1 Views: 191 beans I am adding functionality to a tutorial which is a JDesktopApplication(Netbeans6.1)using Entity class from databases with Persistence unit and entitymanager.
I have components in place.
Can someone... |
Forum: MySQL May 15th, 2008 |
| Replies: 2 Views: 287 |
Forum: Java May 13th, 2008 |
| Replies: 0 Views: 150 queryf String like=searchJTextField1.getText();
query=entityManager.createQuery("SELECT c FROM content c WHERE c.artist LIKE \"%" + like + "%\"");
query.setParameter(like, searchJTextField1.getText());
is... |
Forum: Java May 13th, 2008 |
| Replies: 3 Views: 350 Re: netbeans createQuery() exellent.
query.setMaxResults(10);
is my first manipulation of the original query.
now I must create a new query.
Thanks
-Steve |
Forum: Java May 13th, 2008 |
| Replies: 3 Views: 350 |
Forum: Java May 13th, 2008 |
| Replies: 0 Views: 263 netbeans6.0 Do you have some understanding of the netbeans6.0 concerning binding and queries?
I have a jdesktop program from a tutorial using the netbeans ide.
it automaticlally sets the query property to... |
Forum: Java May 13th, 2008 |
| Replies: 3 Views: 350 netbeans createQuery() If netbeans ide has a queryproperty set to
SELECT c FROM Content c
How can I change this query to say ..limit the resultset to less records like 10 or 20 instead of the whole database.
I am not sure... |
Forum: Java May 13th, 2008 |
| Replies: 2 Views: 359 Re: binding properties Scratch this one. As usual I made it much more complicated than it had to be. The solution was much easier than I made it |
Forum: Java May 12th, 2008 |
| Replies: 2 Views: 359 Re: binding properties I think I need some of this:
try {
entityManager.getTransaction().commit();
entityManager.getTransaction().begin();
} catch (RollbackException rex) {
... |
Forum: Java May 12th, 2008 |
| Replies: 2 Views: 359 binding properties I have the tutorial running with a entire database displayed.
I am working with the tutorial at:
http://www.netbeans.org/kb/articles/mysql.html
The above tutorial creates a jDesktopAPP. with... |
Forum: Java May 11th, 2008 |
| Replies: 1 Views: 188 Re: search functionality in order to understand the code block above is this:
Using Introspection to Discover the Events A Bean Fires
a appropriate place to start? or is there a more efficient approach? |
Forum: Java May 11th, 2008 |
| Replies: 1 Views: 188 search functionality I am working with the tutorial at:
http://www.netbeans.org/kb/articles/mysql.html
Is there someone able to assist me in learning how to add a search functionality to the
above tutorial?
right now... |
Forum: Java May 11th, 2008 |
| Replies: 0 Views: 685 createQuery() I am working with the tutorial at:
http://www.netbeans.org/kb/articles/mysql.html
can any one help me figure out why I can not set a query with this method?
entityManager =... |
Forum: Java May 10th, 2008 |
| Replies: 1 Views: 199 Re: adding a query to a tutorial I am working with the tutorial at:
http://www.netbeans.org/kb/articles/mysql.html
I got rid of the second entity manager and the second list(searchEnityManager1 and searchList1 and bound the... |
Forum: Java May 10th, 2008 |
| Replies: 1 Views: 199 adding a query to a tutorial I am working with the tutorial at:
http://www.netbeans.org/kb/articles/mysql.html
The program works great.
untouched the program displays the entire database that is a result of of... |
Forum: Java May 9th, 2008 |
| Replies: 6 Views: 250 |
Forum: Java May 9th, 2008 |
| Replies: 6 Views: 250 Re: Collection ? <?> Here is another helpful example given:
The collection contains the same type of objects as are contained in the returned list.
For example, if the returned list contains Integers, then the... |
Forum: Java May 9th, 2008 |
| Replies: 6 Views: 250 Re: Collection ? <?> Here is a link I was given that might help.
http://java.sun.com/j2se/1.5.0/docs/api/
I was given a much better example. the collection must contain an array of resultsets it calls... |
Forum: Java May 9th, 2008 |
| Replies: 6 Views: 250 Collection ? <?> If I have this line in the codejava.util.Collection search = searchQuery1.getResultList();
Is this a collection of <list>? and can I find out if search should be named"Search" or does it have to be... |
Forum: Java May 8th, 2008 |
| Replies: 0 Views: 306 createQuery() I attempt to create a string variable to a setter() that is used as query property
What am I missing in the procedure to implement a simple query on the database?
It stops here.
searchList1 =... |