Converting an include filename prior to including

Hi,
I have several include files that have the .shtml extension
in the filename. The .shtml files, however, only contain simple
html. I need to use the shtml file extension because of a
requirement from my host. Long story.
Anyway, I use the following entry for the include in my
news.php file: <?php include('franchise_header.shtml'); ?>
When the news.php file is uploaded to the server and
processed, php finds the ***.shtml file and wants to process it as
a SSI file. Once that happens, I get errors. What I need to achieve
is to get php to see the file as 'franchise_header.txt'. Once the
includes have the .txt file extension everything works fine since
php see the txt extension and drops the html into the area I need
it without further processing. But I don't want to physically
change the file names on the includes.
***Question: Is there a way, through php, to take the .shtml
file extension and convert it to .txt dynamically and then run the
include command after that?
thanks!!! I couldn't find any information via web
research.

Server-side includes require at least two files -
1. The parent file - the one that calls the include.
2. The include file - the one being included.
The parent file MUST be named with an extension that triggers
a server
parse. If the include is an ordinary HTML include, that
extension can be
*.shtm(l), or *.asp, or, if your host has enabled server
parsing for all
file extensions, then it doesn't matter what you name it.
The include file has no naming restriction - you could name
it
'foo.monkeybutt' if you wanted, and it would still work.
Now that we have that out of the way, does this mean that
your host wants
you to name the include file with this extension?
> I need to use the shtml
> file extension because of a requirement from my host.
If so, the host is a moron. Otherwise, I am sure you have
misinterpreted
the host's requirements.
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.dreamweavermx-templates.com
- Template Triage!
http://www.projectseven.com/go
- DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs,
Tutorials & Resources
http://www.macromedia.com/support/search/
- Macromedia (MM) Technotes
==================
"proxyfilter" <[email protected]> wrote in
message
news:[email protected]...
> Hi,
>
> I have several include files that have the .shtml
extension in the
> filename.
> The .shtml files, however, only contain simple html. I
need to use the
> shtml
> file extension because of a requirement from my host.
Long story.
>
> Anyway, I use the following entry for the include in my
news.php file:
> <?php
> include('franchise_header.shtml'); ?>
>
> When the news.php file is uploaded to the server and
processed, php finds
> the
> ***.shtml file and wants to process it as a SSI file.
Once that happens,
> I get
> errors. What I need to achieve is to get php to see the
file as
> 'franchise_header.txt'. Once the includes have the .txt
file extension
> everything works fine since php see the txt extension
and drops the html
> into
> the area I need it without further processing. But I
don't want to
> physically
> change the file names on the includes.
>
> ***Question: Is there a way, through php, to take the
.shtml file
> extension
> and convert it to .txt dynamically and then run the
include command after
> that?
>
> thanks!!! I couldn't find any information via web
research.
>

