Ask Experts Questions for FREE Help !
Ask

Search:

Type: Posts; User: jstrike

Search: Search took 0.01 seconds.

  1. Question: Java ask forum

    by jstrike
    Answers
    1
    Views
    485

    You don't say what version of java you're using,...

    You don't say what version of java you're using, I would recommend 7 if you can. What I would do is create a subclass of ArrayList as follows:

    public class MyArrayList<E extends Object> extends...
  2. Question: Inheritance tax

    by jstrike
    Answers
    1
    Views
    313

    Inheritance tax

    My wife's grandmother recently passed away in IL. We live in WI and received some money from her estate. I know that WI has no inheritance tax but because the money is coming from IL, is there...
  3. You might have a stuck key. Tap on each of the...

    You might have a stuck key. Tap on each of the keys a few times and try to see if one of them is sticking. I'd recommend starting with the non-alpha keys like shift, alt, etc...

    HTH
  4. Question: Attorney fees

    by jstrike
    Answers
    9
    Views
    721

    Sorry, I wasn't clear... the attorney's office is...

    Sorry, I wasn't clear... the attorney's office is coming after us for their fees. This was a bill my wife and I received in the mail, they are not suing us. So even though he was 17 and tried as an...
  5. Question: Attorney fees

    by jstrike
    Answers
    9
    Views
    721

    Attorney fees

    My 17yo son got caught shoplifting... this was his first time in any type of trouble like this. He was charged as an adult in court and managed to get it reduced to littering. He has a court fine...
  6. Answers
    2
    Views
    667

    Are you thinking of Paycheck with Ben Affleck? I...

    Are you thinking of Paycheck with Ben Affleck? I think it's from 2003.
  7. Answers
    1
    Views
    1,164

    Browser loses connection

    I installed Win7 Pro on my wife's PC last week. Every once in awhile IE seems to lose it's ability to connect to the internet. I can still connect to other PC's and the file server shares. I can...
  8. You need to submit the form to a servlet to get...

    You need to submit the form to a servlet to get the values. Right now you're posting it to an html page that has an applet running on it... that won't work.
  9. Question: Tire sizes

    by jstrike
    Answers
    1
    Views
    459

    Tire sizes

    I have a '99 Pontiac Grand Prix with P225 60r16 tires, I have a set of P235 60r16 tires that were given to me by my Dad. I understand the speed will be different (60mph would be 61.1 with the bigger...
  10. This should do the trick but you'll need to fully...

    This should do the trick but you'll need to fully test it...

    <script>
    function isImageAvailable(imgPath) {
    var img = new Image();
    img.src=imgPath;
    return img.height>0;
    }
  11. Answers
    2
    Views
    1,714

    Most hosting providers are not going to offer...

    Most hosting providers are not going to offer this right out of the box simply because they're not in the business of custom application development. Most of the providers will offer you access to a...
  12. Answers
    3
    Views
    7,472

    Try something like this: Process process =...

    Try something like this:
    Process process = Runtime.getRuntime().exec("net stop myservice");

    That will stop myservice on the computer that is running the java code. If it's on the same machine...
  13. Question: Background Color

    by jstrike
    Answers
    1
    Views
    862

    Solved this by creating a semi-transparent png...

    Solved this by creating a semi-transparent png and setting that as the background image to the row.
  14. Answers
    4
    Views
    675

    Perito gave a good answer as to why it's...

    Perito gave a good answer as to why it's happening.

    You can use the BigDecimal class to round the number but there's no way you can prevent it from happening. (Don't use Math.round)
  15. Question: Background Color

    by jstrike
    Answers
    1
    Views
    862

    Background Color

    I have a page with a background image on it. On the page there's a table with some tabular data that takes up about 95% of the screen. I have the background color of every other row set so it's...
  16. Answers
    2
    Views
    429

    You can also modify the Internet Explorer short...

    You can also modify the Internet Explorer short cut. Right click on it and select properties. Next to Run: select Maximized.
  17. Answers
    1
    Views
    2,559

    There's really no special coding necessary......

    There's really no special coding necessary... write the Java code as you normally would, if you have multiple classes you will want to jar them up. If you need to reference outside jar files you...
  18. Answers
    3
    Views
    3,338

    I used Delphi on a small project a long time ago,...

    I used Delphi on a small project a long time ago, (1997) perhaps it's changed, but Delphi is a client/server rad tool that allows you to build thick client (Windows) applications. Because it's thick...
  19. Question: TV has blue haze

    by jstrike
    Answers
    3
    Views
    1,015

    I have the 60" as well, it started in the lower...

    I have the 60" as well, it started in the lower right corner and spread up through the bottom and middle of the screen. It moved slow but it got to the point in a few months where it was...
  20. Answers
    2
    Views
    955

    Google for java decompiler. The results are not...

    Google for java decompiler. The results are not always 100% so it's something you can just recompile. Be aware that you may also be violating a licensing agreement if you don't own the source code.
  21. Read the data from the database into beans, place...

    Read the data from the database into beans, place the beans in the session. When you change pages read the beans out of the session and display the ones you need.
  22. Question: TV has blue haze

    by jstrike
    Answers
    3
    Views
    1,015

    I had the same thing happen to mine last year. ...

    I had the same thing happen to mine last year. It was the lighting board. (or something like that) I think it was around $700 to repair. If that's indeed what it is, it's not something you can do...
  23. Answers
    3
    Views
    1,288

    You might be able to use a case statement in the...

    You might be able to use a case statement in the join.

    Select... whatever...
    from table1 as a
    join table2 as b on a.field1 = case when <condition> then b.field1 when<condition> then b.field2 end
  24. Question: Java?

    by jstrike
    Answers
    1
    Views
    619

    Normally I don't help with homework but since you...

    Normally I don't help with homework but since you didn't ask for the code like most people do, here's how I would architect this:

    Define a base class that has two arrays, one for the card number...
  25. Answers
    1
    Views
    704

    Make sure that servlet-api.jar in the Tomcat lib...

    Make sure that servlet-api.jar in the Tomcat lib folder is in your class path.
  26. Answers
    4
    Views
    677

    Not sure if this will work or not... Open up...

    Not sure if this will work or not...
    Open up Network Connections, right click on one of the nic's and select Bridge Connections.
  27. Answers
    18
    Views
    1,400

    Oracle licensing makes MS look like Walmart. ...

    Oracle licensing makes MS look like Walmart. Since they bought BEA they phased out the version of WebLogic we're using and our licensing is going up from about 2K to over 30K per server. 30k x 11...
  28. Answers
    1
    Views
    664

    String myString = Keyboard.readInput(); It's...

    String myString = Keyboard.readInput();

    It's most likely looking for a class called Keyboard and can't find it. I don't see an import for it and afaik, it's not part of the java 6 sdk.
  29. Answers
    2
    Views
    2,866

    Not easily. You might want to try something like...

    Not easily.
    You might want to try something like Active Widgets
  30. Answers
    1
    Views
    649

    A static variable gets defined at the class...

    A static variable gets defined at the class level, not at the method level.
  31. Question: IE browser

    by jstrike
    Answers
    9
    Views
    948

    This sounds like a virus I've seen before. If...

    This sounds like a virus I've seen before. If you need to download AV software do it on another computer and burn it to a CD or put it on a USB drive then install it on your computer.
    You can also...
  32. Give the window a name and use the same name...

    Give the window a name and use the same name every time you opent he report. It will automatically overwrite the old window.

    Open(url,"report");
  33. That should work as long as you don't have a...

    That should work as long as you don't have a space in the cell...
    Try this:
    If Trim(Range("m1").Text) = "" Then
    MsgBox ("Number of Units is blank")
    End If
  34. Answers
    1
    Views
    1,020

    You would need to code something in JavaScript to...

    You would need to code something in JavaScript to close the window but since the jsp window was not opened via JavaScript it's going to be tough to close it. (This is a JavaScript security feature) ...
  35. Answers
    10
    Views
    1,398

    ... The Java developer bites his tongue. ;)

    ... The Java developer bites his tongue. ;)
  36. Answers
    10
    Views
    1,398

    There's a lot of good/cheap hosting providers out...

    There's a lot of good/cheap hosting providers out there.
    Here's one that RickJ recommends: Affordable Websites
    Here's one that I've used several times in the past with great success: Cheapest...
  37. Answers
    6
    Views
    892

    There's tons of posts on here about how to speed...

    There's tons of posts on here about how to speed up a slow computer... here's my .02 worth. The usual disclaimers about backing stuff up before you do anything apply here...

    1. Remove any...
  38. Answers
    3
    Views
    870

    For those entries that have file missing you can...

    For those entries that have file missing you can use Hijack This to remove the entry. For those that you're not sure of you can go into IE7 and disable them to see what happens but based on those...
  39. Answers
    3
    Views
    3,382

    I've had a similar experience with hotmail and...

    I've had a similar experience with hotmail and file attachments. I have files in a folder right now from 2004 that had attachments and they're gone. It's a free service so you get what you pay for.
  40. Answers
    6
    Views
    892

    The problem with the hosts file is that * does...

    The problem with the hosts file is that * does not work.
    The entry:
    127.0.0.1 myspace.com
    Will only block myspace.com, not MySpace or mail.myspace.com so you will have to put an additional entry...
  41. Answers
    5
    Views
    420

    http://www.missedmovies.com Search for Thunder...

    http://www.missedmovies.com
    Search for Thunder Alley.
    FYI: I'm not sure if this site is on the up and up or not...
  42. Answers
    5
    Views
    420

    That's not Crossroads. Ralph Machio is the...

    That's not Crossroads.
    Ralph Machio is the Karate Kid start that you're thinking of.
  43. Answers
    5
    Views
    3,529

    I believe it's just the hot water heater, the...

    I believe it's just the hot water heater, the furnace vents out the side of the house and I'm pretty sure the fireplace on the first floor uses the other chimney.
  44. Answers
    5
    Views
    3,529

    The paint is Behr Basement and Masonry waterproof...

    The paint is Behr Basement and Masonry waterproof paint. It's comparable to UGL's Dryloc but its also mildew resistant. (and costs more) I've always like Behr paints so I gave it a shot.
    Based on...
  45. *batteries not included (1987)...

    *batteries not included (1987)
  46. Answers
    5
    Views
    3,529

    Trying to fix leaky basement walls

    I've had a problem with water coming into my basement (walls are cinder block) that's slowing been getting worse since we bought the house 7 years ago. The outside is pretty good, the ground is...
  47. Answers
    2
    Views
    2,021

    You cannot change that value in JavaScript, as...

    You cannot change that value in JavaScript, as kannanphp suggested you need to set it manually.
  48. Question: Formatting error

    by jstrike
    Answers
    1
    Views
    589

    The statement is correct and when I ran it on my...

    The statement is correct and when I ran it on my machine I got the correct result.
    What OS are you running this on?
    What are you using to compile?
    I would recommend you place:...
  49. Question: Block mypage

    by jstrike
    Answers
    1
    Views
    458

    I'm going to assume that you're running...

    I'm going to assume that you're running Windows... There's two ways you can do this.
    1. You can add an entry to your hosts file. Your hosts file is in c:\windows\system32\drivers\etc. Open it with...
  50. Answers
    12
    Views
    1,955

    The question is poorly worded so it's hard to...

    The question is poorly worded so it's hard to understand
Results 1 to 50 of 421