Export CLOBs with text into their own file?

I have a CLOB column in a table. I know it's text (XML Text to be more specific). I want to create a text file for the CLOB contents from each row in the result set of a query and I'd like to name each file based on the value in a different column in the query.
So far I haven't hit upon how to do this ... can this be done in SQL Developer?
If not, any chance it's something we'll see in a future version?
thanks
Craig

We have a long list of features that we plan to get into the next release. There will of course be people disappointed, because we will not address every feature on the Exchange. However the team are working on them. We have a balance between getting bugs fixed, adding new features, picking up changes from the IDE and getting releases to the customer base in a timely fashion.
However, quite some time back I suggested some of you put your heads together and add some extensions. There are few extensions to SQL Developer already. The extensibility of the product allows you to add and potentially share what you have done. I'm not suggestion you tackle this feature requested here, but just to address the comment that our features take longer than desired.
Regards
Sue

Similar Messages

  • I have 2 ipods,one for music and the other for old time radio shows.Each had their own file.My computer crashed and I had to buy a new one.Now both ipod files are merged into one.How do I seperate them.

    I have 2 ipods,one for music and the other for old time radio shows.Each had their own file.My computer crashed and I had to buy a new one.Now both ipod files are merged into one.How do I seperate them on the computer?

    Hi Craig
    Unfortunately, in your case, there isn't really a way to separate them as far as I can think.
    You could try restoring from a backup, and choosing an older backup perhaps
    Cheers

  • How do I put text into an Edge File that clients can edit easily afterwards

    Hi
    Can anyone explain how I can put text into an edge file (styled with google fonts) and make it so that clients can access the text and update the text as they require?
    Previous suggestion was dynamically loading a .txt file - any instructions would be most appreciated.
    Thanks.

    Hi Resdesign!
    Your code is very useful to learn how to use Json in Adobe Edge Animate!
    But I have a question: why you use ( i ) as argument of the function UpdateInfo and when you recall it you use ( index )?
    $.getJSON('slides.json', function(data){
              //for(var i=0; i<data.length; i++){
    function updateInfo(i){
                        sym.$("photo").css({"background-image": "url('"+data[i].image+"')"});
                        sym.$("pillar").html(data[i].pillar);
                        sym.$("what").html(data[i].what);
                        // position
              index = -1;
              sym.$("btn").click(function(){
              index++;
                        if (index>=5){
                                  index = 0;
              updateInfo(index);
    Many thanks for your attention!
    Davide

  • How to configure security so users can delete their own file(s)?

    I have configured our file server so that all users can write/modify in any other user's folder. However, it seems that they cannot delete their own file(s) in another user's folder. Do I have to give all users the "Modify" but not Full permission
    so that every user can delete their own file or folder even if it's in another user's folder? I still do not want user A to delete/modify any files/folders that user B originally created.
    Any help is much appreciated.

    Hi,
    Based on my research, if a user can rename a file/folder, then he/she can save it using the original name, there is no way to prevent this via permission assignment.
    You may need to use scripts to achieve this.
    Best Regards,
    Amy Wang

  • Exporting Data Quality Statistics Into An Excel File Or Database

    Hi,
               I would like to ask if it is possible to export the data profiling statistics into an excel file / flat file or a database table.
               The output required by our development team is that we would like to be able to manipulate and review the data profiling outside of the Data Quality Services User Interface.
              I'm aware that after the cleansing of a specific set of data is that you can save/export the output results into an excel file or database, however the feature I'm looking for is for the data profiling statistics itself.
     Mostly information on the knowledge base.  Specifically, how many new records this specific column has and how many unique data and invalid data this column has and etc.
              The reason for this is that so we can control and track the data profiling information and be a bit more flexible in creating reports and presenting the data.  Using the DQS user interface would not suit our needs
    for the project.   
               Sorry if this has been asked before but i've tried searching around and couldn't find any information regarding this functionality.
    Thanks!

    I'm not too sure where they are stored, but you could use the directories shown in transaction AL11 so find them.

  • Exporting xmltype table data into xml/txt file

    I want to export data stored in oracle as xmltype table into xml format file.
    I want to use alternatives to the method shown below as my xml file is large.
    set long 10000000
    spool c:\\StudentXMLJan08.xml
    SELECT
    XMLElement("Student",
    XMLForest(s.studentid "studentid",
    s.firstname "firstname",
    s.lastname "surname"),
    XMLElement("enrollments",
    (SELECT XMLAGG(
    XMLForest(sc.coursecode "courseid"))
    FROM studentcourse sc
    WHERE sc.studentid = s.studentid
    and sc.is_approved='Y'
    and sc.takenyear='2008'
    and sc.takenterm='1')))
    FROM student s
    where s.statuscode in (select studentstatuscode from studentstatus where studentstatusactive=1)
    order by s.studentid;
    spool off
    please help, thank you

    How's this one for size
    SQL> create or replace view DEPARTMENT_XML of xmltype
      2  with object id
      3  (
      4    'DEPARTMENT'
      5  )
      6  as
      7  select xmlElement
      8         (
      9           "Departments",
    10           (
    11             select xmlAgg
    12                    (
    13                      xmlElement
    14                      (
    15                      "Department",
    16                      xmlAttributes( d.DEPARTMENT_ID as "DepartmentId"),
    17                      xmlElement("Name", d.DEPARTMENT_NAME),
    18                      xmlElement
    19                      (
    20                        "Location",
    21                        xmlForest
    22                        (
    23                           STREET_ADDRESS as "Address", CITY as "City", STATE_PROVINCE as "State",
    24                           POSTAL_CODE as "Zip",COUNTRY_NAME as "Country"
    25                        )
    26                      ),
    27                      xmlElement
    28                      (
    29                        "EmployeeList",
    30                        (
    31                          select xmlAgg
    32                                 (
    33                                   xmlElement
    34                                   (
    35                                     "Employee",
    36                                     xmlAttributes ( e.EMPLOYEE_ID as "employeeNumber" ),
    37                                     xmlForest
    38                                     (
    39                                       e.FIRST_NAME as "FirstName", e.LAST_NAME as "LastName", e.EMAIL as "EmailAddre
    ss",
    40                                       e.PHONE_NUMBER as "Telephone", e.HIRE_DATE as "StartDate", j.JOB_TITLE as "Job
    Title",
    41                                       e.SALARY as "Salary", m.FIRST_NAME || ' ' || m.LAST_NAME as "Manager"
    42                                     ),
    43                                     xmlElement ( "Commission", e.COMMISSION_PCT )
    44                                   )
    45                                 )
    46                            from HR.EMPLOYEES e, HR.EMPLOYEES m, HR.JOBS j
    47                           where e.DEPARTMENT_ID = d.DEPARTMENT_ID
    48                             and j.JOB_ID = e.JOB_ID
    49                             and m.EMPLOYEE_ID = e.MANAGER_ID
    50                        )
    51                      )
    52                    )
    53                  )
    54             from HR.DEPARTMENTS d, HR.COUNTRIES c, HR.LOCATIONS l
    55            where d.LOCATION_ID = l.LOCATION_ID
    56              and l.COUNTRY_ID  = c.COUNTRY_ID
    57           )
    58         )
    59    from dual
    60  /
    View created.
    SQL> create or replace trigger DEPARTMENT_DML
      2  instead of INSERT or UPDATE or DELETE
      3  on DEPARTMENT_XML
      4  begin
      5    null;
      6  end;
      7  /
    Trigger created.
    SQL> declare
      2    cursor getDepartments is
      3      select ref(d) XMLREF
      4        from DEPARTMENT_XML d;
      5    res boolean;
      6    targetFolder varchar2(1024) :=  '/public/Departments';
      7  begin
      8    if dbms_xdb.existsResource(targetFolder) then
      9       dbms_xdb.deleteResource(targetFolder,dbms_xdb.DELETE_RECURSIVE_FORCE);
    10    end if;
    11    res := dbms_xdb.createFolder(targetFolder);
    12    for dept in getDepartments loop
    13      res := DBMS_XDB.createResource(targetFolder || '/Departments.xml', dept.XMLREF);
    14    end loop;
    15  end;
    16  /
    PL/SQL procedure successfully completed.
    SQL> select path
      2    from path_view
      3   where equals_path(RES,'/public/Departments/Departments.xml') = 1
      4  /
    PATH
    /public/Departments/Departments.xml
    SQL> select xdburitype('/public/Departments/Departments.xml').getXML()
      2    from dual
      3  /
    XDBURITYPE('/PUBLIC/DEPARTMENTS/DEPARTMENTS.XML').GETXML()
    <Departments>
      <Department DepartmentId="60">
        <Name>IT</Name>
        <Location
    SQL> quit
    Disconnected from Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    C:\Temp>ftp localhost
    Connected to mdrake-lap.
    220- mdrake-lap
    Unauthorised use of this FTP server is prohibited and may be subject to civil and criminal prosecution.
    220 mdrake-lap FTP Server (Oracle XML DB/Oracle Database) ready.
    User (mdrake-lap:(none)): SCOTT
    331 pass required for SCOTT
    Password:
    230 SCOTT logged in
    ftp> cd /public/Departments
    250 CWD Command successful
    ftp> ls -l
    200 EPRT Command successful
    150 ASCII Data Connection
    -rw-r--r--   1 SCOTT    oracle         0 NOV 10 20:18 Departments.xml
    226 ASCII Transfer Complete
    ftp: 71 bytes received in 0.01Seconds 7.10Kbytes/sec.
    ftp> get Departments.xml -
    200 EPRT Command successful
    150 ASCII Data Connection
    <Departments><Department DepartmentId="60"><Name>IT</Name><Location><Address>2014 Jabberwocky Rd</Address><City>Southlak
    e</City><State>Texas</State><Zip>26192</Zip><Country>United States of America</Country></Location><EmployeeList><Employe
    e employeeNumber="103"><FirstName>Alexander</FirstName><LastName>Hunold</LastName><EmailAddress>AHUNOLD</EmailAddress><T
    elephone>590.423.4567</Telephone><StartDate>2006-01-03</StartDate><JobTitle>Programmer</JobTitle><Salary>9000</Salary><M
    anager>Lex De Haan</Manager><Commission></Commission></Employee><Employee employeeNumber="105"><FirstName>David</FirstNa
    me><LastName>Austin</LastName><EmailAddress>DAUSTIN</EmailAddress><Telephone>590.423.4569</Telephone><StartDate>2005-06-
    25</StartDate><JobTitle>Programmer</JobTitle><Salary>4800</Salary><Manager>Alexander Hunold</Manager><Commission></Commi
    ssion></Employee><Employee employeeNumber="106"><FirstName>Valli</FirstName><LastName>Pataballa</LastName><EmailAddress>
    VPATABAL</EmailAddress><Telephone>590.423.4560</Telephone><StartDate>2006-02-05</StartDate><JobTitle>Programmer</JobTitl
    e><Salary>4800</Salary><Manager>Alexander Hunold</Manager><Commission></Commission></Employee><Employee employeeNumber="
    107"><FirstName>Diana</FirstName><LastName>Lorentz</LastName><EmailAddress>DLORENTZ</EmailAddress><Telephone>590.423.556
    7</Telephone><StartDate>2007-02-07</StartDate><JobTitle>Programmer</JobTitle><Salary>4200</Salary><Manager>Alexander Hun
    old</Manager><Commission></Commission></Employee><Employee employeeNumber="104"><FirstName>Bruce</FirstName><LastName>Er
    nst</LastName><EmailAddress>BERNST</EmailAddress><Telephone>590.423.4568</Telephone><StartDate>2007-05-21</StartDate><Jo
    bTitle>Programmer</JobTitle><Salary>6000</Salary><Manager>Alexander Hunold</Manager><Commission></Commission></Employee>
    </EmployeeList></Department><Department DepartmentId="50"><Name>Shipping</Name><Location><Address>2011 Interiors Blvd</A
    ddress><City>South San Francisco</City><State>California</State><Zip>99236</Zip><Country>United States of America</Count
    ry></Location><EmployeeList><Employee employeeNumber="120"><FirstName>Matthew</FirstName><LastName>Weiss</LastName><Emai
    lAddress>MWEISS</EmailAddress><Telephone>650.123.1234</Telephone><StartDate>2004-07-18</StartDate><JobTitle>Stock Manage
    r</JobTitle><Salary>8000</Salary><Manager>Steven King</Manager><Commission></Commission></Employee><Employee employeeNum
    ber="122"><FirstName>Payam</FirstName><LastName>Kaufling</LastName><EmailAddress>PKAUFLIN</EmailAddress><Telephone>650.1
    23.3234</Telephone><StartDate>2003-05-01</StartDate><JobTitle>Stock Manager</JobTitle><Salary>7900</Salary><Manager>Stev
    en King</Manager><Commission></Commission></Employee><Employee employeeNumber="121"><FirstName>Adam</FirstName><LastName
    Fripp</LastName><EmailAddress>AFRIPP</EmailAddress><Telephone>650.123.2234</Telephone><StartDate>2005-04-10</StartDate><JobTitle>Stock Manager</JobTitle><Salary>8200</Salary><Manager>Steven King</Manager><Commission></Commission></Employee
    <Employee employeeNumber="124"><FirstName>Kevin</FirstName><LastName>Mourgos</LastName><EmailAddress>KMOURGOS</EmailAddress><Telephone>650.123.5234</Telephone><StartDate>2007-11-16</StartDate><JobTitle>Stock Manager</JobTitle><Salary>5800<
    /Salary><Manager>Steven King</Manager><Commission></Commission></Employee><Employee employeeNumber="123"><FirstName>Shan
    ta</FirstName><LastName>Vollman</LastName><EmailAddress>SVOLLMAN</EmailAddress><Telephone>650.123.4234</Telephone><Start
    Date>2005-10-10</StartDate><JobTitle>Stock Manager</JobTitle><Salary>6500</Salary><Manager>Steven King</Manager><Commiss
    ion></Commission></Employee><Employee employeeNumber="128"><FirstName>Steven</FirstName><LastName>Markle</LastName><Emai
    lAddress>SMARKLE</EmailAddress><Telephone>650.124.1434</Telephone><StartDate>2008-03-08</StartDate><JobTitle>Stock Clerk
    </JobTitle><Salary>2200</Salary><Manager>Matthew Weiss</Manager><Commission></Commission></Employee><Employee employeeNu
    mber="127"><FirstName>James</FirstName><LastName>Landry</LastName><EmailAddress>JLANDRY</EmailAddress><Telephone>650.124
    .1334</Telephone><StartDate>2007-01-14</StartDate><JobTitle>Stock Clerk</JobTitle><Salary>2400</Salary><Manager>Matthew
    Weiss</Manager><Commission></Commission></Employee><Employee employeeNumber="126"><FirstName>Irene</FirstName><LastName>
    Mikkilineni</LastName><EmailAddress>IMIKKILI</EmailAddress><Telephone>650.124.1224</Telephone>
    <StartDate>2002-06-07</St
    artDate><JobTitle>Public Relations Representative</JobTitle><Salary>10000</Salary><Manager>Neena Kochhar</Manager><Commi
    ssion></Commission></Employee></EmployeeList></Department></Departments>226 ASCII Transfer Complete
    ftp: 40392 bytes received in 0.08Seconds 480.86Kbytes/sec.
    ftp>

  • AS3: Loading External Text into a Master File

    I have a master file that I want to load an external text
    file into. This external text file will also have an external style
    sheet applied to it.
    In your opinion, which way is best to load the external text
    file?
    1) Generate a text field dynamically in the master file using
    the TextField class and then loading the external text in.
    2) Placing (at authoring time) a dynamic text box on the
    master file's stage and loading the text in.
    3) Placing a dynamic text box in a separate .swf file and
    then loading that external swf in to the master file, then loading
    the external text into the text box.
    Any opinions?
    Thanks...
    Brenda

    On my project im going with the third choise, dont ask why,
    cause i just do.
    only difference is that i also lad my data into this external
    swf file.
    in other words i use mainly second as well as im going with
    the third one.
    In my opinion, no idea if thats the best way, but i certanly
    know that its (for me) most confortable way.

  • How can I export the query result into access(*.mdb) file?

    Dear all:
    I want to export the query result displayed in jsp into excel file
    and access file. And I have exported the result into excel format successfully, only one line should be added in the head of Jsp:
    <%@ page contentType="application/vnd.ms-excel; charset=gb2312" %>
    But how can I export it in access(*.mdb) file? I have replaced "excel"
    with "access". But it can't achive my goal.
    What should I do to achieve my goal?
    Thanks!

    The only reason your Excel export works is that Excel knows how to interpret comma separated values as an input file format. Access has no such beast.
    If you absolutely must provide info in an mdb, one solution would be to create an ODBC datasource pointing to an empty mdb, then push data into it using the jdbc:odbc bridge, then make a copy of the file and stream it down to the browser. You may run into some ugly file locking items here - set the ODBC connection so it is not shared, and that might help.
    This one is going to be ugly.
    I suppose another approach would be to write a simple VB applicatin that uses automation to create an MDB, then stream that file down to the browser from your servlet. That would almost certainly be faster than the ODBC approach.
    - K

  • Error export universes with Import Wizard to BIAR file

    We've some problems exporting universes to a BIAR file using the Import Wizard. Our environment is a BOXI R3.1 on a Windows 2003 machine with Windows AD authentication.
    When we try to export universes with the Import Wizard into a BIAR file, all objects are marked with error "Unknown export failure". This problem occours, since we have defined "Access Restrictions" with BO Universe Designer. When I unmark the option universes and select all, the export works without any problems.
    We're using Windows AD authentification, so the users and groups that are defined in the "Access Restrictions" are AD users and groups.
    How can we backup universes with Access Restrictions? Is there a known problem exporting universes that are using AD groups in the Access Restrictions?

    I have found further information in the import wizard trace logfile
    Server exception caught at .\infostore.cpp(366)
    2008/12/03 10:17:26.536|==| | | 5216|5604| |||||||||||||||(.\infostore.cpp:273) CInfoStore::Query: SELECT SI_SERVER_NAME,SI_CLUSTER_NAME,SI_SERVER_IS_ALIVE,SI_SERVER_IOR,SI_SYSTEM_INFO FROM CI_SYSTEMOBJS WHERE (SI_PARENTID = 16 AND SI_SERVER_KIND = 'aps') OR SI_ID = 4
    2008/12/03 10:17:26.552|==| | | 5216|5604| |||||||||||||||CInfoStore::QueryEx() returned 2 objects with more to come? 0
    2008/12/03 10:17:26.552|==| | | 5216|5604| |||||||||||||||CInfoSessionManager::GetApsListFromNS: APS BOJV01.fundservices.muc:6400 is alive.  Adding to active members
    2008/12/03 10:17:26.552|==| | | 5216|5604| |||||||||||||||CInfoSessionManager::ClusterInfo::UpdateRegistry: Updating bojv01.fundservices.muc:6400; to registry
    2008/12/03 10:17:26.552|==| | | 5216|5604| |||||||||||||||(.\infosessionmgr.cpp:2089) GetApslist: apsList size: 1
    2008/12/03 10:17:26.552|==| | | 5216|5604| |||||||||||||||(.\infosessionmgr.cpp:2090) GetApsListm_Members.GetCount()==1
    2008/12/03 10:17:26.552|==| | | 5216|5604| |||||||||||||||(.\infosessionmgr.cpp:2091) GetApsList m_InactiveMembers.GetSize()==0
    2008/12/03 10:17:26.661|==| | | 5216|5604| |||||||||||||||(.\wireobinit.cpp:125) CWireObject::InitializeStaticPropertyMap() - reference count: 3
    2008/12/03 10:17:26.661|==| | | 5216|5604| |||||||||||||||primer query  to get auth properties
    2008/12/03 10:17:26.661|==| | | 5216|5604| |||||||||||||||(.\infostore.cpp:273) CInfoStore::Query:
    2008/12/03 10:17:26.677|==| | | 5216|5604| |||||||||||||||CInfoStore::Query() SI_info_abuse details: OCA_Abuse exception 7683 at [.\InfoStore.cpp : 2958]  48163 {}
         ...Empty query
    2008/12/03 10:17:26.677|==| | | 5216|5604| |||||||||||||||(.\client_exception_mapper.cpp:257) Server exception: Not a valid query. (FWB 00025)
    OCA_Abuse exception 7683 at [.\InfoStore.cpp : 2958]  48163 {}
         ...Empty query

  • How to pack .class or .jar with jvm into an exe file?

    In fact, .class or .jar files are middle layer files who need JVM to explain and run them. Sometimes it's unconvenient. Why not provide some tools to pack .class or .jar with jvm into exe file?

    because java should be able to run on any OS. That is why SUN doesn't provide such tool. There are other company's who does provide such tool. Like JBuilder enterprise

  • Importing images with text into Final cut pro

    I'm using FC Studio on a 15" Powerbook 1.67 GHZ 1.5 GB RAM OSX 10.4.9 with a 300GB external HD.
    I'm editing a short film and am using some still images. I've successfully imported and used photographs edited in photoshop. I'm trying to import what is essentially a screen shot of a MSword Doc consisting of boxes, text and graphics.
    I've exported the word doc to PDF and imported to photoshop with 300dpi and saved as both jpeg and png. When viewed in photoshop the resolution of the text appears normal. It imports sucessfully but when viewed in full size in the timeline or external monitor the resolution of the text is terrible. I've also tried adjusting the scale of the image in the Canvas.
    I've read up on this issue a little and have tried reducing and increased the image size and dpi. Has anyone else tried to import still images with text??
    I apolgise if this issue has already been addressed - I've tried using the solutions provided for still images (without text) but have come up against a wall!
    I would appreciate any help or feedback!

    I have used Adobe Illustrator saved out as.png with great results.
    Larry jordan has good info for you here;
    http://www.larryjordan.biz/articles/textindex.php

  • How do I get playlists to pop out into their own windows in 11?

    I Think I could live with 11, if I could get playlists to pop up in their own windows. That How I create playlists, I have it side by side with my library.. there has got to be a way where you can still do that, right? I'm terrified of going back a step, because I don't want to reinstall 80,000+ MP3's and if I lose my hundreds of playlists, that's 8 years work down the drain!

    You will need to connect from the headphone out jact to the input for the speaker on the monitor. The Video cable does not carry audio.

  • Exporting photos with text

    Is there any way that you can export photos in lightroom 4 with text on them? (i want the same text on all of the photos)

    If you have a careful hand you can add text using the adjustment brush. Select the appropriate size you want your lines and move the exposure slider to the left for black text, right for white text. Sync to all the images. Also can be used for adding arrows, etc. Not an elegant solution but mostly workable.

  • Export animation with mp3 track to .mov file...movie sound tinny, hollow with a little reverb. How to fix?

    I'm exporting a 1 minute piece of animation with a great mp3 sound track to a .mov file. The .mov file's sound track is tinny, hollow with some reverb. I've used most high quality quicktime setting and all exports versions were not good. I using FlashCS6 and am on a iMac using OSX 10.9.5. I have also converted the mp3 to a .wav and aiff file and exported both with the animation with the same results. Any help help or workaround to solve this problem would be greatly appreciated. Thanks in advance.

    Thanks for the info Rob. The sound plays fine in Flash. The export settings are: 16-bit stereo 44.100kHz H264. Could the video H264 compression be the problem? Without the H64 compression the video triples in size. Something I'm trying to avoid. I will give no audio compression a try.

  • Can I put a MULTIVIEW's asp:views in their own files?

    I want to create a Visual Basic website that uses the ASP:MULTIVIEW to display different pages/views, and I want each ASP:VIEW to have its design and code in its own file:  View1.aspx/View1.aspx.vb, View2.aspx/View2.aspx.vb, etc.
    How do I setup the "View1.aspx" file and the "View1.aspx.vb" file to allow this arrangement?

    Please post ASP.NET questions in the ASP.NET forums:
    http://forums.asp.net

Maybe you are looking for

  • Footer navigation using pl/sql - substitution strings

    Hi I want to make a footer navigation (a BLAF like footer with the same captions and links that appear in the Tabs and the Navigation Bar) using a PL/SQL region. The code I want to use should work for any HTML DB application. The procedure could be d

  • RMI - loading a class across a network

    Hi, I've written a client-server program which uses RMI. I can run the server where I put a class into the RMI registry on port 4301 and connect to it from my client with the url : "//hostname:4301/rmi_name". This all works fine if I run it all on th

  • With the last update of Nightly, Firefox always crash, what can i do?

    I have Nightly 64 bits on Windows, since the last update it always crash, even if i have re-install... What can I do?

  • Selection Screen Disappearing on error

    Hi I am new to ABAP. Below is the driver program for Smartform, after: Step-1 Entering data at selection screen Step-2 Pressing Execution Button An error is displaying 'Document no. not found' but the problem is, as soon as the error appears, selecti

  • New GUI Buttons

    Hi, Besides the existing GUI buttons in Labview, are there any place where new GUIs can be created or downloaded? Thanks alot From Don