Similar Messages

  • Adobe PDF converter does not convert and include the videos from websites when completed

    Have just recently upgraded to Acrobat Pro X and have attempted to convert several on-line websites to PDF's.  In each and every case, the videos were not included in the final conversion to PDF.
    Not sure if there are specific settings that I need to address or if I am doing something wrong here.   Have been told by colleagues it should be a simple click to achieve these results and that Acrobat X does convert and include videos.   These videos are in Adobe Flash Player format 11.1.102.63.   Not sure where to go from here, any assistance greatly appreciated!

    In the IE toolbar, under the PDF Convert button, select Preferences. Click on the Conversion Setting button under the General tab and make sure that "Embed Multimedia Content when possible" is selected.

  • Help with Illustrator Script! Batch convert files including subfolders - please help! :)

    Hello,
    I honestly have tried reading the other answers and researching to try to solve this problem.  I'm sorry for my ignorance in this area.  Please help!!!
    I'm trying to make a script (for Illustrator CS2) that will batch convert several files to PNG files.  The source folder has several subfolders and I need the script to go into the subfolders and convert those files as well.  The destination directory should be an entirely separate folder but with the same hierarchy as the original source folder.
    The script I have been using (that converts just as I need) is below.  The only problem is it doesn't do the subfolders.
    Any help would be so amazingly appreciated!
    ADOBE SYSTEMS INCORPORATED
    Copyright 2005 Adobe Systems Incorporated
    All Rights Reserved
    NOTICE:  Adobe permits you to use, modify, and
    distribute this file in accordance with the terms
    of the Adobe license agreement accompanying it. 
    If you have received this file from a source
    other than Adobe, then your use, modification,
    or distribution of it requires the prior
    written permission of Adobe.
    ExportDocsAsPNG24.jsx
    DESCRIPTION
    This sample gets files specified by the user from the
    selected folder and batch processes them and saves them
    as PNGs in the user desired destination with the same
    file name.
    // Main Code [Execution of script begins here]
    // uncomment to suppress Illustrator warning dialogs
    // app.userInteractionLevel =
    UserInteractionLevel.DONTDISPLAYALERTS;
    var destFolder, sourceFolder, files, fileType,
    sourceDoc, targetFile, pngExportOpts;
    // Select the source folder.
    sourceFolder = Folder.selectDialog( 'Select the folder
    with Illustrator files you want to convert to PNG', '~'
    // If a valid folder is selected
    if ( sourceFolder != null )
        files = new Array();
        fileType = prompt( 'Select type of Illustrator files
    to you want to process. Eg: *.ai', ' ' );
        // Get all files matching the pattern
        files = sourceFolder.getFiles( fileType );
        if ( files.length > 0 )
            // Get the destination to save the files
            destFolder = Folder.selectDialog( 'Select the
    folder where you want to save the converted PNG files.',
    '~' );
            for ( i = 0; i < files.length; i++ )
                sourceDoc = app.open(files[i]); // returns
    the document object
                // Call function getNewName to get the name
    and file to save the pdf
                targetFile = getNewName();
                // Call function getPNGOptions get the
    PNGExportOptions for the files
                pngExportOpts = getPNGOptions();
                // Export as PNG
                sourceDoc.exportFile( targetFile,
    ExportType.PNG24, pngExportOpts );
                sourceDoc.close
    (SaveOptions.DONOTSAVECHANGES);
            alert( 'Files are saved as PNG in ' + destFolder
        else
            alert( 'No matching files found' );
    getNewName: Function to get the new file name. The
    primary
    name is the same as the source file.
    function getNewName()
        var ext, docName, newName, saveInFile, docName;
        docName = sourceDoc.name;
        ext = '.png'; // new extension for png file
        newName = "";
        for ( var i = 0 ; docName[i] != "." ; i++ )
            newName += docName[i];
        newName += ext; // full png name of the file
        // Create a file object to save the png
        saveInFile = new File( destFolder + '/' + newName );
        return saveInFile;
    getPNGOptions: Function to set the PNG saving options of
    the
    files using the PDFSaveOptions object.
    function getPNGOptions()
        // Create the PDFSaveOptions object to set the PDF
    options
        var pngExportOpts = new ExportOptionsPNG24();
        // Setting PNGExportOptions properties. Please see
    the JavaScript Reference
        // for a description of these properties.
        // Add more properties here if you like
        pngExportOpts.antiAliasing = true;
        pngExportOpts.artBoardClipping = true;
        pngExportOpts.horizontalScale = 300.0;
        //pngExportOpts.matte = true;
        //pngExportOpts.matteColor = 0, 0, 0;
        pngExportOpts.saveAsHTML = false;
        pngExportOpts.transparency = true;
        pngExportOpts.verticalScale = 300.0;
        return pngExportOpts;

    You can turn off some of the dialogs with: app.displayDialogs = DialogModes.NO;
    #target photoshop
    if (app.documents.length > 0) {
    //Turn display dialogs off
    app.displayDialogs = DialogModes.NO;
    //=============Find Current Documents path================//
    var CurrentPath = activeDocument.path;
    //=============Establish current documents destination===============//
    var folder1 = Folder(CurrentPath + '/' + 'Flats');
    //=============Check if it exist, if not create it.============//
    if(!folder1.exists) folder1.create();
    //=============Establish current documents file name=========//
    //Current filename without the extension
    var CurrentFileName = app.activeDocument.name.replace(/\.[^\.]+$/, '');
    //=============Modify current file name================//
    var modifiedFileName = CurrentFileName +"Flat.psd";
    //=============Establish save path====================//
    var saveFileCurrentPath = new File(folder1 + '/' + modifiedFileName);
    //=============Flatten document ====================//
    activeDocument.flatten();
    //=============Rotate  document if in 'Landscape'====================//
    var myDocument = app.activeDocument;
    if (myDocument.width > myDocument.height) myDocument.rotateCanvas(90);
    //============Save File=======================//
    psdSaveOptions = new PhotoshopSaveOptions();
    activeDocument.saveAs(saveFileCurrentPath, psdSaveOptions, true, Extension.LOWERCASE);
    //Close Document
    app.activeDocument.close(SaveOptions.DONOTSAVECHANGES);

  • How Can I convert or include a Transaction to ABAP web dynpro

    Hey,
    Im new to web dynpro, and I have followed sap web dynpro tutorials step by step but  I couldnt find a way to create an interface the same way I create screens. Can anyone tell me how do I design an interface in web dynpro or is there a way to convert my transaction to an ABAP web dynpro application?
    Thanks.

    No there is no way to convert your gui based screens to web dynpro, you have to design them in web dynpro. And the design of WD is not like normal screen painter(SE51).
    What I would suggest you is first go thru some basic tutorials, then you will get the idea of UI elements which are used in WD.
    Have a look on this link
    https://www.sdn.sap.com/irj/scn/wiki?path=/display/wdabap/learning+map

  • Convert long .pdf filenames ( 31 char) to take profit of Coverflow

    Hi,
    With the new Cover Flow functionality offered by leopard finder, I need to convert some zip files of pictures (.cbr or .cbz) to pdf documents, to take a glance at my pictures.
    I have done a script to process conversions from folders of jepgs.
    But when I tell to acrobat 8.0 the SAVE function, it doesn't save filew with their long names. Filename are limited to 31 characters (Unicode text and not string).
    Anyone is aware of a solution ?
    TIA
    JLB, Paris, France

    Hello Jean-Louis Bruneel,
    You may try something like this.
    AppleScript's 'POSIX file' object holds data of «class furl» (File URL), which should support long file name. Meanwhile, as far as I know (I may be wrong, though), AppleScript's traditional 'file' object holds data of «class fss » (FSSpec: File Specification), which cannot encode long or Unicode names..
    cf.
    http://developer.apple.com/technotes/tn/tn2022.html
    -- SAMPLE CODE (NOT TESTED)
    set fp to (path to "desk" as Unicode text) & "some very very very very very very very loooooooooooooooooong name.pdf"
    tell application "Acrobat 8.0"
    save document 1 to POSIX file (POSIX path of fp)
    end tell
    -- END OF SAMPLE CODE
    Hope this may be of some help,
    Hiroto
      Mac OS 9.1.x  

  • Convert jpeg to tiff prior to adjustments?

    Assuming my end product will be an 8-bit tiff sent to a lab for a high-quality inkjet print (the lab has asked for 8-bit tiffs in AdobeRGB), and assuming I start with a jpeg imported to Aperture from a point-and-shoot (i.e., no RAW available), is there any advantage to creating the tiff "right away" (i.e., from the original jpeg) before working on any adjustments vs. doing the adjustments on the jpeg and exporting as the tiff? If so, would I just export the jpeg as a tiff proir to making adjustmentns and bring it back for the editing? Also, does a jpeg's lossy compression have anything to do repeated adjustments on the jpeg in Aperture? (I am aware that there is already compression by the camera in making the jpeg, but the point-and-shoot has conveniences for some of my needs that my DSLR doesn't, so I don't mind paying that price).

    No, it does not.  You can't re-create information that is lost.  When the information the camera gathered was saved to a file, some of it was lost because of the JPG file format.  Converting to TIFF won't bring back the lost information.
    Aperture never loses Image information.  When you export, you create new files.  Depending on the specifications you select, those new files will contain the equivalent of "very little information" up to "as much information as I started with".  Converting from JPG to TIFF doesn't allow you to start with any more information, and, again, Aperture never loses it, so there is no reason to convert at any point from the time your camera creates the JPG file until you create a new file by exporting from Aperture.
    HTH,
    --Kirby.

  • Converting URL to filename

    Hi all. I have the following piece of code:
    String sFilename = "";
    URL u = ClassLoader.getSystemResource("duncan.txt");
    if (u != null)
      sFilename = new File(u.getFile()).getPath();
    }The intention is that it finds this file, and the gets the filename, which is subsequently passed into a native function.
    In Windows this works fine, for example after the code is run, sFilename has the value 'C:\test\duncan.txt' which is great and exactly what I want. However, on Unix sFilename has the value '/FILE0/+/qaworld.ini' which is of no use to me (I was expecting something like /home/test/duncan.txt). What do I have to do to get the filename in the correct format?? Any help would be appreciated. Cheers,
    dUNC

    You got it to work?? Hmmm...wouldn't work for me on Solaris at all. Maybe I'm doing something else wrong. Or maybe it's a JDK issue? Interesting...
    I can't use your alternative method as I want the file to be located somewhere on the CLASSPATH and then for the code to find the location. Your code would mean that the file had to be in the same location as the program, which it won't be.
    Thanks for your help,
    dUNC

  • Music Manager - Cannot save filenames prior to pho...

    I have a 6288 with 1GB, using WINXP SP2.
    The deal is that I am ripping CDs that are audio but not popular music CDs. Therefore the online CD updater is completely useless for me. So what I want to do is to rip these CDs and put them on my phone. No big deal.
    The problem is that each time I put the tracks in My Collection they are named 02-,03- etc...but nothing else. So I change the file names in Music Manager and upload them to my phone. On the playlist these names show, in the filemanager they don't. The files are still called 02,03 etc...
    This doesn't cause a problem until I rip the next CD which has all the same track names. So when I upload them they want to overwrite the existing tracks. I went and manually changed the file names on my pc before upload but then Music Manager wouldn't upload them. So I clicked and dragged these new files onto the phone through File Manager. They show up in file manager but the music player won't play them. They simply do not show up on the playlist.
    Solution anyone?
    Thanks in advance

    Thanks Pedro,
    I have seen this article. Since the error occurs mostly when I am just in itunes adding music or listening, I didn't do any of the things that were mentioned. This time I shut off Windows Firewall and Turned Off Norton Anti Virus. The problem still occurred.
    I have a workaround for adding files that is working sort of:
    When adding files they must finish adding in under 1 minute.
    At 1:04 to 1:43 the -50 error occurs. If I close the error and then close itunes immediately, 25-27 seconds later it will save the changes.
    I then reopen itunes and have access with my updated library until the error occurs again.
    Going to the itunes store then coming back to the library whether I buy anything or not will generate an error. I buy my digital music from Amazon now because of this.
    I don't think that this problem will ever be fixed until Apple dedicates the necessary resources to fix this. It is a pervavsive issue that has been going on for years.

  • #include vs import

    I'm trying move towards a more oop approach in my coding but
    often wonder how far to go. My sites are entirely in Flash and load
    all the initial .swfs in sequence behind a progress bar until the
    home page can go active, after that the loading sequence continues
    behind the scenes until the whole site is loaded. I've cleaned up
    the code for this loading sequence into a set of functions with a
    single initiating call and put it in an .as file which I #include.
    Having gone that far it would be fairly simple to convert this to a
    class but apart from being "the right thing to do", would there be
    any advantage? The code runs only once and I easily re-use it on
    multiple sites by storing the .as file in a common folder.

    Bob,
    > Having gone that far it would be fairly simple to
    convert
    > this to a class but apart from being "the right thing to
    do",
    > would there be any advantage?
    This isn't always true in real life, but in programming,
    "the right
    thing to do" is a flexible concept. In programming, "the
    right thing to do"
    is generally whatever works best for your workflow, or the
    workflow of your
    team. If you don't see the benefit of a certain recommended
    best practice,
    why go to the trouble?
    For example, I like Turkish coffee. The way I prepare it,
    the process
    takes quite a while. I have to grind my beans into,
    essentially, flour. I
    add the "flour" to a special conical pot, along with sugar,
    cardamom, and
    anise, and heat it -- but not to boiling -- until it starts
    foaming. That
    takes about 20 minutes. It's extra work, but I absolutely
    love the stuff.
    Totally worth it. And it helps my workflow. ;)
    In Flash, when coding on the timeline, I put (most) of my
    code in a
    layer dedicated to solely to ActionScript. Why? Because I
    personally find
    it easier to locate my code when it's all in one place. Most
    of the
    developers I know find this practice equally helpful, so it's
    no surprise
    that it's a recommended best practice.
    I personally prefer the dot notation approach to event
    handling in AS2.
    To me, the older approach -- on() and onClipEvent() -- is
    less powerful and
    flexible. (See the link for details.)
    http://www.quip.net/blog/2006/flash/museum-pieces-on-and-onclipevent
    As it turns out, avoding on() and onClipEvent() is nowadays
    considered a
    recommended best practice. It's the "right thing to do" ...
    but plenty of
    folks still use on() and onClipEvent(). At least, they do in
    AS2 (it's not
    possible in AS3). There are rare occasions when I still use
    the old
    approach -- for a quick banner ad, say -- and I do so when
    that's the most
    convenient route.
    In your case, there may not be an immediate advantage to
    converting your
    #include code into a bona fide class. (Of course, there might
    be after all!
    Only you can determine the answer.) The general reason for
    writing
    something as a class is to make it portable; that is,
    conveniently reusable.
    I'm in the middle of a tutorial series at CommunityMX.com
    right now that
    describes a class for wiggling the characters in a string of
    text. I'm sure
    you've seen plenty of nifty text animations in Flash ... the
    ones where,
    say, characters fly in from the side and flip into place.
    This sort of
    animation requires individual text fields for each character,
    so that each
    character (each text field) can be animated individually.
    http://www.communitymx.com/abstract.cfm?cid=ECBF0
    To make this potentially tedious effort reusable, the
    routine that
    creates all those text fields can be wrapped up in a
    function, then called
    from any frame after the function's definition (including the
    frame in which
    it appears). To make things even easier, the function (and
    any related
    functions) can be wrapped up in a class. This reduces the
    amount of code
    that appears in the timeline -- which is also true of your
    #include code --
    and, in the case of the wiggling text, can be as easy to use
    as this:
    var wt:WiggleText = new WiggleText("Here's the string");
    wt.x = 200; // position the wiggle text
    wt.y = 300;
    The WiggleText class works just like the Date class, or the
    Array class,
    or any other convenient "building block" in the ActionScript
    arsenal.
    Writing a class gives you an actual *object* that can be
    manipulated like
    any of the native objects in Flash. If the concepts behind
    your #include
    code can be distilled into a reusable object -- something
    flexible and
    configurable -- then it will probably help your workflow, in
    which case
    writing it as a class is the right thing to do. If not (but
    if you're
    interested in writing classes), then you can leave it as
    #include for the
    time being and experiment with the concept in another venue.
    Until it
    becomes fluent. When class writing makes sense on a gut level
    to you,
    you'll know when the practice is worth it in a given usage
    scenario.
    A chess coach often suggested that I not make a move ...
    until I had
    thought through all the reasons why moving that particular
    piece was a good
    idea. Sure, I could study opening moves ... I could memorize
    which moves
    were among the group of "right things to do," but until I
    understood why --
    and agreed that reason was right for my game -- ... well, you
    get the idea.
    David Stiller
    Co-author, Foundation Flash CS3 for Designers
    http://tinyurl.com/2k29mj
    "Luck is the residue of good design."

  • How to include wildcard in FTP adapter header variable?

    I have two partner links that use FTP adapters. The first one puts a file on the FTP server. It specifies a dynamic outbound file name based upon an input variable and the timestamp in the format "test_BATCHID_yyyyMMddHHmmss.csv" (e.g. test_1011_20050925153059.csv). This part works as expected.
    The second partner link is supposed to pick up a file on the same FTP server. This inbound filename will be based upon the outbound filename and another timestamp in a format such as "originalfilename.yyyyMMddHHmmss.txt" (e.g. test_1011_20050925153059.csv.20050926091541.txt). I have created a Transform action with a mapping to convert the outbound filename and assign it to the inbound header variable. It concatenates the outbound filename and ".*.txt" within the mapping. The inbound header shows up as test_1011_20050925153059.csv.*.txt in the audit, but the process hangs at the receive activity and the file never gets retrieved. Perhaps the asterisk is being interpreted literally?
    Does anyone know how to specify a wildcard character in an xpath expression in a way that it will be interpreted as a true wildcard? Or is there another way to tell the inbound adapter to look for a dynamic filename using wildcards?

    BPEL patch 1 supports performing a synchronous read using a BPEL invoke activity. The following forum post shows how to configure a read adapter manually.
    Re: Help! Three questions about FileAdapater.
    The subsequent patches of JDeveloper allow such an apdater to be configured automatically.
    ps: This adapter can be used to read a single file only i.e. you cannot use a wild character.

  • DNG Converter converts existing dng files to.....dng!

    Today I decided to convert all of the raw files on one hard drive to dng format.   The dng converter has converted about 4,000 of a little over 15,000 raw files so far.  I scrolled through the conversion status list and noticed that the converter is also converting existing dng files into dng files thus creating a duplicate.  Why in the world would a person need, or want to , convert existing dng files to dng files?  I new that I already had some dng files on the hard drive, but I never would have imagined that the converter would include dng files in the list of raw files to convert to dng.
    It is not a big deal to find and delete.  All I have to do is do a search for all files that end in _1.dng.  No biggie, but it seems redundant to me to waste time on this conversion.  Is there an option to choose not to convert dng files?  I can not look at the moment because the converter is converting dng files and is busy. LOL.

    You still have not provided any documentation to back up your assertion that Adobe makes plain, or even unplain for that matter, that DNG files are going to be included in the conversion process.  I am not asking you to "slavishly go over a variety of documents in order to provide proof", you state as a matter of fact that the documentation exists. Your failure or inability to produce any proof can only be interpreted as meaning that it does not exist.  You are speaking about something that you apparently do not have a clue about.  You only seem to act like you know what you are talking about.   It is pointless to discuss this with you any longer.  I accept the fact that you are not going to be able to provide official Adobe documentation stating that DNG files are going to converted along with camera dependent raw files.  Apparently, you had no prior knowledge of this issue, because you did not share a reason in your post.  And, you still do not share documentation....because you do not have any!  FAIL!
    As far as making contributions, just because I have only posted 14 times on this forum is not a clear indicator of my total contributions.  I am not going to get into a "I have made this many posts on this forum and that forum argument" with you.  It is pointless and childish.
    And how were you trying to help me?  You were not.  You offered nothing.  Your comment only had one purpose: to make fun of another person and/or to incite a reaction.  You did that very well.  You need to be honest with yourself and think about what kind of contribution you were making in your original post.  You did not offer anything accept for a smartaleck answer. 
    As far as acknowledging the utility's ability to convert dng files to newer files, yes I knew that the converter could be used to update existing DNG files.  I did not imagine that it would convert an existing dng file and produce a duplicate.  Big difference!
    And what is wrong with venting?  I expressed frustration with something that I found bothering.  Adobe would like for everyone to adopt this format.  One way of achieving that goal is for people to use the converter.  But, if people are not happy with the converter, then they may not convert, or recommend the use of the converter.  I use the converter, and I use camera raw to convert to dng as well as converting upon import.
    You can not defend yourself on the issue of documentation to back up your claim apparently because it does not exist.
    I apologize for referring to you as "Mr. Smartypants".  I can clearly see now that I was wrong for calling you that. 
    I know that I am guilty here of inserting my own emotion into your original response.  I have a 50% chance that I was correct in assuming that you were simply being humorous and not condescending.  Again, I should have ignored your post as it was completely worthless.  I apologize for that.
    And, at the moment, I do not feel very smart for participating in this childish discussion with you.  I am much too old to be doing this.

  • Problem converting word doc into pdf

    I've just installed adobe acrobat 6.0 onto my laptop
    . Whenever I try to create a pdf file from a word doc it says there is a problem and will have to run in repair mode/ It then goes through the 'retrieving required info' instructs to restart the computer. Once Ihave done that though and retry, it does exactly the same thing.

    There is an easy and effective way to convert word to PDF through Microsoft word 2007. You can download Microsoft Save As PDF add-in from Microsoft.com.
    Also a newly release one Office 2007 Service Pack 2 (SP2) has built-in the add-in.
    1. Start Microsoft Word 2007
    2. Open a .DOC document and edit
    3. Select from main menu “Office button”->”Save As”
    4. Select “adobe PDF”.
    More you can refer this column of PDF Converter, which includes some tutorials about converting PDF to other files.
    Glad that you got it working.

  • PRC Converter Tool doesn't work!

    Hi
    i wanna to use the PRC Converter Tool, included in midp_palm-1_0-beta.zip, to converter the sampler.jad to a prc file. However it doesn't work. No File had generated after i selected the sampler.jad file and clicked the convert button.
    i'm using win2k with jdk1.4.
    any idea?
    Ziong

    I found that it's not work only in jre1.4. It works fine in jre1.3.1.
    But the MIDP for Plam OS User's Guide claim that use jre 1.3 or later. Is it a bug in jre1.4?

  • What Can Pdf To Office Converter Do For You Personally?

    PDF Converter Pro for Mac works as being a combination of normal PDF converter for Mac. Macintosh PDF Converter Pro includes all-the top features of Mac PDF Converter that may Doc Converter, Exceed, PowerPoint, EPUB, HTML, and Wording platforms with high-efficiency, to help you easily change, recycling, reorganize, current, and discuss your PDF files. What's more, it contributes fresh OCR purpose, which may extract text to more popular and accustomed Workplace documents types from scanned PDF.  Get more info >>> https://sourceforge.net/projects/pdftotextconverter/

    Has something changed about the way you're connecting to the internet?  It's likely that the files aren't even getting uploaded.  Are you now in an office, whereas in the past, you were at home? 
    Are you in an environment that prevents you from uploading files anywhere online?
    -David

  • Trying to convert VBScript to Java

    I want to change this VB Script into Java for use in Dreamweaver
    <% If rsCalendarDetails("images") <> "" Then %>
    <img src="images/calendarphotos<%=(rsCalendarDetails.Fields.Item("images").Value)%>">
    <% Else %>
    <images src="images/calendarphotos/nopix.gif">
    <% End If %>Thanks for anyone who can convert this to a Java script for me. I am a designer first, programming novice....

    I want to change this VB Script into Java for use in
    Dreamweaver
    <% If rsCalendarDetails("images") <> "" Then
    %>
    <img
    src="images/calendarphotos<%=(rsCalendarDetails.Fields
    .Item("images").Value)%>">
    <% Else %>
    <images src="images/calendarphotos/nopix.gif">
    <% End If %>Thanks for anyone who can convert this to a Java
    script for me. I am a designer first, programming
    novice....Okay first of all Java and JavaScript are not the same things. But as that code does database access I would say that you do in fact mean Java.
    Probably JSP or servlets. But what you have posted isn't nearly enough information because you will have to convert everything including the bits where you connect to the datasource and execute your query.
    You should probably go somewhere where you can pay someone to write this for you. It probably won't cost you much for a straight conversion (which may not be ideal but apparently is what you want).

