I'm using PhotoShop 5.5 (can't afford upgrade).
When I start the program, the main window with the gray background appears, but none of the tool bars, palettes, etc. show, even after letting it sit for a while.
I remember this happening before, and the fix was to delete one settings file, but...
A friend of mine is interested in working with this package and I'm not having much luck figuring out where I need to start.
Can anyone give me pointers?
My XML input file has tags similar to the following:
<tag>Name [345:456]</tag>
<tag>Name1 Name2 [1345:5456]</tag>
I'd like my output to look like this:
Name,345,456
Name1 Name2,1345,5456
I assume I need to work with value-of(), but have no idea where to start.
I have a program that works fine in Win98 and WinXP. Vista apparently will not let my program modify the registry.
1) My program needs to save the path to the files it will work with in the registry.
long GetOrCreateRegistryInfoInt( char *keyname, long defaultvalue, long &keyval )
{...
In my XML input file (output from another program over which I have no control), I have package nodes that look like this:
<packages ptype="ClothingMesh" isOrphan="false" isBroken="false" ptype2="3">
<filename>MESH_afTop_34Dn_Tshirt.package</filename>
<title />
<description />...
XML snippet:
<packages ptype="Skintone" isOrphan="false" isBroken="false" ptype2="2">
I need to find all the "package" elements with attribute ptype=Skintone and ignore the others.
My current attempt is:
<xsl:template match="package[@ptype = 'Skintone']">
<xsl:apply-templates/>...
I have a cancel dialog that only displays when a thread is running. Apparently the JDialog.show() method is depreciated. What do I use in place of it? setVisible doesn't work...
public void threadwrapper( )
{
Object[] options = { "Cancel" } ;
JOptionPane optionPane = new...
My program is working nicely, thank you everyone.
However, being a total maniac, I'm trying to jam several thousand rows into a JTable. Naturally, after about 1100, it runs out of memory.
I think it's happening when the JTable tries to do the insert, not when I add the row class to my...
I'm sure someone's asked this before, but I can't find it.
I have a long, time-consuming process. I want to put up a dialog which will a) block access to the controls in the main window, b) allow users to click Cancel, and c) allow my process to run smoothly.
In VC++, this was called a...
I have a class I defined, MyObject, and I want to create an ArrayList of this class. The add works fine:
data.add( new myobject( ) ) ;
But when I try to get this way:
MyObject mo = data.get( row ) ;
I get a compile time "incompatible types" error.
Does anyone know how to...
Which field in the structure that is passed into the Folder Selection Dialog needs to be filled in so the dialog will display that path when it first opens?
My company does cross platform development.
The Mac and Unix platforms use a header file called "strings.h" which I can't find anywhere on my hard drive. Allegedly, all compilers are supposed to have this header file.
I'm using VC++ 6.0, and have applied some of the service packs...
I'd like to have a panel in a Java application or applet which has other controls inside it AND a scroll bar which causes the other controls to scroll up and down inside the panel.
I tried ScrollPanel, but it doesn't allow me to add controls to it. Any advice?
Rosalie
Is there a Java control similar to the "rich edit" control which will display and edit XML data containing tags like <bold> and </bold>?
I'm thinking something similar to the Tecumseh Group Mark-up Language renderer... or is that strictly an HTML generator...
Is there a Java control similar to the "rich edit" control which will display and edit formatted text (bold, underline, etc.)?
I'm thinking something similar to the Tecumseh Group Mark-up Language renderer... or is that strictly an HTML generator?
Rose/Miros
I have a script which gets a value from a field, opens a tcursor associated with one of the tables on the main form, opens a dialog style form, uses the value as a key on the tcursor, and displays the appropriate record in the form for modification (users are not allowed to change the key field...
Now that the schema spec is almost put to bed, does anyone know of a freeware/open source package that can validate an XML file against a Schema file?
Other than VBasic (I have access to a Linux server, but test under Win95 for ease of debugging), I'm not too fussy about most other...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.