File Extentions

Hello! I installed ODT and tried to add new file extension (.pck) to Options/Text Editor/File Extensions/ . Unfortunately dropdown control doesn't offer Oracle editor. How to explain to VS that .pck file is PL/SQL file?

Hello partizan,
I saw the same thing and would love to have the ability to add other file extensions using oracle editor. It seems that the best way to edit packages in VS is to bring up the database in the Solution Explorer and Right-click the packages (or whatever) entry and select New. This brings up the PL/SQL editor in VS. I simply stored the packages in the database and edited them from there. You can always save as a file from that point, but it seems like you use the ability to debug the package from the text version of the file.
I know this isn't the answer you were hoping for, but this is how I worked around the current limitations.
Craig

Similar Messages

  • After renaming a file extention from .jpeg to .jpg I can no longer type ...

    After renaming a file extention from .jpeg to .jpg I can no longer type in any of the finder related editable fields/boxes. I can still type in my open applications fields.
    This problem also happens when I happen to find a file that has been named, for instance, 2008jpg. When I add the period to have the file read correctly as 2008.jpg, a warning box appears asking - {*Are you sure you want to change the extention from ".jpeg" to ".jpg"?* If you make this change, your document may open in a different application.} Two radio buttons are available within this warning box that read - 1 - {Use .jpg}(it is not color coded, which means it must be selected manually. - 2 - {Keep .jpeg}(it is colored w/my Blue highlight color, which means it will be selected if the Enter Key is used.
    The warning box does Not appear if I remove the period from a file and not again when i re-add the period to that same file.
    After trying to make these types of edits to the name of any file, with any of the various extentions available for files in our digital world, I usually get an anomaly where myability to type in the Finder ceases to be a possibility.
    I have found that I can Force Quit the Finder for a quick fix, but, I'm not sure that this Typing problem should have to be dealt with at all by this quick fix. Is this an issue with the Indexing in Spotlight, which seems to be giving many users problems?

    I downloaded and tried EasyFind. It works but it took 30+ seconds to complete finding 3 files that are on One of my Five 25+ Gb partitions of my 130 Gb Seagate Cuda(Really 160 Gb, but my Sawtooth will only recognize 130) I figured that if I ever got a better box, I could reformat it to see the whole 160 Gb. So, as far as I can see, Spotlight's indexing scheme which finds the files instantly is probably preferable. Spot light allows you to rename your files from within it's app window. I've always thought that was pretty powerful. Could my doing so be causing me any issues? As i said it is the inability to Type in the Finder that seemed to be caused from changing file Extentions that were mis-written. Maybe it was a delayed reaction to my renaming files in the Spotlight app? I've done both on occasion.
    As for these .DS_Store files. Apparently you can NOT stop them from being written to any folder that you touch/open/view during a days session. But, as a function of the OS, are the essential to have in their respective folders Forever? I've looked at the .DS_Store terminator app briefly and assume that getting rid of these files won't hurt the regular operation of my OS. They will just be re-written if I ever have to go back to any particular folder again. But, apparently, some have said that if the plan on burning a CD or DVD of their data, they delete the .DS_Store files first and then do the burn.
    I'm thinking from your having suggested this tremination app that you suspect that my having all of these ,DS_Store files could be a situation where any of them could have become corrupted and terminating them regularly should be part of my regular maintenance.
    Does that sound like I'm understanding what I can do?
    TIA

  • FILE NAME WITH FILE EXTENTIONS

    HI EXPERTS!!
    I WANT TO GET THE FULL FILE NAME STRORED IN THE SERVER FOLDER. I USED  FM RZL_READ_DIR_LOCAL BUT I AM GETTING ONLY 32 DIGITS OF NAME NOT FULL NAME AND ALSO SIZE PARAMETER IS CONCATENATING WITH NAME.
    I WANT THE FILE NAME WITH FILE EXTENTIONS(TXT. .PDF ETC)..
    PLZ SUGGEST ME HOW TO GET THE SAME..
    PLZ REPLYE ME..
    MAHESH

    Hi Mahesh,
    Try the below FM in the below code.
      DATA:
        LV_PERMISSION(10),                 " Permission
        LV_H2,                             " H2
        LV_FLNM(13),                       " File name
        LV_USER(10),                       " User
        LV_GROUP(10),                      " Group
        LV_SIZE(15),                       " Size
        LV_MONTH(3),                       " Month
        LV_DAY_C(2),                       " Day
        LV_YEAR(5),                        " Year
        LV_FILE_NAME       TYPE FILE_NAME, " Filename
        LV_JUNK,                           " Junk
        RETURN_CODE      TYPE I.           " Return code
      DATA:
        CMD_PARAMS LIKE SXPGCOLIST-PARAMETERS,
                                           " External prg.parameters
        CMD_OUTPUT TYPE BTCXPM OCCURS 0,   " Log message
        STATUS TYPE EXTCMDEXEX-STATUS.     " Status
      CONSTANTS:
        LC_DIR TYPE C VALUE 'd'.           " Directory
      FIELD-SYMBOLS: <CMD_OUTPUT_LINE> LIKE LINE OF CMD_OUTPUT.
      CMD_PARAMS = PV_DIRECTORY.
      CLEAR CMD_OUTPUT.
      CALL FUNCTION 'SXPG_CALL_SYSTEM'
           EXPORTING
                COMMANDNAME                = 'Y_LS_LN'
                ADDITIONAL_PARAMETERS      = CMD_PARAMS
           IMPORTING
                STATUS                     = STATUS
                EXITCODE                   = RETURN_CODE
           TABLES
                EXEC_PROTOCOL              = CMD_OUTPUT
           EXCEPTIONS
                NO_PERMISSION              = 1
                COMMAND_NOT_FOUND          = 2
                PARAMETERS_TOO_LONG        = 3
                SECURITY_RISK              = 4
                WRONG_CHECK_CALL_INTERFACE = 5
                PROGRAM_START_ERROR        = 6
                PROGRAM_TERMINATION_ERROR  = 7
                X_ERROR                    = 8
                PARAMETER_EXPECTED         = 9
                TOO_MANY_PARAMETERS        = 10
                ILLEGAL_COMMAND            = 11
                OTHERS                     = 12.
    Check Status first then check sy-subrc
      CASE SY-SUBRC.
        WHEN 0.
          CASE STATUS.
            WHEN 'F'.
              MESSAGE I057(YS) WITH 'SXPG_CALL_SYSTEM'(002).
              GF_EXIT = GC_TRUE.
            WHEN 'E'.
              MESSAGE I058(YS) WITH 'SXPG_CALL_SYSTEM'(002).
              GF_EXIT = GC_TRUE.
            WHEN 'S'.
              MESSAGE I059(YS) WITH 'SXPG_CALL_SYSTEM'(002).
              GF_EXIT = GC_TRUE.
            WHEN 'C'.
              MESSAGE I061(YS) WITH 'SXPG_CALL_SYSTEM'(002).
              GF_EXIT = GC_TRUE.
          ENDCASE.                         " CASE STATUS.
        WHEN 1.
          MESSAGE I048(YS) WITH 'SXPG_CALL_SYSTEM'(002).
          GF_EXIT = GC_TRUE.
        WHEN 2.
          MESSAGE I049(YS) WITH 'Y_LS_LN'(003).
          GF_EXIT = GC_TRUE.
        WHEN 3.
          MESSAGE I050(YS) WITH 'SXPG_CALL_SYSTEM'(002).
          GF_EXIT = GC_TRUE.
        WHEN 9.
          MESSAGE I054(YS) WITH 'SXPG_CALL_SYSTEM'(002).
          GF_EXIT = GC_TRUE.
        WHEN 10.
          MESSAGE I055(YS) WITH 'SXPG_CALL_SYSTEM'.
          GF_EXIT = GC_TRUE.
        WHEN 11.
          MESSAGE I056(YS) WITH 'SXPG_CALL_SYSTEM'(002).
          GF_EXIT = GC_TRUE.
        WHEN OTHERS.
          MESSAGE I022(YS) WITH SY-SUBRC.
          GF_EXIT = GC_TRUE.
      ENDCASE.                             " CASE SY-SUBRC.
      IF GF_EXIT = ' '.
        READ TABLE CMD_OUTPUT ASSIGNING <CMD_OUTPUT_LINE> INDEX 1.
        IF SY-SUBRC = 0.
          CONDENSE <CMD_OUTPUT_LINE>-MESSAGE.
          IF <CMD_OUTPUT_LINE>-MESSAGE CS 'total' OR
             <CMD_OUTPUT_LINE>-MESSAGE CS 'TOTAL'.
            DELETE CMD_OUTPUT INDEX 1.
          ENDIF.
        ENDIF.
        LOOP AT CMD_OUTPUT ASSIGNING <CMD_OUTPUT_LINE>.
          CONDENSE <CMD_OUTPUT_LINE>-MESSAGE.
          SPLIT <CMD_OUTPUT_LINE>-MESSAGE AT SPACE INTO
                                          LV_PERMISSION
                                          LV_H2
                                          LV_USER
                                          LV_GROUP
                                          LV_SIZE
                                          LV_MONTH
                                          LV_DAY_C
                                          LV_YEAR
                                          LV_FILE_NAME
                                          LV_JUNK.
          IF LV_PERMISSION(1) = LC_DIR.
            CONTINUE.
          ELSE.
            LV_FLNM = LV_FILE_NAME(13).
            TRANSLATE LV_FLNM TO UPPER CASE.
            IF LV_FLNM = '1W_FIARFUNNEL'.
              PT_FILE-FILE_NAME = LV_FILE_NAME.
              APPEND PT_FILE.
            ENDIF.                         " IF LV_FLNM = '1D_FIARFUNNEL'.
          ENDIF.                           " IF lv_permission(1) = ...
        ENDLOOP.                           " LOOP AT CMD_OUTPUT
      ENDIF.                               " IF GF_EXIT = ' '.

  • Load files to stack with out file extention as part of layer name

    Ok so as the title says i'm trying to figure out how to modify the "Load Files to Stack..." script so that it doesn't put the file extention as part of the layer name. it makes it a pain to have to go through and remove it when dealing with a lot of layers. I'm using photoshop CS5 on Win 7.
    Also if possible a script that would make Comp Layers for each layer created when loading files to stack it's a bit much to ask but worth a shot

    If anyone is just looking to import files into stack without extension names here's what I did:
    1- Go to your adobe scripts folder:
    64 bit - C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\Presets\Scripts\
    32 bit - C:\Program Files (x86)\Adobe\Adobe Photoshop CS6\Presets\Scripts\
    2 - Copy and paste these 2 files somewhere other than in the adobe folder like the desktop (I had to due to permission restrictions when saving):
    Load Files into Stack.jsx
    Stack Scripts Only\CreateImageStack.jsx
    3 - Rename these files to
    Load Files into Stack - no ext.jsx
    CreateImageStack_noext.jsx
    4 - edit Load Files into Stack - no ext.jsx (I use notepad++) and save
    Line 16 - <name> Load Files into Stack (no extension) </name>
    Line 43 - $.evalFile(g_StackScriptFolderPath + "CreateImageStack_noext.jsx");
    5 - edit CreateImageStack_noext.jsx, insert this line into "line 411" (just above "app.activeDocument.activeLayer.name = this.fName;") and save
    Line 411 - this.fName = this.fName.replace(/(?:\.[^.]*$|$)/, '');
    6 - copy and paste these edited files back into your adobe ...\Presets\Scripts\ folder (overwrite folder), reload photoshop and you should now see in File > Scripts > Load Files into Stack (no extension) available!
    And for the lazy, here are the two files
    load_files_into_stack_no_ext.zip
    drop these in your photoshop scripts folder:
    64 bit - C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\Presets\Scripts\
    32 bit - C:\Program Files (x86)\Adobe\Adobe Photoshop CS6\Presets\Scripts\
    Hopefully this helps someone! Why adobe just doesn't have this as the default is beyond me.

  • Where is the file extent map ?

    hello everybody,
    I have a question. In Oracle Cluster, when Database Instace want to do I/O on a database file stored in ASM it first have to interactive with ASM instance. ASM Instace will provide Database Instance with ASM File Extent Map . ASM File Extent Map will show Database Instance where file's extents . After that Database Instance can perform direct I/O to the Database File. So where is the ASM File Extent Map ?What store ASM File Extent Map ? somebpdy can tell me ???

    A complete list in https://twiki.cern.ch/twiki/bin/view/PSSGroup/ASM_Internals
    N.A.     X$KFFXP     extent map table for all ASM files     
    N.A.     X$KFDAT     extent list for all ASM disks     
    N.A.     X$KFBH     describes the ASM cache (buffer cache of ASM in blocks of 4K (_asm_blksize)

  • .edt file extention and Reader 9

    I purchased a e book from direct2drive and the download file has a .edt file extention. This is supposed to open in Adobe Reader. It will not. Adobe Reader doesn't recognize the file. Is this a valid file extention to be used in Adobe Reader 9???
    Thank You

    I believe that you need to download Adobe Digital Editions at http://www.adobe.com/products/digitaleditions/ to access .edt files...

  • How can I fix a document having a microsoft Word logo and a "PDF" file extention?

    I am a subscriber to Adobe Create PDF. When I scan in documents from my HP 8600 all in one, it shows up in my computer with a pdf file extention, but with a microsoft WORD logo. I cannot simply open it with a double click and see a PDF adobe display. Instead I get a window generated from WORD that has garbage symbols and unreadable cybertext which I cannot convert. How can the be fixed?

    Thanks, it worked.
    In a message dated 12/9/2013 3:53:33 A.M. Pacific Standard Time, 
    [email protected] writes:
    Re:  How can I fix a document having a microsoft Word logo and a "PDF" file
    extention?
    created by Gilad D (try67) (http://forums.adobe.com/people/try67)  in 
    Adobe Reader - View the full  discussion
    (http://forums.adobe.com/message/5913330#5913330)

  • .eps file extention missing

    Hello:     I have a pc with Windows 7 Home Premium Edition, 64 bit and a Raedeon (<sp?) processor.
    Recently I downloaded a trial period for Adobe Photoshop CS6.
    I made a New Folder when I downloaded the software ~ if that means anything. Please bare with me as I am a New Newbie to computers in general as well as Ps.
    My problem is that I need to save files as .eps but when I go to Save As it is not listed. I checked the list of extensions and Ps does have it available. So, I am beside myself wondering why it is not in my drop down list of extensions.
    Maybe something isn't pointing to something?? lol .... yup, that's the extent of my computer knowledge.
    I have searched the FAQ's to no avail. However, I am not certain I have been asking my question in a manner in which I would be able to narrow down a relative result. So, I am sorry if someone else has already asked this question.
    Your time is greatly appreciated.
    Thank You!
    Murph

    Glad it worked out for you, yes there is a lot to learn and I have been using Photoshop since version 5 - long before CS5 and learn something all the time.
    I always save my master with all the layers and channel, then flatten the image, and in some instances have to check to see if there are any alpha channels floating around. I use one application outside of Photoshop that dumps an Alpha Channel, it is supposed to be there to help cover up stitching errors, so that gets dumped as well. Then I save as a new file ready for the customer. I learned the hard way sending a client an image with all the layers intact, and my hard work and technique went out the door, when the client sent the image to someone else; usually my output is 16 bit TIFF.
    Well sounds like you are having fun, and this forum is great for getting answers
    Cheers
    MK

  • Files extentions are changed when sending Mail

    I lately I discovered that whan sending an attached file like pdf or others, the an email, the receiver gets a modify extention file. For example .pdf become .pdfq or .pdff. The same modification appears on my sent folder. I call Apple but they couldn't find an explication. (we reinstall Mail but no success) .

    Ok, resolved

  • IE policy for file extention prompts

    our developers have an INTRANET site that have links that point to .mdb and .xls files, how do I disable the security prompt. I know IE is doing exactly what it is suppose to but I need to be able to make and exception for certain extentions for the INTRANET
    zone alone. Can you help?

    Hi,
    Regarding your request, would you please first let me know the IE version?
     In IE8 There used to be a key called HKEY_CURRENT_USER\Software\Microsoft\Windows\Shell\AttachmentExecute\{0002DF01-0000-0000-C000-000000000046} which stored the File Types that could either Auto-Open or not. This Key is
    not created in IE9, it can be added to the registry and IE9 still reads and applies settings associated with it.
    Whichever File Type you need to Auto-open, simply add a Zero Length Binary value by its name. These key values can either be added to the registry using GPP, and then the user is able to Auto-Open
    the specific file type in the browser. Hope this helps.
    Best Regards,
    Andy Qi
    TechNet Subscriber Support
    If you are
    TechNet Subscription user and have any feedback on our support quality, please send your feedback
    here.
    Andy Qi
    TechNet Community Support

  • File extention of doc not promoting for taxonomy either docx is working and promit is coming for taxonomy on library

    i am trying to Upload doc file with doc extention in a document library which have taxonomy enabled as metadata column it is not giving the promot for selecting the taxonomy either the field of taxonomy is must
    but it is working if the file type is Docx
    can any one help?
    MCTS,ITIL

    Hi,
    According to your post, my understanding is that you had issue about the .doc files with managed metadata column.
    Did you enable the “Add to all content types” when created the managed metadata column?
    You can create a new managed metadata column with “Add to all content types” enable, then check whether it works.
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • File Extention when using JFileChooser

    I'm using the JFileChooser and a FileFilter with for extensions of .ses, and I can't get it to append .ses to a file name if the user doesn't do it at the time they are in the File choser.
    What I've tried:
    JFileChooser fc = new JFileChooser();
    fc.setFileFilter(new SessionFileFilter());
    int retVal = fc.showSaveDialog(null);
    if(retVal == JFileChooser.APPROVE_OPTION){
         f = fc.getSelectedFile();
    if(!f.getName().endsWith(".ses")){
                   f=new File(f.getName()+".ses");
    ...SessionFileChooser...
    public boolean accept(File f) {
              boolean retval = false;
              int pos = f.getName().indexOf(".");
              if(pos != -1){
                   if(f.getName().substring(pos).equals(".ses")){
                        retval = true;
              return retval;
         public String getDescription() {
              return ".ses";
    ...any help would be appreciated, if you need source that compiles i'll get some worked out...
    to clarify the problem, if you go to save this web page and a dialog appears, you don't have to type .htm, but it automatically adds it before saving, this is what i'm trying to achieve.

    These two classes should do it. Let me know if there are any problems
    You are welcome to use and modify this code, but please don't change the package or take credit for it as your own work
    FileExtensionFilter
    ===============
    package tjacobs.ui.fc;
    import java.io.File;
    import javax.swing.filechooser.FileFilter;
    import java.util.ArrayList;
    import java.util.Collections;
    import java.util.Iterator;
    import java.util.List;
    public class FileExtensionFilter extends FileFilter {
        private ArrayList<String> mExtensionList;
        private String mDesc;
        public FileExtensionFilter (String extension) {
            mExtensionList = new ArrayList<String>(1);
            mExtensionList.add(extension);
        public FileExtensionFilter(List<String> extensions) {
            mExtensionList = new ArrayList();
              mExtensionList.addAll(extensions);
        public FileExtensionFilter(String[] extensions) {
            mExtensionList = new ArrayList();
            for (int i =0; i < extensions.length; i++) {
                mExtensionList.add(extensions);
         public void addExtension(String extension) {
              mExtensionList.add(extension);
         public Iterator<String> getExtensions() {
              Iterator<String> i = Collections.unmodifiableList(mExtensionList).iterator();
              return i;
    public boolean accept(File file) {
         if (file.isDirectory()) {
              return true;
    String name = file.getName();
    int idx = name.indexOf(".");
    String type = "";
    if (idx != -1) {
    type = name.substring(idx + 1);
    type = type.toLowerCase();
    return mExtensionList.contains(type);
    public void setDescription(String desc) {
    mDesc = desc;
    public String getDescription() {
    if (mDesc == null) {
    mDesc = "";
    for (int i = 0; i < mExtensionList.size(); i++) {
    mDesc += (i != 0 ? ", " : "") + "." + mExtensionList.get(0).toString();
    mDesc+= " files";
    return mDesc;
    public String getType () {
    return mExtensionList.get(0).toString();
    public static class HTMLFilter extends FileExtensionFilter {
    public HTMLFilter () {
    super(new String[] {"html", "htm"});
    setDescription("Web Page Files");
    public static class RTFFilter extends FileExtensionFilter {
    public RTFFilter () {
    super("rtf");
    setDescription("Rich Text Format Files");
    public static class TextFilter extends FileExtensionFilter {
    public static final String TYPES[] = new String[] {"txt", "text", "java"};
         public TextFilter () {
    super(TYPES);
    setDescription("Text Files");
    FileChooser
    ==========
    * Created on Jun 22, 2005 by @author Tom Jacobs
    package tjacobs.ui.fc;
    import java.awt.Component;
    import java.io.File;
    import java.util.List;
    import javax.swing.JFileChooser;
    import javax.swing.filechooser.FileFilter;
    import javax.swing.filechooser.FileSystemView;
    public class FileChooser extends JFileChooser {
         public FileChooser(FileExtensionFilter filter) {
              super();
              addChoosableFileFilter(filter);
         public FileChooser(String type) {
              this (new FileExtensionFilter(type));
         public FileChooser(List<String> types) {
              this (new FileExtensionFilter(types));
         public FileChooser(String path, FileExtensionFilter filter) {
              super(path);
              addChoosableFileFilter(filter);
              // TODO Auto-generated constructor stub
         public FileChooser(String path, String type) {
              this(path, new FileExtensionFilter(type));
              // TODO Auto-generated constructor stub
         public FileChooser(String path, List<String> types) {
              this(path, new FileExtensionFilter(types));
              // TODO Auto-generated constructor stub
         public FileChooser(File path, FileExtensionFilter filter) {
              super(path);
              addChoosableFileFilter(filter);
         public FileChooser(File path, String type) {
              this(path, new FileExtensionFilter(type));
              // TODO Auto-generated constructor stub
         public FileChooser(File path, List<String> types) {
              this(path, new FileExtensionFilter(types));
              // TODO Auto-generated constructor stub
         public FileChooser(FileSystemView arg0, FileExtensionFilter filter) {
              super(arg0);
              addChoosableFileFilter(filter);
         public FileChooser(FileSystemView arg0, String type) {
              this(arg0, new FileExtensionFilter(type));
              // TODO Auto-generated constructor stub
         public FileChooser(FileSystemView arg0, List<String> types) {
              this(arg0, new FileExtensionFilter(types));
              // TODO Auto-generated constructor stub
         public FileChooser(File path, FileSystemView arg1, FileExtensionFilter filter) {
              super(path, arg1);
              addChoosableFileFilter(filter);
         public FileChooser(File path, FileSystemView arg1, String type) {
              this(path, arg1, new FileExtensionFilter(type));
                        // TODO Auto-generated constructor stub
         public FileChooser(File path, FileSystemView arg1, List<String> types) {
              this(path, arg1, new FileExtensionFilter(types));
              // TODO Auto-generated constructor stub
         public FileChooser(String path, FileSystemView arg1, FileExtensionFilter filter) {
              super(path, arg1);
              addChoosableFileFilter(filter);
              // TODO Auto-generated constructor stub
         public FileChooser(String path, FileSystemView arg1, String type) {
              this(path, arg1, new FileExtensionFilter(type));
              // TODO Auto-generated constructor stub
         public FileChooser(String path, FileSystemView arg1, List<String> types) {
              this(path, arg1, new FileExtensionFilter(types));
              // TODO Auto-generated constructor stub
         public int showSaveDialog(Component c) {
              int ok = super.showSaveDialog(c);
              if (ok == JFileChooser.APPROVE_OPTION) {
                   FileFilter filter = getFileFilter();
                   if (filter instanceof FileExtensionFilter) {
                        File f = getSelectedFile();
                        if (!filter.accept(f)) {
                             setSelectedFile(new File(f.getAbsolutePath() + "." + ((FileExtensionFilter)filter).getType()));
              return ok;

  • UPK 3.1.5 player output - HTML file extention

    Hello,
    Does anyone know if it is possible to modifiy the HTML output in the Player deployment format? More specifically to change the filename suffix from HTML to HTM?
    Thanks,
    James

    I believe you can edit the HTML file directly after it has been generated; however, when you re-publish, you might have a problem.

  • File extention and default application

    When i open a .doc file it's open the wrong application. How can i set the default application i want to open.
    thanks

    Click the file, click File>Get Info, then under "Open With", select the app you want .doc files to open with, and click "Change All".
    Good luck!
    P.S. Welcome to Discussions!
    Message was edited by: joshz

  • File Extention in Grid View ?

    Hello All,
    I might be missing something, but is there anyway that the file extension after the file name in the grid view ??
    Might be something i'm missing
    Any help would be great !
    Thanks

    hello, darren
    quote: " is there anyway that the file extension after the file name in the grid view"
    in the View Options (apple j) select Grid View: File Info
    Grid View:
    http://tinyurl.com/29lmku
    victor

Maybe you are looking for

  • Can't post to Mircrosoft IIS machines

    Hi I am using the following code from a tutorial. But it blows up every time after a second POST. But I can post as many times as I need to a linux box or any other UNIX boxes I can think of. What is going on? Why does it not work with microsoft prod

  • Office Click-to-Run and WSUS

    Is there a reason Microsoft chose to subvert WSUS by building a separate update system in Office 2013 click-to-run versions?

  • How to include the RNDISFN.h header file in the WIN CE Build ?

    I need to include the header file RNDISFN.h in the build of the WIN CE OS. By default the file is not included. What do i need to include  in the OS design to have the Header file compiled ? Who can help ?  (thx in advance to all these brave people t

  • Buttons in External SWF's

    Using Flash CS3 AS2.0 I need to know if it is possible to make a button in an external swf. file loaded in a Main .fla to link to another frame or label in another external swf. movie. If so, how do I do it? I have a main flash file for my website wi

  • Using an Audigy Platinum Live Drive bay with Windows 7

    6Using an Audigy Platinum Li've Dri've bay with Windows 7` I bought this card/bay a long time ago: http://support.creative.com/Products/ProductDetails.aspx?catID=&subCatID=205&prodID=484 6&prodName=Audigy%20Platinum&subCatName=Audigy&Cat Name=Sound+B