419 Posted Topics

Member Avatar for perezfl

Are you sure showMessageDialog takes arguments (null, String, String, String, String, String)? I think you need to check your argument types.

Member Avatar for Ezzaral
0
114
Member Avatar for Alex Edwards

You want to add a library, or just source files to edit? If it is a library (.jar) or something, there should be an add external library option. But I think you want to add source files, you can just drag-drop or do it directly in the filesystem.

Member Avatar for Alex Edwards
0
182
Member Avatar for Aamit

You don't want to just use the "scheduled tasks" that windows gives you?

Member Avatar for Jishnu
0
110
Member Avatar for timhysniu

Another good java IDE would be eclipse, it has a lot of plug-ins available so you will probably find something to help you with struts.

Member Avatar for jwenting
0
129
Member Avatar for Visualogic

I didn't really look through the code too thoroughly, but: form1.balance.value + form1.buy.value; did you want += here?

Member Avatar for nav33n
0
252
Member Avatar for kapilver
Member Avatar for didijc

So to do this, you will need to know when the value of the combo box has changed, so look at the various events associated with combo boxes. On a particular event, you will then need to call some javascript function which will then add your textboxes. Does that help?

Member Avatar for Luckychap
0
78
Member Avatar for Bouras

you posted this in the wrong forum, you want java, not javascript. Also, please try use the code tags, otherwise it is too hard to read.

Member Avatar for sillyboy
0
250
Member Avatar for Vukinagauna
Re: GUI

Surely you are not expecting somebody to solve your problem for you...

Member Avatar for Chaster
0
119
Member Avatar for NycNessyness

I assume each of those attributes are related. If so, you should probably encapsulate that information into an object, and then store those objects in an array.

Member Avatar for NycNessyness
0
81
Member Avatar for OmniX

Are you checking your code on the same machine all the time? My initial thought is you might have javascript disabled for firefox.

Member Avatar for ~s.o.s~
0
156
Member Avatar for aswaddling

Do a google search on "AJAX" I am not entirely sure what you want, but I assume it is something like the Mac OS fish eye. I have seen something similar done in AJAX before.

Member Avatar for ajaxius
0
63
Member Avatar for Canea

Sounds like permission on the actual FTP site. If they aren't allowing you to upload html, I don't really know what you can do.

Member Avatar for MidiMagic
0
163
Member Avatar for sillyboy

Hey guys, I am writing a desktop app to interact with XML. It reads the XML fine using the DocumentBuilderFactory, but when I try to save any changed to the XML file (e.g. setNodeValue()) the changes do not save. As an example here is some code I tried, just to …

Member Avatar for sillyboy
0
101
Member Avatar for mauriciomf
Member Avatar for punkrockbboy

Unfortunately I think IE doesn't support hover for anything other than anchors. BUT since this is a wide spread problem, I believe there is a free js script that takes care of this for you, if you google a but, you should be able to find it. If I knew …

Member Avatar for BeyerCorpuz
0
126
Member Avatar for BigBen747
Member Avatar for metroid12

You have declared MakeVisible after you call it. I am not 100%, but you should really put your javascript in your head to avoid this. Hopefully that fixes your issue.

Member Avatar for sillyboy
0
76
Member Avatar for kc8pdr

[CODE]<link style="stylesheet" type="text/css" href="xxx.css" />[/CODE] Goes in your head section.

Member Avatar for sillyboy
0
297
Member Avatar for Punkr63

Do you understand the concept of a stack & a queue? (That is half the problem). If you do, think of a stack or queue as an object (class). This object should hold the contents of the particular stack / queue and also the methods it has. Write some code …

Member Avatar for Nickk
0
186
Member Avatar for bryanau

You need to make sure your particular server allows for .jsp (i.e. has tomcat or something similar installed).

Member Avatar for sillyboy
0
104
Member Avatar for kahaj

move you window redirecting code to a javascript function. Make your onclick call a function to validate the checkbox (again, in javascript), and then if the checkbox is checked you can then redirect. Actually looking at your code, you seem to be mixing 2 approaches. You do not actually need …

Member Avatar for ~s.o.s~
0
122
Member Avatar for kahaj

[QUOTE=kahaj;469028]I'm assuming it would be via the onclick event[/QUOTE] Have you tried: [CODE]window.location = "???.html";[/CODE]

Member Avatar for ~s.o.s~
0
133
Member Avatar for pesho318i

