In Forms Central, attempting to do file attachment, but "select File" option is grayed lout/unavailable - how do I make it available?

in Forms Central, attempting to do file attachment, but "select File" option is grayed lout/unavailable - how do I make it available?

Is it necessary that all the files are on the local hard disks? In the case of the laptop I could understand this if the laptop is also used outside the network, but the desktops should stay in place, no?
It could be as easy as to make a shortcut on all the computers to the samba-share and tell the inlaws that they have to use the samba-share to store their (shared) files.
You are correct about this but I doubt they would remember to use this all the time so I want to sync the folders just in case.
Assuming the laptop is always going to be in the same IP address when it connects to the network (which is unlikely in default configurations), you could create a script that checks for the existence of the machine on the network then perform a sync.  I had a script written in Python somewhere that would check to make sure the server side was up and run unison, but it could be modified to check for the laptop and copy files.  Let me know if that's something you're interested in and I can post it for you.
This sounds like what I'm looking for. Also I wander If it could be done by NetBIOS  name instead of ip address? This way It wouldn't matter.
The script sounds like what I'm looking for though
Thanks for the help!

Similar Messages

  • The file size of selected file in input file control is shown as 0 for multiple file selection in Safari 5.1

    The file size of selected file in input file control is shown as 0 for multiple file selection in Safari 5.1. If you select single file, then it is able to return file size correctly. However, if you select multiple files, then the file size of each of the selected file is always returned as 0 from javascript. This works correctly in Safari 4.0 but it does not work in Safari 5.1.
    How do I get the correct file size in Safari 5.1 ?

    If you want to post (or send me) a link to the lrcat file, I'd take a look at it for you, and give you a break-down what's consuming all the bytes. But it might be fun to learn how to do that yourself (e.g. using SQL). I use SQLiteSpy, but other people have their favorites.. (or you can use a command-line client if you prefer..). One way: just run "drop table "{table-name}" on each table then look at filesize (do this to a copy, not the real thing).
    Anyway, it's hard to imagine keywords and captions etc. taking much of the space, since even if you had 1000 10-character words of text metadata per photo average that still only adds up to 117MB, which isn't a substantial portion of that 8G you're seeing occupied.
    Anyway, if you've painted the heck out of most of them and not cleared dev history, that'll do it - that's where I'd put my money too...
    One thing to consider to keep file-size down:
    ===================================
    * After reaching a milestone in your editing, take a snapshot then clear edit history, or the top part of it anyway (e.g. leave the import step), using a preset like:
    Clear Edit History.lrtemplate
    s = {
        id = "E36E8CB3-B52B-41AC-8FA9-1989FAFD5223",
        internalName = "No Edit",
        title = "Clear Edit History",
        type = "Develop",
        value = {
            settings = {
                NoEdit = true,
            uuid = "34402820-B470-4D5B-9369-0502F2176B7F",
        version = 0,
    (that's my most frequently used preset, by far ;-})
    PS - I've written a plugin called DevHistoryEditor, which can auto-consolidate steps and reduce catalog size - it's a bit cumbersome to use a.t.m. but in case you're interested...
    Rob

  • I have a video clip on IPhoto that is MPG file.  It won't copy to the IPAD.  How can I make it work on IPAD?

    I have a video clip on IPhoto that is an MPG file.  It won't copy to the IPAD.  How can I make it work on IPAD?

    http://www.apple.com/ipad/specs/
    Video formats supported: H.264 video up to 720p, 30 frames per second, Main Profile level 3.1 with AAC-LC audio up to 160 Kbps, 48kHz, stereo audio in .m4v, .mp4, and .mov file formats; MPEG-4 video, up to 2.5 Mbps, 640 by 480 pixels, 30 frames per second, Simple Profile with AAC-LC audio up to 160 Kbps per channel, 48kHz, stereo audio in .m4v, .mp4, and .mov file formats; Motion JPEG (M-JPEG) up to 35 Mbps, 1280 by 720 pixels, 30 frames per second, audio in ulaw, PCM stereo audio in .avi file format.

  • Can you attach a select file into a mail in "Outlook" then send to a specify address?

    I have been looking around and trying to find ways to do the following with extendscript:
    1. Open ‘Outlook’
    2. Create a new mail
    3. Attach the files which was selected to a mail then send to a specify address
    Is this possible?
    I found this that dose it for MAC but I need to do it in a windows platform

    Hi John
    Well not a very inDesign question is it but this will do what you want.
    // Send selected files as attachments through outlook on windows 
    // By Trevor htps://forums.adobe.com/message/6546861#6546861
    // Need a custom script , willing to pay for it send me a private message.
    var notify = true; // set to true if you want a popup measage to say that the mail is sending
    var delay = 1.5 // the number of seconds you want the popup to appear
    var ToAddress = "[email protected]"; // You might need to change this 
    var MessageSubject = "Howdy Barack, take a look at this"; // You might need to change this
    // bodyText set at line 27 Below
    var myAttachments =  File.openDialog ("Select the files you wish to attach", "All Files: *.*", true);
    if (!myAttachments) {
        alert("Sorry mate I can't send your attachments if you don't select them\rPlease try again next year\rThanks");
        exit();
    var n, MessageAttachments = [], bodyFileNames = [], fName = "";
    for (n = 0; n < myAttachments.length; n++) {
        fName = myAttachments[n].fsName;
        MessageAttachments[n] = 'newMail.Attachments.Add("' + fName + '")';
        bodyFileNames[n] = fName;
    MessageAttachments = MessageAttachments.join("\r") + "\r";
    bodyFileNames = bodyFileNames.join("\" & vbNewLine & \"");
        // the \" & vbNewLine & \" is a way off putting in line feads
    MessageBody = "Howdy i spent yonks of time making this. \" & vbNewLine & \"" + bodyFileNames; // You might need to change this
    //VBS code very very very heavily based on the answer of ShaddowFox333 http://www.tek-tips.com/viewthread.cfm?qid=728333 
    myVBS = '''Dim ToAddress
    Dim FromAddress
    Dim MessageSubject
    Dim MessageBody
    Dim MessageAttachment
    Dim ol, ns, newMail
    ToAddress = "''' + ToAddress + '''"
    MessageSubject = "''' + MessageSubject + '''"
    MessageBody = "''' + MessageBody + '''"
    Set ol = CreateObject("Outlook.Application")
    Set ns = ol.getNamespace("MAPI")
    Set newMail = ol.CreateItem(olMailItem)
    newMail.Subject = MessageSubject
    newMail.Body = MessageBody & vbCrLf
    newMail.RecipIents.Add(ToAddress)
    ''' +
    MessageAttachments + "newMail.Send";
    try {
        app.doScript (myVBS, ScriptLanguage.VISUAL_BASIC, undefined, UndoModes.AUTO_UNDO);
        if (notify) {
            var tempFile = new File (Folder.temp + "/" + +new Date + ".vbs");
            tempFile.open('w');
            tempFile.write('''Set shell = CreateObject("Wscript.Shell")
                        delay = ''' + delay + '''
                        shell.Popup "Sending document by outlook", delay, "InDesign Mail Manager", 64
                        Set fso = CreateObject("Scripting.FileSystemObject")
                        fso.DeleteFile("''' + tempFile.fsName + '''"),DeleteReadOnly
            tempFile.close();
            tempFile.execute();
    catch (e) {alert ("Drat goofed up")}
    Trevor
    OTT: Congrats Uwe

  • How to get the file path of selected file using JFileChooser

    Hi All,
    I am trying to store the file on my FTP server after selecting the file from the user workstation using JFileChooser. But I am not able to write the file on FTP server or on user local machine where application is running. I am new to this FTP server coding. Can anyone help me in this.
    This is the code I wrote on button click user will able to select the file:
    String filename1;
    File file;
    JFileChooser fc = new JFileChooser();
    fc.showOpenDialog(this);
    file = fc.getSelectedFile();
    filename1 = file.getPath();
    txtFilePath.setText(filename1);
    Below is the code to write the file on my local machine first:
    BufferedWriter outFile = new BufferedWriter( fileName ) );
    outFile.write();
    outFile.flush( );
    outFile.close( );
    Any help will be greatly appriciated

    rp0428 wrote:
    >
    BufferedWriter outFile = new BufferedWriter( fileName ) );
    >
    There is NOTHING named 'fileName' in any of the code you posted so that code can't possibly compile let alone actually run.
    How can anyone help you if you won't post the actual code you are using?Its just a random snippet of other code that is totally irrelevant to this thread if you ask me.

  • When I try to convert a PDF file to Word, the Word option is grayed out.

    I have opened a form that was scanned to a PDF, and opened Adobe Export PDF.  But the 'Convert to Word' option is grayed out.  What do I do?

    Yes, but possibly I wasn't signed in.  I used the alternate method by going online and it worked.
    Thanks

  • Looping through text files loads all 2014 files correctly, but 2013 files only loads every other row

    Hello all. I am once again stumped and would very much appreciate any help.
    I have a folder with many text files such as this...
    A 2013-03-31.txt
    A 2013-06-30.txt
    A 2013-09-30.txt
    A 2013-12-31.txt
    A 2014-03-31.txt
    A 2014-06-30.txt
    A 2014-09-30.txt
    B 2013-03-31.txt
    B 2013-06-30.txt
    B 2013-09-30.txt
    B 2013-12-31.txt
    B 2014-03-31.txt
    B 2014-06-30.txt
    B 2014-09-30.txt
    …and so on…
    and I'm loading all of the files beginning with A to an existing table in SQL Server. I'm loading the data as is to a staging table, no data type conversions, and I add only two derived columns. I have a loop to accomplish this, and it's working perfectly
    except for one detail. All of the files in 2013 load every other row. All of the 2014 files load all rows as intended.
    Any idea what would cause this? All files are being loaded using the same loop, same variables, same everything. My enumerator on the for each loop is Foreach File. The DataRowsToSkip property on the flat file connection manager is 0. I'm not sure where
    to look next. I need all rows in all files to be loaded.
    Forgot to mention that there is a difference between the 2013 and 2014 files. The 2014 files have 8 additional columns. I suspect this is causing my issue, just not sure what to do about it.
    Thanks for any help you can provide!
    WeeLass

    In SSIS 2012 and above these additional columns would not cause a failure, but looks like lead to you having impartial loads.
    I suggest you create two loops, one for one metadata - files from 2014 and another for 2013 ones.
    Arthur
    MyBlog
    Twitter

  • File attachment in XML file of inbound interface

    Hi friends
    Working in ERP EHP6.0 and SRM7.0
    I attached DMS file in PR document at ERP and transferred to SRM using interface PurchaseRequestERPSourcingRequest_out.
    But PR generated XML in ERP does not have the attachment file eventhough they have attachment folder.
    How to debug this ? which Func module attach the file to interface generated XML file?
    Trying to use CPPR and transfering PR via BADI ME_REQ_Source_Cust.
    I tried using saving file in content server and transfer using PR but attachment is not picked up in XML file while checking in SXMB_MONI.
    Does the note: SAP Note 974332 - No attachments transfer within external requirements
    is referring my problem?
    I doubt whether the above is pointing for RFC transfer program...is it not?
    Pls confirm.

    Hi Prince,
    Check with BAPI_DOCUMENT_CHECKIN , it may help you.
    Regards,
    Ravindra

  • How can I make addons available for enterprise users by an central service and forbid the installation from any other sources

    in the company I´m working for it´s not possible to install add-ons by the Users . That´s what I´m going to change.
    We use Firefox ESR 17 and Window 7.
    I want to make add-ons available for everybody by integrating an internal central service. That is possible by customizing the "extension.webservice.discoverURL" to the server I´m talking about. The Problem is that nobody should be able to install add-ons from any other source, for example addons.mozilla.org, local media,...
    Do you have an idea, how this problem can be solved?
    Maybe there is a possibility by using the lockPref "xpiinstall.enabled false" in conjunction with a whitelist defining my Server?

    Does any of this or similar blogs by the same author help
    *http://mike.kaply.com/2012/07/03/customizing-firefox-blocking-add-ons/
    Although with many hacks there could be some sort of workaround that advanced users may employ when attempting to circumvent the measures, such as the ability to use Firefox in safe-mode and then install add-ons, or even run a browser from a memory stick.
    You may well get a better answer on some other forum. This mozillazine forum deals with some coding issues, not sure but they may consider your sort of question on topic.
    * http://forums.mozillazine.org/viewforum.php?f=25

  • AVCHD .mts files imported but optimised files play fast in QT and FCPX 10.1.1

    Hi Guys
    Panasonic HC-V700 AVCHD .MTS files (from within the 'Stream' folder) imported and optimised into FCPX 10.1.1 but the imported/optimised clips (found in the Transcoded Media>High Quality Media folder) play too fast in QT and FCPX 10.1.1 . Was able to do this fine until yesterday.
    Using OSX 10.9.1 3.4 GHz Intel Core i7 with just 4GB RAM (hoping to get faster, souped-up new iMac very soon).
    When playing the 1080/50p clips on the camera's video player they play at normal speed. Weirdly, today, FCPX has 'acknowledged' the camera on the import window despite the 1080/50p footage (previously it didn't show the camera as a valid import 'archive' on the import screen). Now, on the import window whenever I play a clip it also plays too quick.
    Any thoughts or suggestions would be greatly appreciated.
    Warm regards
    Peter

    When attempting to play the .MTS files in import I'm getting the 'dropped frames' error message:
    "Issues that may affect playback include available memory, disk speed, graphics performance, and processor performance.
    You may be able to get better performance by doing the following:
    - Use proxy playback by changing the Media setting to 'Proxy' in the Viewer Options pop-up menu. (Requires proxy media.)
    - Optimize your source clip media."
    Could the lack of RAM in this iMac actually cause the video to speed up in FCPX? (weird)

  • Java files work but jar files do not

    Hello everyone!
    My java files run normally and I get a response that I expect (which is successful). Imagine my surprise when I collected them in a Jar and the very same files inside the jar no longer work! I get a response (still generated by my java program) from successful, it turns to Query Expire.
    My problem is, when executed as normal java programs, the expected result is produced. However, when the jars are executed, the result is expired. What is wrong? The classes and the ones in the jar are the same. Is there something different with the mechanism of Jars that make it erroneous?
    Many thanks in advance. I have been working with this for a week with no progress! =(

    Hi!
    Thanks for your reply. Here's what's happening so far:
    I created my java files using Eclipse and using the Export option, I exported them as a JAR.
    When I run my application on Eclipse with the Java files in tow, the output I expect is Done sending: wait for responses now
    Received response from billing api- A: null(0), C: 13, E: Account already registered
    Register: Failed: 1 Failure(s)Now, on to the JAR file.
    I executed the JAR file using the command java -jar <jar name.jar>
    Here's the response:
    Done sending: wait for responses now
    Received response from billing api- A: null(0), C: -1, E: Query expire w/o response
    Register: Failed: 1 Failure(s)My program communicates with a database and this generates the reply that should be received by my program. My ordinary Java file gets the expected output, but the JAR does not.
    Is it possible that the JAR file somehow slows down the transaction? The reply sent by the database isn't received by the JAR -- somehow, the message gets lost.

  • Attempting to import C300 footage but Canon XF option is only working intermittently

    I have a bunch of directories with C300. They are all named similarly (A1/Contents, A2/Contents, etc). I have tried importing them in Prelude and Premiere through the media browser.
    I am able to import some of them correctly, but sometimes the Canon XF option is greyed out and only "file directory" is available.
    I was thinking maybe the folder structure was changed somehow, but Final Cut Pro 7 is able to see all of the files correctly.
    Do you know what might be going on?
    Thanks!

    For me, XF Utility without any doubt since i don't want to transcode the footage.
    I transfer the cards with Explorer or Finder and then point XF Utility to the footage to either delete clips and/or create vitrual cards and transfer the files from the card/s to new virtual cards for better file managament. If you use XF Utility to transfer the footage from the camera to a virtual card, it will work and spanned clips will work as expected, so it is not necessary to first transfer the card and it's whole content to the computer. I have used XF utility for years and know that it works with spanned footage and that one can use it to transfer let's say 10 clips from a card in the camera with 100 clips on it. Premiere Pro has no problems to import virtual cards created with XF Utility. Timecode and everything is still there.
    Use both methods and decide which one is best for you. (ie XF Utility of Prelude)
    /Roger

  • File dialog for selecting file on server

    Hi,
    in my applet, the user should be able to choose a jpg-file from the server to open it. The directory is fixed, there is only a choice between several files.
    I think I need a servlet to get a list of all files. Then I can send this list to the applet and display it there somehow. The code on the servlet side should be no problem, but I am struggling how to display this list in the applet so that the user can choose the appropriate file.
    Are there any better possibilitIes than my approach? Perhaps something like this already exists?
    Thea

    Hi,
    try one of the FMs, or copy parts of the code in your own:
    F4_DXFILENAME_TOPRECURSION
    F4_FILENAME_SERVER
    /SAPDMC/LSM_F4_SERVER_FILE
    RZL_READ_DIR_LOCAL
    Award points, if useful
    regards
    Markus

  • During installation of the NI-VISA 2.01 driver I get an error that tells me that my file (NICVISA.DPT) doesnt look like a tar archive. How can I make it look like a tar archive or is that not the solution to the problem?

    I am trying to install the NI-VISA 2.01 driver I downloaded from the NI website on a HP-UX 10.2 platform, but it keeps giving me the following error:
    tar: /var/spool/sw/NICVISA.DPT: This doesnt look like a tar archive.
    I also get errors telling me that files can't be loaded because their missing from source media. What could be causing this? Some of the files are msgrt4.txt,ni7seg24.bdf,ni7seg26, etc... Can these needed files be downloaded anywhere or is the problem linked to the tar archive scenario..

    The files were corrupt. Originally I had downloaded the driver files to my PC and used FTP to transfer them to my UNIX machine.
    Your tech support rep. suggested I download the driver files via ftp.ni.com to my UNIX machine vs. the PC...this worked great. I am now communicating with my instrument

  • Attempted download of 4.0 but appears my Norton System blocked it. How to complete download?

    I have attempted to download 4.0 twice and got a popup message from Norton stating "security risk download blocked -system safe. My Firefox works fine as it is. I would like to stay with newest versions. Not sure how to confirm 4.0 download complete. Do I need to disconnect Norton for successful 4.0 download?

    For older Macs that aren't supported in Firefox 4.0, try TenFourFox for PowerPC's running Mac 10.4.11 & 10.5.8 . <br />
    http://www.floodgap.com/software/tenfourfox/
    You can get 3.6.16 here: <br />
    http://www.mozilla.com/en-US/firefox/all-older.html

Maybe you are looking for

  • Unable to Install ITunes 8.0 and unable to access IPhone

    All, Update attempts from ITunes 7.x & now though initially it said cannot upgrade to IPhone software 2.0.1 without 8, all of a sudden it kicked off and upgraded successfully. But now my Iphone is totally locked out as it is not even getting recogniz

  • Not able to forward/reply mails in Apple Mail but new mail is going out

    I am using Apple Mail program for my mails, for last 3-4 days I am not able to forward or reply a mail but i am able to send if i compose a new email

  • New Report Service

    I've converted my application from forms 10g to forms11g. In my old appliation i used a report service with name repxxx how do I give the same name to the report service in forms11g? thanks Umberto

  • External iSight Camera Usage

    Currently using a Power Mac G5 2GHz DP with firewire iSight attached and will be buying an iMac DC to simplify my life. I can envision times when I would want to connect the external FireWire iSight into the iMac. Is it possible to turn off the inter

  • Swing in Browsers

    What needs included in a project to run Swing components in an Applet? I have a working Applet (in CodeWarrior) but neither of my browsers seems to have what it takes to use the Swing components.