Maybe you are looking for

  • T5140 will not boot to OS

    I am unable to boot my T5140 Sparc Enterprise server. I can only get to the ILOM web interface and SER MGT interface. Once to the -> prompt I can start /SYS and start /SP/console but and that point all I get is a blinking cursor even after waiting a

  • Database.pl error in Ciscoworks LMS 3.2

    Dear Friends, I am getting the following error only for database.pl when i run selftest under Common-->Services-->Admin: database.pl FAIL     Self Test Fail to query dfmEpm.DbVersion, Error: Database server not found (DBD: login failed)      Self Tes

  • Song won't play/ Skips

    I've noticed recently on my iPod Classic that a song will be skipped over or won't play in my library. It will play on my iTunes itself or any where else. But not on my iPod. Has anyone had a similar problem? Or know how to fix this?

  • HT201340 So I imported my iPhoto library into Aperture.

    I had hidden photos in iPhoto, but they can't be found in Aperture. The "projects" show the correct number of photos (i.e. 684), but there are only two photos. None of the hidden ones.  What's up?  I have more than 30,000 photos, with quite a number

  • Flash Forms - Displaying text

    I am using a Flash form to update several tables. In my form, I want to be able to display some of the information as display/read-only, but do not want to have the data display in a text box, as it makes the user think its editable. Is there a way t