<%! %> tags are used for declarations. I recommend you don't use this for anything other than declaring your variables, and this is probably the cause of your issues. Just use normal scriptlets <% %> for your actual statements. Good luck

Member Avatar for pesho318i
0
196
Member Avatar for holeejo

If you are using visual studio, the MSDN site has a complete reference to functions you will need. I suggest you get to know the MSDN site (it can be a bit tough to begin with).

Member Avatar for sillyboy
0
287
Member Avatar for tryphy

Ok, so it is a good idea to try some javascript tutorials to get the hang of it first. Javascript can be a pain to debug from my experiences. A few things that you may find helpful to help with your tasks: - onclick() *event - visibility or display *attribute …

Member Avatar for tryphy
0
111
Member Avatar for Gary Parker
Member Avatar for MidiMagic
0
103
Member Avatar for cyndi.
Member Avatar for WaltP
0
128
Member Avatar for Shubhra

the easiest solution is to just use scriptlets on the page the form is forwarded to. If you want to use jsp correctly, you should not use scriptlets but instead move this code to java classes.

Member Avatar for Shubhra
0
157
Member Avatar for greedylobster
Member Avatar for raviteja536741

In css you can just change the "list-style-type" to what you want. [code] ul { list-style-type: disc; }[/code]

Member Avatar for MidiMagic
0
65
Member Avatar for huskersox
Member Avatar for MattEvans
0
112
Member Avatar for priyapratheep

Do just a couple of things that may cause you code not to work. I hope you are closing addRowToTable()? And also, what is theName?

Member Avatar for sillyboy
0
70
Member Avatar for elangobala
Member Avatar for curt22

The problem lies where you are using the divisions for the second anchors in your list. The only purpose of these divisions I see is for font sizing, so I think you should move this sizing to css and remove the divs.

Member Avatar for MidiMagic
0
102
Member Avatar for dforkin
Member Avatar for MidiMagic
0
85
Member Avatar for jackskell26

So if you want to show the value of the rolls individually, you will want something like: [CODE]System.out.println(rollcount);[/CODE] I'll let you figure out where to put it, but it shouldn't be too hard.

Member Avatar for jackskell26
0
156
Member Avatar for martin3
Member Avatar for martin3
0
100
Member Avatar for jiggy_g

What do you actually mean here? : [code]var txt = locationId;[/code] Because it is going to be undefined in your code. It should probably be given a string value or you need to set locationId before you use it.

Member Avatar for sillyboy
0
78
Member Avatar for gyle0123
Member Avatar for Tom Tolleson

Is this just an issue with IE? If so try adding the following line. [CODE]newElem.setAttribute("className", "draggable")[/CODE] Hope this helps.

Member Avatar for sillyboy
0
80
Member Avatar for kedarkhedkar
Member Avatar for sillyboy
0
82
Member Avatar for muskan
Member Avatar for peter_budo
0
177
Member Avatar for sillyboy

I'm not entirely sure If this is going in the correct location. What I want is to set up my database so that it will updated every hour. I'm a little unsure on how to tackle this problem. Does oracle actually support this type of updating, and if not, would …

Member Avatar for Musta
0
116
Member Avatar for jeremiah sky

They said encryption was not an issue. So just to answer the question, yes, you are going in the right direction. Just check on those braces if it is not working correctly.

Member Avatar for stymiee
0
177
Member Avatar for muskan

Make sure you have "com.mysql.jdbc.Driver" in your web application. It will be contained in a .jar and it needs to go with your other java libraries you use.

Member Avatar for masijade
0
186
Member Avatar for sillyboy

Hi, I'm trying to use a double click action on a input field. It works fine on firefox, but doesn't work on ie7 saying the object doesn't support the action. My action so far is just an alert box (for testing purposes), is this a known compatibility issue?

Member Avatar for sillyboy
0
135
Member Avatar for krnekhelesh

[quote=krnekhelesh;400573] Are they essential????[/quote] Depends on what you are coding (Generally, I'd say no). Also, check the other forum.

Member Avatar for Salem
0
245
Member Avatar for sillyboy

Does anybody know if oracle saves "last modified" data? I want to use this in a archiving tool by only querying for data after/before certain dates.

Member Avatar for sillyboy
0
101
Member Avatar for akash_msrit

There is no need for 2 threads with the same question. If you are unsure as to how to do col4 + col5 that is a bit of a worry. Remember you are using JSP (i.e. java).

Member Avatar for sillyboy
0
149

The End.