Crystal 2008 trial (12.0.0.683) and Microsoft Excel 5.0/95 Workbook

Hi there,
I'm testing a Data Source connection from Crystal to Excel. My error is
"Unknown Database Connector Error".
Any thoughts other than I need to have a full version of Crystal?
Thanks,
greg

Lanny,
I get exactly the same message when trying to open Microsoft Word (Mac version) documents emailed as attachments to my iPhone, so your problem is not Excel-specific. So far, Apple blames my telco, who blames my ISP, who blames Apple!
I did see somewhere on the net that attachments will not come down if you have your email sender (Mail in my case) set to Rich Text instead of plain text. However, that does not seem to be the issue. I still get this problem, regards of the format setting. The attachments seem to have been downloaded OK but cannot be opened.
Sorry I can't be more help but please let me know if you find the solution.
Michael

Similar Messages

  • Crystal 2008 version 12.0.0.683

    How should I know which updates are installed on my computer?  Is there some patch or update for my crystal version? If so, How can I download it?
    I have some reports done with the crystal that comes with peachtree premium 2005 and now with Quantum version (crystal 2008) some transactions are missed.  I think maybe some update is needed.
    Please help!

    Hello,
    Do not apply patches to OEM versions without checking with Peachtree first.
    Thank you
    Don

  • Lost program icons Microsoft word 2008 and Microsoft excel 2008

    Hi I accidently turned Microsoft excel 2008 and microsoft word 2008 into wads of trash that disappeared when I accidnetly clicked the icons and moved them from the dock into the internet box.  I talked to one person already but can't seem to get back to them and he suggested that I use MIcrosoft Office 2008 but hte problem is is that I don't have it anymore because I deleted the program from my computer a few days ago (yesterday or the day before)  I had originally bought hte program from Best Buy and downloaded it from a disc but  I can't find the disc anymore.  Do you know what  I can do to recover the programs I checked the applications, office (of course, and word and excel 2008 aren't there and they aren't in the trash I checked there too.  I thought that it might be on my back-up time machine?  And I also couldn't go to undo to change what happened.  Thank you.

    Things just don't disappear. If you didn't put them in the trash, they must be there somewhere. Click the magnifying glass at the top right side of your screen and search for Microsoft Office and see if you can locate the folder. Also, I'm wondering if you actually installed office or if you were just running it from the downloaded .dmg file? When doing the search, keep an eye open for a Microsoft Office 2008 DMG file.

  • WebUtil and Microsoft Excel: Setting cell border properties

    I'm using the CLIENT_OLE2 package shipped with WebUtil to create a Microsoft Excel spreadsheet from an Oracle 10g Form and, so far, have managed to:
    - Create multiple worksheets
    - Populate cells with values and formulae
    - Format cells, including setting font name and size, setting bold italic and underline attributes
    The final requirement is to set a border on a cell or group of cells, but this is where I'm stumped. My code thus far looks like this:
    DECLARE
      l_application   CLIENT_OLE2.OBJ_TYPE ;
      l_workbooks     CLIENT_OLE2.OBJ_TYPE ;
      l_workbook      CLIENT_OLE2.OBJ_TYPE ;
      l_worksheets    CLIENT_OLE2.OBJ_TYPE ;
      l_worksheet     CLIENT_OLE2.OBJ_TYPE ;
      l_cell          CLIENT_OLE2.LIST_TYPE ;
      l_borders       CLIENT_OLE2.OBJ_TYPE ;
    BEGIN   
      l_application := CLIENT_OLE2.CREATE_OBJ('Excel.Application') ;
      l_workbooks := CLIENT_OLE2.GET_OBJ_PROPERTY(l_application,'Workbooks') ;
      l_workbook := CLIENT_OLE2.GET_OBJ_PROPERTY(l_workbooks,'Add') ;
      l_worksheets := CLIENT_OLE2.GET_OBJ_PROPERTY(l_workbook,'Worksheets') ;
      l_arguments := CLIENT_OLE2.CREATE_ARGLIST ;
      CLIENT_OLE2.ADD_ARG(l_arguments,'Sheet1') ;
      l_worksheet := CLIENT_OLE2.GET_OBJ_PROPERTY(l_workbook,'Worksheets',l_arguments) ;
      CLIENT_OLE2.DESTROY_ARGLIST(l_arguments) ;
    --  Select cell A1
      l_arguments := CLIENT_OLE2.CREATE_ARGLIST ;
      CLIENT_OLE2.ADD_ARG(l_arguments,1) ;
      CLIENT_OLE2.ADD_ARG(l_arguments,1) ;
      l_cell := CLIENT_OLE2.GET_OBJ_PROPERTY(l_worksheet,'Cells',l_arguments) ;
      CLIENT_OLE2.DESTROY_ARGLIST(l_arguments) ;
      l_borders := CLIENT_OLE2.GET_OBJ_PROPERTY(p_cells,'Borders') ;
    --  What happens next...?
    --  Clean up
      CLIENT_OLE2.RELEASE_OBJ(l_borders) ;
      CLIENT_OLE2.RELEASE_OBJ(l_worksheet) ;
      CLIENT_OLE2.RELEASE_OBJ(l_worksheets) ;
      CLIENT_OLE2.RELEASE_OBJ(l_workbook) ;
      CLIENT_OLE2.RELEASE_OBJ(l_workbooks) ;
      CLIENT_OLE2.RELEASE_OBJ(l_application) ;
    END ;I'd be obliged for a pointer in the right direction!

    Well, in spite of 80-odd views, it looks like I've answered my own question.
    The borders around a range of cells in Excel are actually separate elements of the Borders object. You need to specify which border you want and set it individually. The code below draws a border around cells A1 to C3. Note the constants defined at the top of the listing; these are the "actual" values of the corresponding Excel constants that are referenced in the VBA code if you draw the border by hand while recording a macro.
    Enjoy!
    DECLARE
      c_automatic     CONSTANT NUMBER := -4105 ;  -- ColorIndex = xlAutomatic
      c_thin          CONSTANT NUMBER := 2 ;      -- Weight = xlThin
      c_medium        CONSTANT NUMBER := -4138 ;  -- Weight = xlMedium
      c_thick         CONSTANT NUMBER := 4 ;      -- Weight = xlThick
      c_continuous    CONSTANT NUMBER := 1 ;      -- LineStyle = xlContinuous
      c_edge_left     CONSTANT NUMBER := 7 ;      -- Border = xlEdgeLeft
      c_edge_top      CONSTANT NUMBER := 8 ;      -- Border = xlEdgeTop
      c_edge_bottom   CONSTANT NUMBER := 9 ;      -- Border = xlEdgeBottom
      c_edge_right    CONSTANT NUMBER := 10 ;     -- Border = xlEdgeRight
      l_application   CLIENT_OLE2.OBJ_TYPE ;
      l_workbooks     CLIENT_OLE2.OBJ_TYPE ;
      l_workbook      CLIENT_OLE2.OBJ_TYPE ;
      l_worksheets    CLIENT_OLE2.OBJ_TYPE ;
      l_worksheet     CLIENT_OLE2.OBJ_TYPE ;
      l_range         CLIENT_OLE2.LIST_TYPE ;
      PROCEDURE draw_border (
        p_range       IN CLIENT_OLE2.LIST_TYPE,
        p_side        IN NUMBER,
        p_weight      IN NUMBER)
      IS
        l_edge      CLIENT_OLE2.LIST_TYPE ;
        l_border    CLIENT_OLE2.OBJ_TYPE ;
      BEGIN
        l_edge := CLIENT_OLE2.CREATE_ARGLIST ;
        CLIENT_OLE2.ADD_ARG(l_edge,p_side) ;
        l_border := CLIENT_OLE2.GET_OBJ_PROPERTY(l_range,'Borders',l_edge) ;
        CLIENT_OLE2.DESTROY_ARGLIST(l_edge) ;
        CLIENT_OLE2.SET_PROPERTY(l_border,'LineStyle',c_continuous) ;
        CLIENT_OLE2.SET_PROPERTY(l_border,'Weight',p_weight) ;
        CLIENT_OLE2.SET_PROPERTY(l_border,'ColorIndex',c_automatic) ;
        CLIENT_OLE2.RELEASE_OBJ(l_border) ;
      END draw_border ;
    BEGIN   
      l_application := CLIENT_OLE2.CREATE_OBJ('Excel.Application') ;
      l_workbooks := CLIENT_OLE2.GET_OBJ_PROPERTY(l_application,'Workbooks') ;
      l_workbook := CLIENT_OLE2.GET_OBJ_PROPERTY(l_workbooks,'Add') ;
      l_worksheets := CLIENT_OLE2.GET_OBJ_PROPERTY(l_workbook,'Worksheets') ;
      l_arguments := CLIENT_OLE2.CREATE_ARGLIST ;
      CLIENT_OLE2.ADD_ARG(l_arguments,'Sheet1') ;
      l_worksheet := CLIENT_OLE2.GET_OBJ_PROPERTY(l_workbook,'Worksheets',l_arguments) ;
      CLIENT_OLE2.DESTROY_ARGLIST(l_arguments) ;
    --  Select the box with top-left of A1 and bottom-right of C3.
      l_arguments := CLIENT_OLE2.CREATE_ARGLIST ;
      CLIENT_OLE2.ADD_ARG(l_arguments,'A1:C3') ;
      l_range := CLIENT_OLE2.GET_OBJ_PROPERTY(p_worksheet,'Range',l_arguments) ;
      CLIENT_OLE2.DESTROY_ARGLIST(l_arguments) ;
    --  Draw border along the left edge of cells in range
      draw_border(l_range,c_edge_left,c_thick) ;
    --  Draw border along the top edge of cells in range
      draw_border(l_range,c_edge_top,c_thick) ;
    --  Draw border along the right edge of cells in range
      draw_border(l_range,c_edge_right,c_thick) ;
    --  Draw border along the bottom edge of cells in range
      draw_border(l_range,c_edge_bottom,c_thick) ;
    --  Clean up
      CLIENT_OLE2.RELEASE_OBJ(l_range) ;
      CLIENT_OLE2.RELEASE_OBJ(l_worksheet) ;
      CLIENT_OLE2.RELEASE_OBJ(l_worksheets) ;
      CLIENT_OLE2.RELEASE_OBJ(l_workbook) ;
      CLIENT_OLE2.RELEASE_OBJ(l_workbooks) ;
      CLIENT_OLE2.RELEASE_OBJ(l_application) ;
    END ;It's worth pointing out that the code above has been culled from my specific procedure and has been simplified. It hasn't been tested, although the DRAW_BORDER nested procedure has been copied straight from working code.

  • Java Swing and Microsoft Excel

    How do you open a Microsoft Excel  file from swing?
    please give a example.

    Hi,
    try these APIs:
    [http://poi.apache.org/]
    [http://jexcelapi.sourceforge.net/]
    Once you get the content of the files, it's up to you how you display it in your swing application.
    Demos and tutorials can be found on these sites as well.

  • Can be use SAP Crystal Presentation Design 2011 in Windows 8 and Microsoft Office 2013?

    I had problems in converting a design to a presentation in Power Point, but I have no problems in Word and PDF, why?

    Hi Marco,
    Please repost to the BI Dashboards space.
    -Abhilash

  • How do I automate a large catalog with several unique sections using Data Merge and Microsoft Excel?

    My boss would like me to use data merge to create a catalog with 300+ pages and unique data fields on almost every page. It is an informational catalog that would contain pictures and several unique fitment and specification fields for each product that we sell and manufacture on each page. For years the catalog was made and modified manually in quark express. Is it possible to use data merge to recreate such a complex document? Does anyone have any useful reccomendations or links for tackling this project? I really appreciate any advice or help.
    Thank You,
    Kevin
    Message was edited by: kpalombi

    Online video
    http://tv.adobe.com/watch/instant-indesign/automating-a-catalog-with-data-merge/
    Software
    http://www.65bit.com/home/home.shtm
    Data Merge Tips
    http://www.theindesigner.com/blog/episode-43-data-merge-video

  • Error with Oracle BI Publisher and Microsoft Excel

    Hi,
    I am using Oracle BI 10.1.3.3.0 in Windows XP. Whenever I am clicking on Login of Oracle BI Publisher Menu of Microsoft Excel, it is throwing me following error
    Error: Could not get server version: Invalid procedure call or argument.
    Everything is fine with MS Word. I have installed Analyzer for Excel Tool provided with th Oracle BI version mentioned above. I am having network installation for MS Office 2003. Can anybody give a solution please.
    Thanks in advance
    Rajith

    Hi,
    I am having the same problem. Any answers?
    Regards.

  • Crystal 2008 visual studio components

    Good Afternoon All,
    I have a licensed copy of visual studio.net 2005.
    I have a licensed copy of crystal 11 r 2.
    I have a licensed copy of crystal reports basic 2008 (came with SAP Business One as we are a partner).
    My version of visual studio has crystal component: crystal desicions engine 10.2
    I want to get up to crystal component in visual studio upgraded to crystal desicions engine version 12.
    Where can I get the most recent vs.net crystal component?
    thanks
    John

    Crystal Reports Basic 2008 usually references the 10.5 that comes with Visual Studio 2008. Unfortunately I do not know off hand what version is in SAP Business One,. However I noticed at this page: https://www.sdn.sap.com/irj/scn/downloads?rid=/library/uuid/d0a0c14b-0e20-2b10-939b-e93a19f14c12
    Contains the Crystal 2008 add-in for Business one and its install instructions if followed will get the .NET runtime installed.
    Trevor

  • Best Complete Tech Book of Crystal 2008 for Developers

    Can someone recommend a really good Crystal 2008 tech book with TIPS , tricks and ideas for DEVELOPERS?
    Thanks,
    Tanya.

    Really? I have never seen a bad review on it.
    Yes I have it and I don't need any other book for CR2008. My copy is getting very dog-eared.
    You can probably find a copy at your favorite bookstore to peruse so you can decide for yourself. One of my co-workers found ia copy at Barnes and Noble recently-I had to order one.
    In fact, his website is [http://www.CrystalBook.com]
    Debi
    Edited by: Debi Herbert on Apr 7, 2011 3:55 PM

  • Crystal Reports 2008 Trial crashes; crw32.exe error; any fix?

    I downloaded the trial for Crystal Reports 2008 and I can open the application fine, but when I go to create a report and click on the u201CCreate New Connectionu201D for the database I get a Just-in-time error for crw32.exe and my application shuts down. 
    Iu2019ve been trying to look for a resolution in your forums but could not find anything.  I check for updates it says there are none; I've uninstalled and reinstalled already didn't fix it; I've download sp1 manually and installed but no luck.
    I do have MS SQL Server 2008 installed on my system, could this be causing some problems? 
    I'm running Windows XP, also have VS .NET 2003 installed, but I'm only wanting to use CR 2008 application.
    Similar to this existing problem: An unhandled Win32 exception occurred in crw32.exe 5048. Crystal 2008 Crash
    I cannot uninstalled SQL Server 2008 because I need it.

    Hi Henry,
    Crystal Reports 2008 is not officially tested with SQL Server 2008.
    Try with this:
    1. Reduce the 'Hardware acceleration' setting in Microsoft Windows.
    2. To access the 'Hardware acceleration' setting in Microsoft Windows:
    Click Start > Settings > Control Panel > System > Display > Settings > Advanced > Troubleshooting.
    There are typically six possible settings for 'Hardware acceleration': from 'None' to 'Full'.
    If you are using Dual monitor run the CR application on primary monitor cause Dual monitor is not tested with CR.
    If still the issue occurs then manually un-install and reinstall the application.
    Regards,
    Shweta

  • Crystal Reports 2008 Trial Version Runtime Error

    Hello
    Yesterday I've downloaded Crystal Reports 2008 (Trial Version). The installation was successful. I've got no error.
    Anyway, I'm unable to start Crystal Reports. I get the following error:
    Microsoft Visual C++ Runtime LIbrary
    Runtime Error!
    Program: ...ects\BusinessObjects Enterprise 12.0\win32x86\crw32.exe
    Abnormal Program Termination
    I've already tried all "solutions" mentioned in Re: Crystal Reports 2008 trial version ERROR (DEP, HW acceleration, etc.) but without success (I'm running Windows XP with SP2). I've also updated Microsoft Visual C++ 2005 resp. 2008 redistributables...
    Can someone help me?
    Thank you!

    Hi Patrick,
    Nothing Strange about it. You need local Admin rights to access registry and other parts and CR needs the same.
    Check anti-virus or possibly firewall settings. When you installed did the installer ask you to allow All users to run CR?
    You may want to check with your IT guys, they may have modified your local user group to not allow some rights.
    Bottom kine is your PC security is blocking access that CR needs under your local user account.
    When you do try to run it does UAC pop up a message to allow you to run CR Designer? If not then it may be you have customer settings for that also.
    Search Microsofts site on more info on user rights.
    Thanks
    Don

  • Trial of Crystal 2008 with Crystal 8 installed?!

    I have Crystal Reports 8 installed on my PC.  I use it quite a lot.
    However, I have been thinking of finally uypgrading to Crystal 2008 Advantage (Crystal and XCelsius).
    I've downloaded the zip files, but I have installed them yet.  If I install the trial version, will it destroy my Crystal 8 install.  I don't know if I am going to buy Crystal 2008 yet.
    I don't want to destroy my Crystal 8 install just to try Crystal 2008 and then end up not buying Crystal 2008.  I would have a broken installation that point.
    Can you have Crystal 8 installed on same PC while reviewing Crystal 2008?
    Thanks,

    Glenn:
    I have had multiple versions of Crystal on my machine at the same time and the only issue I have had personally is that it always wants to open up .rpt files with the last version I installed.  I have had 8.5, 10, XI R2, and 2008 all on my laptop at the same time, and was able to use each of them individually without an issue.  I wouldn't be afraid to install 2008 on your PC.
    HTH
    Brian

  • Does Crystal 2008 V2 have a migration tool for 8.5 and up?

    Does Crystal 2008 V2 have a migration tool? If so will it migrate 8.5 and up Crystal Reports? What are some of the problems that I will encounter?

    No, just open the reports up and verify the database

  • AWD/BI 3.2 and Crystal 2008 interaction

    I am using AWD/BI 3.2, which uses Crystal 11.5 runtime libraries and developing Crystal Reports using Crystal 2008.  The reports work but I have some dialog boxes that pop up that I would like to suppress.  Does anyone know how to suppress the below dialog boxes?
    The dialog box header is Crystal Reports ActiveX Designer.  And the informational message is "This report was created with a version of Crystal Reports which is later than the version you are running.  Some features used in the report may not be supported.
    The second dialog box header is Verify Database.  The informational message is 'The database file "tblRptCriteria" has changed.  Proceeding to fix up the report!"

    Hello,
    I don't know what AWD is but those message boxes are due to the info they display. You can't supress them.
    We always recommend you design the reports in the same version as the runtime for his reason.
    The Verify is due to you having one of the Verify Database in Report Options enabled. That you can check off and save the report. Unless you did not verify the DB in which case the DB info is not the same as the report or could be the CR 2008 report is using a different DB driver than the 11.5 app is aware of.
    Don

Maybe you are looking for