419 Posted Topics

Member Avatar for r5quad

it does seem too "out there". if i were to guess you have a nullpointer in one of your events.

Member Avatar for stephen84s
0
103
Member Avatar for PhiberOptik

you could probably use "Selenium" to do this for you. it is used more for testing purposes, but it'll do what you want.

Member Avatar for sillyboy
0
114
Member Avatar for mona515

since you are not using code tags, it's hard to see, but i will just guess and say you haven't closed your brackets properly.

Member Avatar for verruckt24
0
230
Member Avatar for Sohvkhan

you have the while loop, which us going to act as your loop. the problem however is that you never query the user for x again. if you read the code, you are going to ask the user for y/n, but never for new numbers. x is going to be …

Member Avatar for woooee
0
2K
Member Avatar for JJ___

sounds like a network issue to me. how is your network configured? if this is on a large network (e.g. work, school) the download could be blocked.

Member Avatar for davidmethew
0
202
Member Avatar for gabec94
Member Avatar for Taniotoshi
0
564
Member Avatar for Rombosia

unfortunately i don't the specific utility you are talking about, but until somebody can answer you, you can just google "man ...." as most man pages you will want are hosted somewhere. there will be some differences, but generally this works well for me.

Member Avatar for vimotaru
0
155
Member Avatar for radar2009

the most common way to pass values between objects is to simply create getter methods. we can be of more help if you give more specific issues, otherwise it just sounds like you want us to do you assignment for you.

Member Avatar for stultuske
0
192
Member Avatar for DomoCobra

i believe bestjew is correct, but more importantly, what is "<\description>"? my guess is it is comming from XML, but that is not correct, do you want "</description>" instead?

Member Avatar for sillyboy
0
79
Member Avatar for PhiberOptik

what kind of application are you talking about? generally you would need to create a new instance with the updated jar, as you have mentioned.

Member Avatar for PhiberOptik
0
91
Member Avatar for zanzo

Do you have a link by any chance? If the div is "hidden" I assume you mean no content, how it is taking up space? Maybe I don't understand the problem entirely...

Member Avatar for mathew.parry
0
113
Member Avatar for jksaheta

you cannot expect to post your assignment and get a solution. please use code tags, and identify the relevant code to post.

Member Avatar for verruckt24
0
118
Member Avatar for VernonDozier

out of curiosity, what is generally your "fix" to this issue? (it may provide some clues)

Member Avatar for VernonDozier
0
546
Member Avatar for kbullard516
Member Avatar for spec80

in the constructor of away, save the instance of other. in the same way as away, you can have this.other, and access its methods like that.

Member Avatar for verruckt24
0
94
Member Avatar for bushman_222

if you are reading a book, doesn't it contain questions? I think a text book is probably the best place to get problems to practice on, as it will probably provide sample implementations and explain good/bad practices within the implementation.

Member Avatar for verruckt24
0
166
Member Avatar for tmoney7566

firstNumber and secondNumber are Strings (I am pretty sure you know this). since they are strings, == will only evaluate true if they are the same object. you want to use .equals to compare Strings in the way you intend.

Member Avatar for tmoney7566
0
138
Member Avatar for petike

i don't think it matters greatly how you set out your XML as long as you can parse it correctly. in saying that, i would probably avoid appending the numbers on "row" / "column" and instead just use the natural ordering to produce your level layout. if you do this, …

Member Avatar for sillyboy
0
97
Member Avatar for spec80

what sort of errors do you get, or nothing happens at all? i have a feeling that your ButtonListener is not using the objects created in Away (the ones you want it to, anyway).

Member Avatar for spec80
0
124
Member Avatar for theod1987

you are looking in the wrong place, it is falling over in the array_sum method. can you paste it?

Member Avatar for theod1987
0
5K
Member Avatar for millsy007
Member Avatar for ntredame

how else were you thinking of doing this? of course you can do what you have explained. imagine if buttons didn't have "custom" events...

Member Avatar for stephen84s
0
135
Member Avatar for MarMcD

// call calculateInventory method public static double calculateInventory(product[]) this is not how you "call" a method, this is a method definition.

