|
I know it's something silly, but for some reason Jython refuses to find javax.swing. I'm using Java 1.6.0_11. This is my start-up script:
@echo off "%JAVA_HOME%\bin\java" -Xmx1024M -classpath ".;c:\Projects\Jython2.5.1\jython.jar" org.python.util.jython...
Started by MikeHoss on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
I'm using Java 1.6.0_11
No, you're using
[Java HotSpot(TM) Client VM (Sun Microsystems Inc.)] on java1.6.0_10
What happens if you delete the cachedir from the Jython distribution directory, and try again?
Also, why are you explicitly setting the classpath... .
|
|
My Windows Server 2003 Std server refuses to server ASP.NET content. It serves regular html just fine but anything .net, even a one line html file with an ASPX extention fails silently.
Things I've tried:
Nothing in the event log or IIS WWW logs when ...
Started by Michael Haren on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at serverfault):
I've run into this exact issue several times, and every time, the solution was to:
go to the Control... .
Then click on the ASP.NET Extension in the right pane and click Allow button .
Open the IIS manager, click on Web Service Extensions folder in left pane .
|
|
Is there any foods that you refuse to eat ever?
Started by Camille on
, 25 posts
by 25 people.
Answer Snippets (Read the full thread at yahoo):
Source(s): Vegetarian....
That is what Kim chi smells like Yes, I refuse to eat foods/dishes to anything else.
Oh hell old bananas for about 36 hours.
I absolutely refuse to eat is :
Fried Korean intestines and organs, in reddish orange sauce.
|
Ask your Facebook Friends
|
The firm where I work has programmers who still don't seem to understand the importance of indentation and write all the code aligned to left margin. What arguments can I put to convince them of the importance of indentation?
Started by Phulore R - Profile 2 on
, 31 posts
by 31 people.
Answer Snippets (Read the full thread at stackoverflow):
People will moan and complain at first but will get used to it eventually,
You can be mean and do something like this:
class my_class (blaMe1,blaMe... .
As part of your code review, you should ensure that it follows a code style .
Implement a code style policy.
|
|
I am pulling a set of numbers from a MySQL database and am trying to do some simple math on them to calculate a total price to put into an invoice, but PHP isn't cooperating. I thought it might be a type-coercion issue, so I tried adding some intval and...
Started by tj111 on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
|
|
Hi this is my second post (and second week programming, ever) so apologies in advance.
I have a list of checkboxes that represent different search filters that I want passed to params. For example, if this were a restaurant search, I would want my users...
Started by brett1211 on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Then you can alert() the value to debug or use console... .
At that point you will need to read in what is checked from the ID or VALUE attribute .
I'm thinking what you're wanting to do is on each click you'll need to test the 'checked' state of the checkbox .
|
|
I am having problem running my Instruments on my iPhone app, below is the message I got. Any idea what's causing this and what I can do?
Started by Boon on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Recently installed snow leopard and....
I'm having the exact same problem.
Assuming that your Xcode/Mac OS X installation is not compromised in some fashion, one of the few reasons that might happen is if you failed to authenticate for debugging purposes .
|
|
I'm trying to write simple Emacs function to convert ids between C style ones and camelCase ones (i.e. c_style <-> cStyle). But for some reason, Emacs built in downcase function leaves the word intact. M-x downcase-word works fine so I completely...
Started by vava on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Otherwise maybe capitalize....
From the documentation:
If second arg fixedcase is non-nil, do not alter case of replacement text .
Your problem is the second argument to replace-match.
I think you need the second arg of replace-match to be t instead of nil .
|
|
Hey guys,
I have a swf with four frames. The first frame loads an external class that acts as traffic controller - looks at the root flashvars being passed in and redirects to frame 2, 3, or 4.
Frame 2 is a basic login screen. There's 5 layers - 2 background...
Started by thekevinscott on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Hope it works!
Sorry to leave this outstanding - what ... .
It happened once with me in a similar case and that was the solution .
Try combining all visual elements on those layers into one movieclip, and place that movie clip in a layer below the actions .
|
|
I've create a view in MySQL which corresponds to some reports I'm generating (sums grouped by month, year with a roll up). The view has 3 columns (year, month, total). View/Table name is "report_monthly". I know I can use raw sql via connection().select...
Started by basszero on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Make sure you have an id column in the view, which ... .
The file name and the class name have to be the same, so your file needs to be called monthly_report.rb .
Unless I'm mistaken, I don't think Rails lets you base an ActiveRecord model on a SQL view .
|