Photoshop-editable templates of FP controls?

Hello,
Does anyone have any templates for the FP controls that I can use to customise in graphics software, like Photoshop or Illustrator? I am more familiar of using these than Powerpoint to create images. (I am aware that Powerpoint is recommended).
(What I probably need to edit: waveform chart, xy graph, tables, boolean buttons, text enums, string/numeric indicators, clusters, tab controls and radio buttons)
It would be much easier to start with a given template than starting completely from scratch.
Thanks
Engage! using LV2012

You realize photoshop is a image editing program right?  It doesn't made software, and it doesn't make LabVIEW compatible code.  You can make pictures all you want and paste them into a front panel of a VI but they will just be a static picture that can't be interacted with.
You can make custom controls that you import images into.  But this has limitations too and is likely not what you want.
Unofficial Forum Rules and Guidelines - Hooovahh - LabVIEW Overlord
If 10 out of 10 experts in any field say something is bad, you should probably take their opinion seriously.

Similar Messages

  • How to Set Report Template for CRDesigner control 11.5 (RDC control)?

    Hai,
    I am using the CR Designer control (CR XI R2 RDC) in VB6.0. I have crystal report templates available in Web Server.
    want to load these templates in CRDesigner control through VB6.0, Is it possible?
    Thanks
    Kesavan
    Edited by: kesavan1986 on Jul 22, 2010 8:12 PM

    It does not matter where the reports are. If you can open them up in the CR designer (crw32.exe) you can open them using any CR SDK.
    RDC samples are here:
    https://www.sdn.sap.com/irj/boc/businessobjects-samples
    RDC Developer Help File:
    C:Program FilesBusiness ObjectsCrystal Reports 11.5Helpen
    dcsdk_com_dg_docdoc
    dcsdk_com_dg.chm
    Ludek
    Follow us on Twitter http://twitter.com/SAPCRNetSup

  • I I keep gettKeep getting "Preserve photoshop editing capabilities" Error

    I purchased this resume template online and had no problems saving it as a Photoshop PDF file with the original file.
    But once I made my own changes to the resume template, as seen below I kept getting the "I keep getting the error "Preserve photoshop editing capabilities" is incompatitable with earlier versions of Phootshop. In earlier versions, you must open the PDF as a Generic PDF (not as a Photoshop PDF)" whenever I save my file as a Photoshop PDF.
    I'm using Photoshop CS6 on a Macbook Retina Display. I made sure I checked the "Layers" in the "Saved As" dialog, so not sure why its causing my Photoshop PDF files to look faint.
    I've had friends open the PDF in their computers and they see the same problem, so I'm sure it has nothing to do with my computer. I feel it has to do with a layer or my settings, but have no idea what is causing this issue. Please help!

    You seem to have two different issues.
    I kept getting the "I keep getting the error "Preserve photoshop editing capabilities" is incompatitable with earlier versions of Phootshop.
    So save a psd and turn off the »Preserve …« checkbox in the pdf dialog when a saving a pdf copy off of that.
    Please consider the distinction between »error« and »alert«.
    why its causing my Photoshop PDF files to look faint.
    I think the issue of faulty font display in pdfs created with Photoshop CS6 has been reported multiple times, but I can’t remember any conclusive solution (converting to shape layers would result in unsearchable text); you may want to do a Forum search.

  • How do I add image upload to web app edit template?

    How do I add image upload to web app edit template. When creating fields I am selecting image from the field type. But the only way to upload and image is when I create the web app item within the admin. The option to upload an image is not available when the user submit web form opens.
    Wont send any of these questions through this email anymore but really needed assistance.
    Thanks,
    Gordon

    On the Details tab of the Web App setup, under Web App Item Options; have you ticked "Allow File Upload" and specified a Default Upload Folder?

  • How to edit and update table control into database?

    I am doing table control. Here are my codes:
    *& Report  ZHERA_TABLE2
    REPORT  ZHERA_TABLE2.
    ***&SPWIZARD: DATA DECLARATION FOR TABLECONTROL 'ZTABLE_CONTROL'
    *&SPWIZARD: DEFINITION OF DDIC-TABLE
    TABLES:   ZHERA.
    *&SPWIZARD: TYPE FOR THE DATA OF TABLECONTROL 'ZTABLE_CONTROL'
    TYPES: BEGIN OF T_ZTABLE_CONTROL,
             NAME LIKE ZHERA-NAME,
             AGE LIKE ZHERA-AGE,
           END OF T_ZTABLE_CONTROL.
    *&SPWIZARD: INTERNAL TABLE FOR TABLECONTROL 'ZTABLE_CONTROL'
    DATA:     G_ZTABLE_CONTROL_ITAB   TYPE T_ZTABLE_CONTROL OCCURS 0,
              G_ZTABLE_CONTROL_WA     TYPE T_ZTABLE_CONTROL. "work area
    DATA:     G_ZTABLE_CONTROL_COPIED.           "copy flag
    *&SPWIZARD: DECLARATION OF TABLECONTROL 'ZTABLE_CONTROL' ITSELF
    CONTROLS: ZTABLE_CONTROL TYPE TABLEVIEW USING SCREEN 1000.
    START-OF-SELECTION.
    CALL SCREEN 1000.
    *&SPWIZARD: OUTPUT MODULE FOR TC 'ZTABLE_CONTROL'. DO NOT CHANGE THIS LI
    *&SPWIZARD: COPY DDIC-TABLE TO ITAB
    MODULE ZTABLE_CONTROL_INIT OUTPUT.
      IF G_ZTABLE_CONTROL_COPIED IS INITIAL.
    *&SPWIZARD: COPY DDIC-TABLE 'ZHERA'
    *&SPWIZARD: INTO INTERNAL TABLE 'g_ZTABLE_CONTROL_itab'
        SELECT * FROM ZHERA
           INTO CORRESPONDING FIELDS
           OF TABLE G_ZTABLE_CONTROL_ITAB.
        G_ZTABLE_CONTROL_COPIED = 'X'.
        REFRESH CONTROL 'ZTABLE_CONTROL' FROM SCREEN '1000'.
      ENDIF.
    ENDMODULE.
    *&SPWIZARD: OUTPUT MODULE FOR TC 'ZTABLE_CONTROL'. DO NOT CHANGE THIS LI
    *&SPWIZARD: MOVE ITAB TO DYNPRO
    MODULE ZTABLE_CONTROL_MOVE OUTPUT.
      MOVE-CORRESPONDING G_ZTABLE_CONTROL_WA TO ZHERA.
    ENDMODULE.
    Screen 1000 codes:
    PROCESS BEFORE OUTPUT.
    *&SPWIZARD: PBO FLOW LOGIC FOR TABLECONTROL 'ZTABLE_CONTROL'
      MODULE ZTABLE_CONTROL_INIT.
    *&SPWIZARD: MODULE ZTABLE_CONTROL_CHANGE_TC_ATTR.
    *&SPWIZARD: MODULE ZTABLE_CONTROL_CHANGE_COL_ATTR.
      LOOP AT   G_ZTABLE_CONTROL_ITAB
           INTO G_ZTABLE_CONTROL_WA
           WITH CONTROL ZTABLE_CONTROL
           CURSOR ZTABLE_CONTROL-CURRENT_LINE.
    *&SPWIZARD:   MODULE ZTABLE_CONTROL_CHANGE_FIELD_ATTR
        MODULE ZTABLE_CONTROL_MOVE.
      ENDLOOP.
    MODULE STATUS_1000.
    PROCESS AFTER INPUT.
    *&SPWIZARD: PAI FLOW LOGIC FOR TABLECONTROL 'ZTABLE_CONTROL'
      LOOP AT G_ZTABLE_CONTROL_ITAB.
        CHAIN.
          FIELD ZHERA-NAME.
          FIELD ZHERA-AGE.
        ENDCHAIN.
      ENDLOOP.
    *&SPWIZARD: MODULE ZTABLE_CONTROL_CHANGE_TC_ATTR.
    *&SPWIZARD: MODULE ZTABLE_CONTROL_CHANGE_COL_ATTR.
    MODULE USER_COMMAND_1000.
    Please show me where to put my codes to edit(edit directly on table control fields) and update my table control(using the 'save' button)?

    Hi,
    You have to put the following code in the PBO of screen 1000.This code would make the fields editable to make changes in the table control fields directly.
    Here there are 3 transactions.For create and change transactions, the fields will be in editable mode and for display transaction,they will be non editable mode.
    DESCRIBE TABLE tb_line LINES lin.    " tb_line is the name of the internal table for the table control
      tcl_item-lines = lin.                             '' lin hold the number of lines of the internal table
    CASE sy-tcode.
        WHEN 'ZCREATE09' OR 'ZCHANGE09'.
    ***Checking if the table control is empty or not***
          IF lin NE 0.       
            LOOP AT SCREEN.
    ***To make the screen editable****
              screen-input = 1.
            ENDLOOP.
          ELSE.
            LOOP AT SCREEN.
              IF screen-name CS 'TB_LINE'.
    ****To make the screen non-editable if no values are present in the
    ***table control****
                screen-input = 0.
                MODIFY SCREEN.
              ENDIF.
            ENDLOOP.
          ENDIF.
    Once the fields are edited and the save button is pressed,the entered values have to be populated into the Z tables.The code has to written in the PAI of the screen 1000.Here the values from the work area of the internal table are moved into the Z Table. The code will be.
    LOOP AT tb_line.
        ztm09_ekpo-ebeln = ztm09_ekko-ebeln.  "ztm09_ekko and ztm09_ekpo are the names of the Z Tables.
        ztm09_ekpo-ebelp = tb_line-ebelp.   
        ztm09_ekpo-matnr = tb_line-matnr.
        ztm09_ekpo-menge = tb_line-menge.
        ztm09_ekpo-meins = tb_line-meins.
        ztm09_ekpo-netpr = tb_line-netpr.
        ztm09_ekpo-waers = tb_line-waers.
    *****Update the entries into item table*****
        MODIFY ztm09_ekpo.
      ENDLOOP.
    Reward if helpfull
    Thanks,
    Kashyap

  • How Do I Import A Photoshop CS4 Template into Dreamweaver CS4

    Ok. Here's the deal, my friend and I spent alot of time working in Photoshop to come up with a nice template. He's even done all the coding to animate the buttons for standard, hover over, and click and all that. It's really cool, the buttons slide back and "lock" into place dependent upon which page you're on. However, I want to take all of that information and plug it into my website without loosing the button functionality. Unfortunately, every time I try to put the photoshop web template into Dreamweaver, it always converts it into an image. So, how do I add my complete photoshop web template and all it's functionality into Dreamweaver?

    I'm afraid Photoshop is a graphics program ill suited for generating good HTML and CSS code.  Use Photoshop to create your images only. Use DW to build your HTML, CSS and menus.
    Have a look at this tutorial:
    Taking  a Fireworks (or Photoshop) comp to a CSS based layout in DW
    Part 1 --
    http://www.adobe.com/devnet/fireworks/articles/web_standards_layouts_pt1.html
    Part 2 --
    http://www.adobe.com/devnet/fireworks/articles/web_standards_layouts_pt2.html
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb
    http://alt-web.blogspot.com

  • Photos no longer stacking after Photoshop Edit

    I have Lightroom 4 and Photoshop CS6 running on a Mac. I have the box checked to stack edited with originals.
    I recently moved all of my photos to a an external Raid 1 drive - I did this within Lightroom, so that Lightroom knew where everything was. Everything seemed to be fine.
    Today, I realized that after going to Photoshop and coming back into Lightroom, my photos are not stacking. Not only are they not stacking, but according to Lightroom they are not in the same folder, even though they are.
    I am not working from a collection, I am working from the actual folder structure on the drive. If I go to photoshop, edit, save and come back, when it returns to Lightroom, where normally the new edited Tiff would pop up - now it returns a black screen, saying "no photo selected". If I go to the library module, the screen is still black. If I go the top of Lightroom and click on "All Photographs" the tiff file is there next to the picture. However, it is not stacked. If I try to stack it, it says that it can't stack photos that are stored in different folders.
    I don't know where Lightroom is putting this Tiff file. The folder that I was editing from had 20 photos in it. I went into photoshop, came back with a tiff, and there are still only 20 photos in the folder, yet if I go up to all photos, it is there, so Lightroom put it somewhere.
    When I go look at my external hard drive, the tiff file is there. It is right next the raw. In the same folder. So, it seems that Photoshop is putting it back in the right folder, but Lightroom is not.
    Thanks,
    Pam

    Okay, just realized that it is putting the tiff files in a another copy of the Gmax Mini.  You can see in the screen shot that it has my working drive, and then a second version of the Gmax Mini, with just the Tiff files in it!  Is this because it is a Raid 1? 

  • Elements 10, windows 8, 64 bit, epson artisan 835 printer: prints are really dark even after using enhancements like adjusting lighting. Prints are darker than photoshop edit screen. Prints are acceptable using paint, windows photo viewer, or gallery.

    Elements 10, Windows 8, 64 bit, Epson Artisan 835 printer: Prints are really dark even after applying enhancements, like adjusting lighting. Prints are darker than Photoshop Edit Screen. Prints are acceptable using Paint, Windows Photoviewer, or Photo Gallery.

    In general theory, one now has the Edit button for their posts, until someone/anyone Replies to it. I've had Edit available for weeks, as opposed to the old forum's ~ 30 mins.
    That, however, is in theory. I've posted, and immediately seen something that needed editing, only to find NO Replies, yet the Edit button is no longer available, only seconds later. Still, in that same thread, I'd have the Edit button from older posts, to which there had also been no Replies even after several days/weeks. Found one that had to be over a month old, and Edit was still there.
    Do not know the why/how of this behavior. At first, I thought that maybe there WAS a Reply, that "ate" my Edit button, but had not Refreshed on my screen. Refresh still showed no Replies, just no Edit either. In those cases, I just Reply and mention the [Edit].
    Also, it seems that the buttons get very scrambled at times, and Refresh does not always clear that up. I end up clicking where I "think" the right button should be and hope for the best. Seems that when the buttons do bunch up they can appear at random around the page, often three atop one another, and maybe one way the heck out in left-field.
    While I'm on a role, it would be nice to be able to switch between Flattened and Threaded Views on the fly. Each has a use, and having to go to Options and then come back down to the thread is a very slow process. Jive is probably incapable of this, but I can dream.
    Hunt

  • Edit Template in Dynamic Conversion Admin is not working

    Latest oracle UCM 10gR3 is installed with patches and Site Studio 1ogR4 on windows XP and it is running fine.
    When I click on "Edit Template" button after selecting a template in Oracle Content Server >> Administration >> Dynamic Converter Admin >> Edit template nothing happens and no error message is displayed. Some times a dialog pops up with message "preparing to install template editor..". The first time I clicked on this "Edit Template" button, it has installed "Template Editor 10gR3(10.1.3.4.1) version 9.0.0" successfully and it is there in program files.
    I find that Dynamic Conversion is working fine by checking in a word doc and it generates HTML. I tried this on IE6 and IE8 on two different UCM installation by enabling IE to run all ActiveX and Javascript but it did not work on either. I am logged on as admin user.
    What could be the issue and how to resolve?

    Hi
    Check Note.941978.1 to see the possible cause of the issue and also the workaround for the same.
    Thanks
    Srinath

  • How to call translation template from bursting control file.

    Hi All,
    Greetings!!!!!!!!!!!!!
    Need help on calling translation template from the bursting control file.
    While calling the translation template from bursting control file it ends in error. Following is the error
    [063010_063059160][][EXCEPTION] The URL ( xdo://XXX.XXXPOXPRPOL.fr.CA/?getSource=true ) is invalid.
    But same control file is working for standard tempalte.
    Here is the sample control file.
    <?xml version="1.0" encoding="UTF-8"?>
    <xapi:requestset xmlns:xapi="http://xmlns.oracle.com/oxp/xapi">
    <xapi:request select="/XXXPRPOLXML/LIST_G_MANUAL_PO_NUM_TYPE/G_MANUAL_PO_NUM_TYPE/LIST_G_HEADERS/G_HEADERS">
    <xapi:delivery>
    <xapi:email id="123" server="nasmtp.us.XXX.com" port="25" from="${C_ORIGINAL_BUYER_EMAIL}" reply-to ="">
    <xapi:message id="123" to="${C_VENDOR_CONTACT_EMAIL}" cc="" bcc=""
    attachment="true"
    subject="Purchase Order ${POH_PO_NUM} revision ${POH_REVISION_NUM} from XXX">
    ${POH_VENDOR_CONTACT_NAME},
    ${C_MAIL_SUBJECT}
    PO number ${POH_PO_NUM} revision ${POH_REVISION_NUM}
    Please reply to ${C_ORIGINAL_BUYER_EMAIL} - ${POH_ORG_ID}
    Thank you,
    ${POH_BUYER}
    </xapi:message>
    </xapi:email>
    </xapi:delivery>
    <xapi:document output="${POH_PO_NUM}-rev${POH_REVISION_NUM}" output-type="pdf" delivery="123">
    <xapi:template type="rtf" location="xdo://XXX.XXXPOXPRPOL.en.US/?getSource=true" filter=".//G_HEADERS[C_VENDOR_CONTACT_EMAIL !=''and POH_ORG_ID = 54]"></xapi:template>
    <xapi:template type="rtf" location="xdo://XXX.XXXPOXPRPOL.fr.CA/?getSource=true" filter=".//G_HEADERS[C_VENDOR_CONTACT_EMAIL !='' and POH_ORG_ID = 161]"></xapi:template>
    </xapi:document>
    </xapi:request>
    </xapi:requestset>
    Please let me know how to call a translation template from bursting.
    Thanks
    Rajesh

    Got the solution...
    This is how we have to call a translation template from bursting file.
    <?xml version="1.0" encoding="UTF-8"?>
    <xapi:requestset xmlns:xapi="http://xmlns.oracle.com/oxp/xapi">
    <xapi:request select="/XXXPRPOLXML/LIST_G_MANUAL_PO_NUM_TYPE/G_MANUAL_PO_NUM_TYPE/LIST_G_HEADERS/G_HEADERS">
    <xapi:delivery>
    <xapi:email id="123" server="nasmtp.us.XXX.com" port="25" from="${C_ORIGINAL_BUYER_EMAIL}" reply-to ="">
    <xapi:message id="123" to="${C_VENDOR_CONTACT_EMAIL}" cc="" bcc=""
    attachment="true"
    subject="Purchase Order ${POH_PO_NUM} revision ${POH_REVISION_NUM} from XXX">
    ${POH_VENDOR_CONTACT_NAME},
    ${C_MAIL_SUBJECT}
    PO number ${POH_PO_NUM} revision ${POH_REVISION_NUM}
    Please reply to ${C_ORIGINAL_BUYER_EMAIL} - ${POH_ORG_ID}
    Thank you,
    ${POH_BUYER}
    </xapi:message>
    </xapi:email>
    </xapi:delivery>
    <xapi:document output="${POH_PO_NUM}-rev${POH_REVISION_NUM}" output-type="pdf" delivery="123">
    <xapi:template type="xsl-fo" location="xdo://XXX.XXXPOXPRPOL.fr.CA" filter=".//G_HEADERS[C_VENDOR_CONTACT_EMAIL !='' and POH_ORG_ID = 161 and CLANGUAGE2 = 'fr']"></xapi:template>
    <xapi:template type="rtf" location="xdo://XXX.XXXPOXPRPOL.en.US/?getSource=true" filter=".//G_HEADERS[C_VENDOR_CONTACT_EMAIL !='' and POH_ORG_ID = 54 or POH_ORG_ID = 56 or (POH_ORG_ID = 161 and CLANGUAGE2 = 'en')]"></xapi:template>
    </xapi:document>
    </xapi:request>
    </xapi:requestset>
    where
    XXX - Application shortname
    XXXPOXPRPOL - Template Code
    Hope this helps!!!!!!!!!!!!!!!!!!!!!
    Regards
    Rajesh

  • Photoshop edited image not appearing back in Aperture!!

    I'm a Lightroom user but thought I'd try out Aperture 3 for a new project to see if I prefer it.
    I scanned in an old family photo album and imported them into Aperture. Some of the photos got torn as I removed them from the pages (they were glued!!) so I thought I'd repair them in Photoshop and also try to remove the paper texture that also got 'scanned' for some of the photos.
    When I choose the option "Edit with Adobe Photoshop CS4", I can see a TIFF copy is created and it appears alongside the original image in the viewer. I can also see the physical file in Finder.
    However, after I finish editing the image in Photoshop, and save and close it, switch back to Aperture, the TIFF image just disappears from the viewer.
    I checked to see if a stack is created, but there isn't one. The physical file still exists in Finder though.
    I tried manually importing the edited TIFF image back into the project, but it still doesn't appear!!!
    The Aperture library file has increased though, so it seems like something has happened but I just can't seem to access my Photoshop edited image in Aperture.
    I have tried this a few times, with different photos, but get the same results.
    The other option I tried was regenerating thumbnails for the project but still nothing happens.
    Anyone have any suggestions, what's going on??

    How did you fix this? I'm having a similar problem!

  • Let me first say the DW CC SUCKS!!!  Why can't I edit templates in CC that I created in DW CS6?

    When I try to edit templates, ANY template, that I created in CS6, I can't.  The tool bars are grayed out.  The properties panel is grayed out.  It acts as though it is in LIVE mode, but it isn't, or not that I can see.  I'm trying to edit a link in my footer, but every time I try to place the cursor on the link to select it, the cursor is a pointing finger.  I can't select it to edit it, unless I go edit the code.  This brings up another question about editing templates.  This involves the same link in the previous question.  In CS6, I edited this link with the new link to a page.  When I SAVE ALL, I get the box asking if I want to update all pages that use the template, I say yes.  The code reflects the change, but the link doesn't change in LIVE view or Preview in a Browser.  It still tries to load the old page, which I have deleted.  This happens in DW CS6 too.  I want to use CC because I am paying for it.  But I have found it fights me every inch of the way.  Luckily I have CS6.  But it isn't very good either.  Any ideas?

    See screenshot:  If you can, switch to Design view.
    If you can't, you must be using Templates based on Fluid Grid layouts. See link below:
    Provide "Design View" for Fluid Grid Webpages
    Nancy O.

  • Adjusting Edit template in Web app

    Hi All,
    Is it possible to adjust the edit template in a web app so that certain users can edit only certain fields?
    I am using a web app to submit insurance claims for cell phone repairs, my technicans on my premises should have access to all fields in terms of editing but the insurance administrator company should have restrictions on certain fields that they can edit.
    If you look below for example, i would only like the insurance administrators to be able to see in the 'STATUS' field the drop down 'Approved' and nothing else. As well as Item name, Client First Name, Policy number, Claim Number and Quote approved date
    Thank you in advance for any assistance provided.
    http://jsfiddle.net/5NFRq/

    Nothing in BC supports this I am affraid. For someone to edit a webapp they have to become the owner of it and only they will be able to login and edit that web app item in full.

  • Problem on editing template   .dwt file

    I have a problem with dreamweaver template.
    When I edit a template in dreamweaver, and apply changes to all the pages , it propogates on all pages and .dwt file also ,
    but all the design or layout or graphics of the pages  are gone and everything gets messed up.
    Why it happens when I am editing a tamplate ?

    The problem is your link to CSS file.  Template is incorrectly pointing to files on your local hard drive.
         <link rel="stylesheet" href="file:///C|/wamp/www/mm_health_nutr.css" type="text/css" />
    The link must point to your site folder like this:
         <link rel="stylesheet" href="../mm_health_nutr.css" type="text/css" />
    Edit template.  Save & populate changes to your child pages.
    Nancy O.

  • How to edit template for report generator in stimulus profile editor in Veristand 2011?

    How to edit template for report generator in stimulus profile editor in veristand 2011?
    We are using Veristand 2011.When we run any sequence in stimulus profle editor,we get test results in form of ATML file.
    We want to customise the template for this test result generation as per our requirement.
    For example:
    Test case No.: Description of test case.
    Objectives: Explanation of objectives.
    Result: Passed/ Failed.
    Graph: If any.
    Please suggest how to do this.

    You cant really change too much in the report, you can customize TRML.xsl which is created every time in the Test Results\UUT 1 folder and that would give you some flexibility on what is shown. I dont know what a xsl is actually able to do in terms of composing data from multiple files (if at all possible) but it definitely allows you to change the visual format of the existing xml data.
    Otherwise I modified the xsl to customize the look of the xml report when opened in a browser to have less clutter and some coloring on the Pass/Fail but, the reports are XML files anyway so it's easy to extract data out of them and you can probably write your own report creation tool to compose the report in whatever format you like.

Maybe you are looking for

  • HP Pavilion dv7-6c95dx Windows 7 x4 Can't Find Hard Drive

    I have a HP Pavilion dv7-6c95dx. I am putting in a new hard drive. I can't get Windows 7 x64 to recognize it during the install. I have tried the Intel Chipset drivers from the HP download site for my laptop. I have also tried the x64 drivers from th

  • How to bind schema form data to existing objects?

    I imported an existing PDF as my template and it make all the text, check boxes and text fields into objects - Great! But now when I add a schema with my DB data field names I am unsure how to turn the existing objects on the form to the schema field

  • How do I get my photo albums on to a different pc?

    I am travelling and currently about 10,000 miles away from my trusty laptop. My problem is that I would like to get my precious photos off my Ipad and on to a computer that I am borrowing so that I can back them up and manage them on my external HD I

  • TS2570 I've tried everything here...

    Hello! I've tried everything here, but when I turn my Mac Mini on it still goes to the gray screen with a loading wheel, then after 1-2 minutes it shuts its self off. Its running OS X 10.5.8. Anybody have any ideas about what I can do?

  • Help creating rollovers/imageswap to quicktimes

    I want to create a portion of my website that has a cell with a background image with a collection of rollovers and each rollover links to a quicktime movie that I want either to load in a new window or in a new table. As far as I can tell I have a c