Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Rhinorhino on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: Miros
  • Content: Threads
  • Order by date
  1. Miros

    Photoshop not responding....

    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...
  2. Miros

    Jsormdb

    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?
  3. Miros

    Changing a value

    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.
  4. Miros

    Folder Full of XML Files using same schema

    Each file looks like this: <MaxisPackages xmlns="./MaxisPackages.xsd"> <fileInfo> <fileLocation>C:\Program Files\EA GAMES\The Sims 2 Family Fun Stuff\TSData\Res\Objects\objects.package</fileLocation> </fileInfo> <fileInfo> <fileLocation>C:\Program Files\EA GAMES\The Sims 2 Family...
  5. Miros

    Vista vs. RegCreateKeyEx (non-MFC app)

    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 ) {...
  6. Miros

    XML with cross references

    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 />...
  7. Miros

    XSL: need to match by attribute

    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/>...
  8. Miros

    dialog.show is depreciated; what replaced it?

    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...
  9. Miros

    How to fix

    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...
  10. Miros

    JTable Sorting

    Could someone point me to some sample code which allows to user to sort a JTable?
  11. Miros

    Progress Dialog

    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...
  12. Miros

    ArrayList add and get problems.

    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...
  13. Miros

    Initial location for Folder Selection Dialog

    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?
  14. Miros

    Purchasing Pdox 10

    A friend of mine lost my Paradox 9 CD, so he's supposed to replace it with Paradox 10. Where can I get it cheap? Rose/Miros
  15. Miros

    strings.h

    My company does cross platform development. The Mac and Unix platforms use a header file called &quot;strings.h&quot; 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...
  16. Miros

    Scrolling panel

    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
  17. Miros

    Rich Text Edit-like control

    Is there a Java control similar to the &quot;rich edit&quot; 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...
  18. Miros

    &quot;Rich Edit&quot; like control

    Is there a Java control similar to the &quot;rich edit&quot; 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
  19. Miros

    Copying records via tcursor

    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...
  20. Miros

    Validating against a Schema

    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...

Part and Inventory Search

Back
Top