Member Avatar for sillyboy
0
124
Member Avatar for StarZ
Member Avatar for devonte15

use code tags, and can you actually copy the section of the stack trace. if it is repeated, 1 instance is enough.

Member Avatar for verruckt24
0
209
Member Avatar for olgratefuldead

you are passing by value, therefore any changes made to "output" are only made within the method.

Member Avatar for olgratefuldead
0
217
Member Avatar for oldwolves

while I don't know specifically about this issue, you may be able to get rid of it by updating all of your software (if it is actually a bug it should get fixed eventually).

Member Avatar for oldwolves
0
186
Member Avatar for l_03
Member Avatar for sillyboy
0
103
Member Avatar for vartikachandra
Member Avatar for buug
Member Avatar for sillyboy
0
94
Member Avatar for cutieams

you want to make your css adaptable to the different screen resolutions. so, start working with percentages so the browsers can align your elements, avoid using pixels. there are endless css issues you may run into, so if you need further help, list specific issues you get.

Member Avatar for MidiMagic
0
81
Member Avatar for lucstrato

your variable i is undefined at those lines the compiler is pointing out. perhaps your "for" loop is supposed to encompass more than 1 statement.

Member Avatar for lucstrato
0
77
Member Avatar for jo8594

It just keeps getting the last "lowest" number. What does that mean? From what I see there are no issues...

Member Avatar for sillyboy
0
132
Member Avatar for Stefano Mtangoo
Member Avatar for nanna
Member Avatar for dalefish
Member Avatar for Johannady2
Member Avatar for stephdon

Formatting the player and it removing essential files seems a little silly, but a possibility. It may also be an encoding issue, maybe you need to encode the audio as something other than mp3.

Member Avatar for Jen0608
0
130
Member Avatar for poliy12

a "back end" generally refers to a database. For anything dynamic, (a on-line store is dynamic), you will most certainly need a database.

Member Avatar for poliy12
0
102
Member Avatar for mohamed1
Member Avatar for transplantedNYr

all -d should do, is put the compiled classed in your specified directory. i am not exactly sure what you are having issues with, if you can be more specific, perhaps we can be of more help. a classnotfound will be the result of the specific class missing from your …

Member Avatar for transplantedNYr
0
135
Member Avatar for elangobala

This problem is most likely related more with your HTML & CSS than the actual JSP code.

Member Avatar for peter_budo
0
119
Member Avatar for guatemalagirl

for ( grades = 1; grades >= 1; grades++) so you initialise grades to 1. (why? considering you ask the user for grades... you are overwriting what you want to know) you want to loop if grades is greater or equal to 1. each loop you want to increment grades …

Member Avatar for verruckt24
0
297
Member Avatar for BrianK123

applets are generally run embedded in a web page, so for security reasons, it won't give you access to the client's filesystem. there may be a workaround, but this type of thing wouldn't be a good idea.

Member Avatar for sillyboy
0
111
Member Avatar for jdbax
Member Avatar for sillyboy
0
53
Member Avatar for BrianK123

nice work, althought I wouldn't think that would cause a infinite, more likely an ArrayIndexOutOfBounds... anyway, it's solved.

Member Avatar for verruckt24
0
172
Member Avatar for sudharsannr

what does "but in windows it works normal" mean? i am going to assume you have 2 computers and "windows" refers to one of them. make sure you have the boot sequence set up so that the cd-rom is ahead of the hdd in the sequence, otherwise you will get …

Member Avatar for hughv
0
165
Member Avatar for smileywaveygirl

How is the wireless network configured? Is it going through a router or through a computer? If the DNS is not correct, perhaps you are going through a computer and you need to put that computer's IP address as the DNS...

Member Avatar for Stylish
0
317
Member Avatar for rapture

I think there are a few options, DecimalFormat, BigDecimal, or just implement a simple algorithm to limit it for you. [url]http://forums.sun.com/thread.jspa?threadID=475442[/url]

Member Avatar for sillyboy
0
112
Member Avatar for oskido2010

you realise this will be visible in the source? why not make use of some kinda backend, even if it is just a simply php script.

Member Avatar for mschroeder
0
89

The End.