Re: Fwd: Link Problems With Borland C++ 4.52

I have seen this problem before in another context, and I'll offer the
cause and solution in the hope that they will apply to the Crystal problem.
Many Windows based applications rely on PASCAL calling conventions, which
change the way parameters are handled in function/method calls. They
indicate this by placing one of the following immediately before the
function name in the prototype declarations:
- pascal_far (or something like that)
- WINAPI
- some other typedef of either of the above
For example:
int WINAPI AddTotal(int valueA, int valueB);
Unfortunately, v2.0 of Forte does not provide any mechanisms for changing
the calling conventions of the prototypes in the generated C++ wrapper
library, so when you compile that code, the linker fails. I think that the
compiler may generate different symbols depending on calling conventions,
so that's why it fails.
To fix this, don't autocompile your code, but generate the distribution, go
into the generated C++ files and look for the function prototypes (I think
you can search for FORTE_NO_PROTOTYPES), add WINAPI to the appropriate
places in the prototype definitions (see above) and use fcompile to build
the library. Instructions for fcompile are in the Interfacing With
External Systems manual.
Hope this helps,
James
At 11:05 AM 5/29/97 PDT, you wrote:
>
We are trying to wrapper Crystal Reports from Forte. I know that there
are a number of other people in this same boat, as I've seen messages
posted here at various points during the past few weeks. We are having
a particular problem with getting the compile to go through, which we
have sent in to Forte Tech Support. I'm forwarding the message I sent
Tech Support to this group in the hopes that someone here may have
already seen and resolved a similar problem.
Thanks in advance for any help you can offer!
Dale V. Georg
Indus Consultancy Services [email protected]
Mack Trucks, Inc. [email protected]
>
Date: Wed, 28 May 97 13:47:20 PDT
From: dg7077a
To: Forte Technical Support
Cc: Gardner, Steve
Subject: Link Problems With Borland C++ 4.52
Name of requestor: [Dale V. Georg / Alaiah Chandrashekar]
Company: [Indus Consultancy Services]
Phone for callback: [(610) 709-3956]
Customer Site: [Mack Trucks, Inc.]
Product: [Forte]
Version of Forte: [2.0.H.1]
Server OS: [SunOS 5.5.1]
Client OS: [Windows 3.1]
DBMS: [Oracle 7.2.3]
Reproducible?: [Yes]
Brief description: [Link Problems With Borland C++ 4.52]
Complete description of problem or question:
We are attempting to write a C-wrapper interface from Forte to Crystal
Reports' Report Engine. We are using Borland C++ version 4.52.
Unfortunately, we have been unable to get a clean compile after a day
and half of effort. We get as far as the link stage of the
compilation, and
the compiler aborts with an "Unknown symbol" error message for each
of the functions we are trying to wrapper. We have tried a number of
ideas to fix this problem, and are continuing to try to solve it on
our own,
but any help would be greatly appreciated. Please have someone call
Alaiah Chandrashekar at the number above as soon as possible.
Thanks!
Dale V. Georg
Indus Consultancy Services [email protected]
Mack Trucks, Inc. [email protected]
James Urquhart [email protected]
Product Manager phone: (510) 986-3513
Forte Software, Inc. fax: (510) 869-2092

James,
Thanks for your quick response. Yesterday we had been running down
the path of examining the calling conventions and trying to change them
to PASCAL, but without much success. After receiving your note, we
went back over it again, and this time we were able to finally to piece it
together. In addition to editing the Forte-generated .cc file to declare
the functions as PASCAL, we also had to turn off the compiler's case
sensitivity. (The Crystal .lib file had the function names in mixed case,
but the Borland compiler was generating all uppercase for the names.)
Now I had actually tried this yesterday and it didn't work (in fact it
generated a whole bunch of new errors) - because until we took a
second look at it today, I didn't realize that Borland's linker actually has
TWO flags that control case sensitivity. If you only turn one or the
other off, things can get pretty ugly looking. As soon as we turned
both of them off, the compile and link went beautifully. Again, thanks
for your help; hopefully we are over the worst of it now!
Dale
I have seen this problem before in another context, and I'll offer the
cause and solution in the hope that they will apply to the Crystalproblem.
>
Many Windows based applications rely on PASCAL callingconventions, which
change the way parameters are handled in function/method calls.They
indicate this by placing one of the following immediately before the
function name in the prototype declarations:
- pascal_far (or something like that)
- WINAPI
- some other typedef of either of the above
For example:
int WINAPI AddTotal(int valueA, int valueB);
Unfortunately, v2.0 of Forte does not provide any mechanisms forchanging
the calling conventions of the prototypes in the generated C++wrapper
library, so when you compile that code, the linker fails. I think thatthe
compiler may generate different symbols depending on callingconventions,
so that's why it fails.
To fix this, don't autocompile your code, but generate thedistribution, go
into the generated C++ files and look for the function prototypes (I think
you can search for FORTE_NO_PROTOTYPES), add WINAPI tothe appropriate
places in the prototype definitions (see above) and use fcompile tobuild
the library. Instructions for fcompile are in the Interfacing With
External Systems manual.
Hope this helps,
James
At 11:05 AM 5/29/97 PDT, you wrote:
We are trying to wrapper Crystal Reports from Forte. I know that
there
are a number of other people in this same boat, as I've seenmessages
posted here at various points during the past few weeks. We arehaving
a particular problem with getting the compile to go through, whichwe
have sent in to Forte Tech Support. I'm forwarding the message Isent
Tech Support to this group in the hopes that someone here mayhave
already seen and resolved a similar problem.
Thanks in advance for any help you can offer!
Dale V. Georg
Indus Consultancy Services [email protected]
Mack Trucks, Inc.
[email protected]
>
>>
Date: Wed, 28 May 97 13:47:20 PDT
From: dg7077a
To: Forte Technical Support
Cc: Gardner, Steve
Subject: Link Problems With Borland C++ 4.52
Name of requestor: [Dale V. Georg / AlaiahChandrashekar
Company: [Indus Consultancy Services]
Phone for callback: [(610) 709-3956]
Customer Site: [Mack Trucks, Inc.]
Product: [Forte]
Version of Forte: [2.0.H.1]
Server OS: [SunOS 5.5.1]
Client OS: [Windows 3.1]
DBMS: [Oracle 7.2.3]
Reproducible?: [Yes]
Brief description: [Link Problems With Borland C++ 4.52]
Complete description of problem or question:
We are attempting to write a C-wrapper interface from Forte to
Crystal
>>
Reports' Report Engine. We are using Borland C++ version 4.52.
Unfortunately, we have been unable to get a clean compile after aday
and half of effort. We get as far as the link stage of the
compilation, and
the compiler aborts with an "Unknown symbol" error message foreach
of the functions we are trying to wrapper. We have tried a numberof
ideas to fix this problem, and are continuing to try to solve it on
our own,
but any help would be greatly appreciated. Please have someonecall
Alaiah Chandrashekar at the number above as soon as possible.
Thanks!
Dale V. Georg
Indus Consultancy Services [email protected]
Mack Trucks, [email protected]
James Urquhart [email protected]
Product Manager phone: (510) 986-3513
Forte Software, Inc. fax: (510) 869-2092-----------------------------------------------------------------------------------
Dale V. Georg
Indus Consultancy Services [email protected]
Mack Trucks, Inc. [email protected]
[email protected]------------------

Similar Messages

  • Fwd: Link Problems With Borland C++ 4.52

    We are trying to wrapper Crystal Reports from Forte. I know that there
    are a number of other people in this same boat, as I've seen messages
    posted here at various points during the past few weeks. We are having
    a particular problem with getting the compile to go through, which we
    have sent in to Forte Tech Support. I'm forwarding the message I sent
    Tech Support to this group in the hopes that someone here may have
    already seen and resolved a similar problem.
    Thanks in advance for any help you can offer!
    Dale V. Georg
    Indus Consultancy Services [email protected]
    Mack Trucks, Inc. [email protected]
    Date: Wed, 28 May 97 13:47:20 PDT
    From: dg7077a
    To: Forte Technical Support
    Cc: Gardner, Steve
    Subject: Link Problems With Borland C++ 4.52
    Name of requestor: [Dale V. Georg / Alaiah Chandrashekar]
    Company: [Indus Consultancy Services]
    Phone for callback: [(610) 709-3956]
    Customer Site: [Mack Trucks, Inc.]
    Product: [Forte]
    Version of Forte: [2.0.H.1]
    Server OS: [SunOS 5.5.1]
    Client OS: [Windows 3.1]
    DBMS: [Oracle 7.2.3]
    Reproducible?: [Yes]
    Brief description: [Link Problems With Borland C++ 4.52]
    Complete description of problem or question:
    We are attempting to write a C-wrapper interface from Forte to Crystal
    Reports' Report Engine. We are using Borland C++ version 4.52.
    Unfortunately, we have been unable to get a clean compile after a day
    and half of effort. We get as far as the link stage of the
    compilation, and
    the compiler aborts with an "Unknown symbol" error message for each
    of the functions we are trying to wrapper. We have tried a number of
    ideas to fix this problem, and are continuing to try to solve it on
    our own,
    but any help would be greatly appreciated. Please have someone call
    Alaiah Chandrashekar at the number above as soon as possible.
    Thanks!
    Dale V. Georg
    Indus Consultancy Services [email protected]
    Mack Trucks, Inc. [email protected]
    -------------

    We are trying to wrapper Crystal Reports from Forte. I know that there
    are a number of other people in this same boat, as I've seen messages
    posted here at various points during the past few weeks. We are having
    a particular problem with getting the compile to go through, which we
    have sent in to Forte Tech Support. I'm forwarding the message I sent
    Tech Support to this group in the hopes that someone here may have
    already seen and resolved a similar problem.
    Thanks in advance for any help you can offer!
    Dale V. Georg
    Indus Consultancy Services [email protected]
    Mack Trucks, Inc. [email protected]
    Date: Wed, 28 May 97 13:47:20 PDT
    From: dg7077a
    To: Forte Technical Support
    Cc: Gardner, Steve
    Subject: Link Problems With Borland C++ 4.52
    Name of requestor: [Dale V. Georg / Alaiah Chandrashekar]
    Company: [Indus Consultancy Services]
    Phone for callback: [(610) 709-3956]
    Customer Site: [Mack Trucks, Inc.]
    Product: [Forte]
    Version of Forte: [2.0.H.1]
    Server OS: [SunOS 5.5.1]
    Client OS: [Windows 3.1]
    DBMS: [Oracle 7.2.3]
    Reproducible?: [Yes]
    Brief description: [Link Problems With Borland C++ 4.52]
    Complete description of problem or question:
    We are attempting to write a C-wrapper interface from Forte to Crystal
    Reports' Report Engine. We are using Borland C++ version 4.52.
    Unfortunately, we have been unable to get a clean compile after a day
    and half of effort. We get as far as the link stage of the
    compilation, and
    the compiler aborts with an "Unknown symbol" error message for each
    of the functions we are trying to wrapper. We have tried a number of
    ideas to fix this problem, and are continuing to try to solve it on
    our own,
    but any help would be greatly appreciated. Please have someone call
    Alaiah Chandrashekar at the number above as soon as possible.
    Thanks!
    Dale V. Georg
    Indus Consultancy Services [email protected]
    Mack Trucks, Inc. [email protected]
    -------------

  • Problem with Borland Builder C++ AND NI-DAQ 6.9.3

    Hello,
    I am trying to porting a Data Acquisition application developed with Borland Builder 4.0 and NI-DAQ 6.5.1, changing data acquisition Hardware. Now I am using PCI - 6036E, with Ni driver version 6.9.3. My s.o. is Windows XP Professional.
    When I link application with nidaq32b.lib and nidex32b.lib and launch my EXE, without call any DAQ function, when I close my window PC is resetting! If I try to use Ni driver version 7.0 or 7.3, I obtain a GP fault as soon I start program.
    I think that there are problem of disallineament or other inside file EXE generated. I have tried to generate new file lib with implib utility from DLL, but with the same result.
    If anyone cannot help me, I think to substitute call to DAQ functions inside C code with DLL or EXE developed in Visual Basic.
    Can anyone give me any help for this? Is it better use VB 4.0 or VB 6.0?
    Thank you for your attention.
    Fabrizio

    Hi,
    I would definitely suggest to create the dll in VB6. There are shipping examples for VB6, so that you can see how it looks to program in VB6 with DAQ. These examples can be found at C:\Program Files\National Instruments\NI-DAQ\Examples\VBasic.
    I hope this helps. Have a Great Day!
    George

  • Linker problem with M series card

    I am attempting to incorporate a PCI 625 DAQ M series card into a Borland C++Builder application. To get started I have used the code from the example "ContAccelSamps-IntClk-AnlgStart" in the documentation. I have added "nidaq32.lib" to the project and included "nidaq.h" and "NIDAQmx.h" as in the example.
    Everything compiles correctly. However on linking I get the error message "NIDAQ32.LIB contains invalid OMF record, type 0x21 (possibly COFF). I am not sure what this means.
    Is this a bug in NIDAQ32.LIB or am I missing something simple here?
    In an attempt to resolve the problem I have rebuilt the library from the dll, but this doesn't work either, the new library is only 215 KB whereas the original one is 886 KB.
    So as a su
    bsidiary question might I ask how you build libraries from NI dlls.

    Hello,
    I apologize for the confusion around this. Currently, the NI-DAQmx C import library for Borland is only installed with LabWindows/CVI DAQ support. However, I am attaching the NI-DAQmx 7.3 import library that you will need for Borland support. We are working on posting this in a Knowledge Base on our website. Here is a link to another discussion forum thread in which a customer used with borland's "coff2omf" to work-around the linker issues they were seeing. This link also discusses another problem you may run into with floating point initialization that you may need to take into account. Hopefully this information will enable you to get your application working with Borland and M Series. If not, please let us know.
    http://exchange.ni.com
    /servlet/ProcessRequest?RHIVEID=101&RPAGEID=137&HOID=5065000000050000005EC50100&HTHREAD=000116062&UCATEGORY_0=_30_%24_12_&UCATEGORY_S=0
    thanks,
    Nicole
    Attachments:
    NIDAQmx.lib ‏487 KB

  • Link Problem with port 2 in WLC 4402

    Hi,
    I have a problem with port 2 in Wireless Lan Controler 4402. The problem is that the distribution port 2 of the WLC not link with the switch (3750). We receive the WLC and we follow the autostart wizard and we enable LAG. The wizard finish, I restart the system and all works fine. The two distribution ports of WLC, 1 and 2 appears UP and the LAG works correctly. After this we upgrade the firmware of the WLC to the version AIR-WLC4400-k9-6-0-182-0.aes and we restart the system again but at this time port 2 does not link and port 1 link OK. We do not know the reason why port 2 doesn´t link? Could you help me ?
    Thank in advance.
    Regards.

    Does it properly refuse authentication ? Or does the login page stop appearing or something ?
    There was a bug with the webauth dying under heavy load, regardless of number of identical accounts used.
    One good way for you to check would be, when problem occurs, to create a second backup guest user and see if that would start working. If it doesn't, the account is not the problem.
    I'm not aware of any maximum of usage of the same account.
    Which 4.2 exactly are you running ?

  • AD Link Problem with ACS 5.2

         Hello at all,
    we have a Problem with a ACS 5.2. We have installed the Software on a VMware. The Machine ist running without Problems.
    Now i would like connect to our AD. The connection is o.k but i can not see any Groups when i make a search.
    I get a failure Message in the CLI:
    *** glibc detected *** corrupted double-linked list: 0x43b77858 ***
    Did anyone know this Message?
    Thanks for help.

    Hi Erick,
    thanks for your Answer.
    I can solve this Problem. I have Installed the ACS Version 5.2 but without the new Patch.
    With this Patch i can connect to the AD and can see all Groups.
    regards
    Andreas

  • OCCI problem with Borland

    I try to compile OCCI example with Borland C and receiving this error in occiCommon.h:
    typedef OCCI_STD_NAMESPACE::basic_string<utext> UString;
    1) Too few arguments in template class name 'basic_string'
    2)Declaration terminated incorrectly

    I have the same task: using OCCI class in Borland C++Builder (v6) environment. Unfortunately, the only version of OCCI-class prepared by Oracle is for MS VC++. No one tool translate that, does not matter, whether you use ORAOCCI.DLL and implib.exe or ORAOCCI9.LIB and coff2omf.exe.

  • Link problem with Fireworks CS5 - net::ERR_FILE_NOT_FOUND

    Hi,
    I'm having trouble with the hotspot links in Fireworks CS5. When I've added the links I want and click F12 to preview in Chrome, it loads the page without problems. But when I click on one of the links I get the following message:
    Webpage cannot be found
    There was no webpage at the adress: file:///C:/Users/Margiiie/AppData/Local/Temp/FWTemp/LinkedPage.htm
    Error 6 (net::ERR_FILE_NOT_FOUND): Could not find file or catalogue.
    (translated by me from Swedish to English, so it might not be 100% correctly translated).
    A few days ago I used Revo Uninstaller Pro to remove some files from my computer, and I remember clicking "Remove temporary Internet Files" on all of the web browsers. This might have something to do with the problem, but I can't seem to able to recover the files I removed..
    So, I really need som help here! Do you think that the removal of the temp files is the problem? What can I do about it?
    Regards,
    Margiiie

    If you tried a) refreshing/reloading the page within the browser and b) emptying the contents of the FWTemp folder, and neither of those worked, then I'd take another look at the link itself. Assuming there are other links on the page you've created, compare the links within Fireworks: Are there any differences between them? Would it be possible to re-enter or re-establish the problem link's URL?
    One thing I notice in your intial post is that "LinkedPage.htm" seems all by itself within the FWTemp folder, instead of being placed in a subfolder. When I generate a preview in FW, it places the contents in a folder (named with a random number), like this:
    file:///Users/doug/Library/Application%20Support/Macromedia/Fireworks%208/FWTemp/24327926/ 00000002.htm
    Generally, a website observes a folder hierarchy. I'd kind of expect "LinkedPage.htm" to be in the same folder as the "index.htm" or whatever your problem page is called.
    I have to admit, I don't use Fireworks to create and preview web pages, so I'm not completely versed in how it works for a full website. I'm not 100% certain that previewing an individual page should result in a functional preview of an entire site. In other words, I'm not certain that links are supposed to work if they lead to another page within the same site (assuming you're previewing one page at a time). If this remains a problem, I'd suggest letting it go for now. Try File > Export instead, and make sure you're exporting all the pages in the site. If that works, then you're in good shape.

  • Image Link Problem with Dreamweaver CS4?

    On my website, I have several images that link to other parts on my website. These work no problem when I preview the site, but after I test the links, the images that had those links have purple outlines that really clash with my website's design. Will users see this if they click on my links, and then return to the page? I'm using CS4 right now, and never recalled having this issue come up when using MX. Thanks for the help.

    I got stuck on this one too - not realising that Dreamweaver automatically palces a border on every image link - but the simplest way I found was to have my "Properties" panel showing on the bottom and input 0 into the "Border" box. By having this panel open you can see if you have accidently applied any styles to the image, where it links to, Image size attributes and the Image name.

  • Archive Link problem with redundant document names

    Hi all,
    I have a tricky problem in archive link. I would like to attach some different documents to an HR/PD Organisation unit ( objekttyp pdotype_o )
    All customizing works fine but the problem is, all documents attached to one busines object ID have the same name ( in this case objectnumber.pdf)
    I am not lucky with this issue because  the users must be able to see all documents ( via document finder ) attached to the org. unit  and all what the users get, is a list of  one or more documents with exactly the same name.
    In some cases this are about 10 different documents and this issue is a very bad solution because users have to open all attached docs to recognize which one they need.
    During the import/check in of the documents via transaction OAAD and OAWD, SAP renames the original document name.pdf  into the related object ID.pdf and there is no way to rerename it or influence this process.
    I tried to use some scan software with SAP interface but unfort. with the same result because software of this kind use the archive link interface too and cannot influence the process of check in and rename.
    Has anybody an idea ( third party software, customer development or something like this ) to prevent this problem and give me the possibility to stay with the original document names or change it after check in?
    Thank you in advance
    Rayko

    How you fix this problem?
    I'm with the same problem. Could you help me please?
    Edited by: broullon on Jul 16, 2009 5:31 PM

  • Link problem with Solaris 9

    hello,
    i habe a problem in linking my application under the Solaris 9 os using the forte cc environment. Linking on an older machine under Solaris 8 is ok.
    I get this error:
    ld: fatal: file fz_df_db_anmelden.o: wrong ELF class: ELFCLASS64
    ld: fatal: File processing errors. No output written to FZDFNO
    There must be a conflict with 32 and 64 bit libraries. How can i link either in 32 or 64 bit. I need both, because the application shall also run on an 32 bit system.
    best regards
    Stefan

    What about the bios settings ? The sony laptop that I have as an install guinea pig had a host of problems as long as plug and play was turned on in the bios then I turned off IrDa and the box seemed a bit quicker. Once I turned PnP off the USB ports started working as well as an external hp 3button mouse. Still no luck with the PCMCIA NIC's though...

  • OCCI link problem with gcc2.96 in Redhat7.2, Oracle9.0.1

    When I compiled and linked the occi program occidml.cpp with dynamic shared library, all was OK.
    But when occidml run, segmentation fault happened.
    I'v read a topic that we can build the program with static library to avoid segmentation fault.
    So, I recompiled the program and I used the following command to relink it.
    /usr/bin/g++ -L/ora9/lib/ -L/ora9/rdbms/lib/ -o occidml occi
    dml.o -lclntst9 -locci9 -ldl -lm
    But, a lots of errors happened:
    /ora9/lib//libocci9.a(occiAnyDataImpl.o): In function `oracle::occi::AnyDataImpl::s
    etNull(void)':
    occiAnyDataImpl.o(.text+0x2c2c): undefined reference to `OCIAnyDataConvert'
    /ora9/lib//libocci9.a(occiAnyDataImpl.o): In function `oracle::occi::AnyDataImpl::g
    etDate(void) const':
    occiAnyDataImpl.o(.text+0x2cba): undefined reference to `OCIAnyDataAttrGet'
    /ora9/lib//libocci9.a(occiAnyDataImpl.o): In function `oracle::occi::AnyDataImpl::s
    etBlob(oracle::occi::Blob const &)':
    occiAnyDataImpl.o(.text+0x2d83): undefined reference to `OCIAnyDataAttrSet'
    /ora9/lib//libocci9.a(occiAnyDataImpl.o): In function `oracle::occi::AnyDataImpl::s
    etClob(oracle::occi::Clob const &)':
    occiAnyDataImpl.o(.text+0x2e13): undefined reference to `OCIAnyDataAttrSet'
    /ora9/lib//libocci9.a(occiAnyDataImpl.o): In function `oracle::occi::AnyDataImpl::s
    etBfile(oracle::occi::Bfile const &)':
    occiAnyDataImpl.o(.text+0x2ea9): undefined reference to `OCIAnyDataAttrSet'
    /ora9/lib//libocci9.a(occiAnyDataImpl.o): In function `oracle::occi::AnyDataImpl::s
    etNumber(oracle::occi::Number const &)':
    occiAnyDataImpl.o(.text+0x2f4c): undefined reference to `OCIAnyDataAttrSet'
    /ora9/lib//libocci9.a(occiAnyDataImpl.o): In function `oracle::occi::AnyDataImpl::s
    etDate(oracle::occi::Date const &)':
    occiAnyDataImpl.o(.text+0x2ff3): undefined reference to `OCIAnyDataAttrSet'
    /ora9/lib//libocci9.a(occiAnyDataImpl.o)(.text+0x30b8): more undefined references t
    o `OCIAnyDataAttrSet' follow
    Who can help me ? Is the static library libocci9.a with any problem?

    I tried clicking on the link and nothing whatsoever happened. So I tried a control click and selected "Open Link in new window" and a new window opened, followed by the Utilities folder opening. I made a test.html file with the link in it, put it on my startup drive and it worked as expected, and ditto for putting it on a second internal drive. I then put it on my iDisk and navigated to it thru its web site address of
    http://homepage.mac.com/francines/testlinks.html
    and discovered that the two other "local" operation links (to launch ScriptEditor) both worked, but the open folder link no longer did, except by using control click and choosing either "Open link in new window" or new tab. A new Safari window or tab opens, then the Utilities folder opens.
    I then tried the page in Firefox, and it didn't work AT ALL, not even with new window or tab. I then tried Mozilla and Netscape. Same deal. The ancient Internet Explorer opened the Utilities folder inside a new browser window rather than the Finder. This might be a clue as to why the link doesn't work as expected, but unfortunately I don't know what it means.
    Francine

  • FCP I-Link problem with DSR-1500A

    FCP 6.01, G5 and OSX will not work with Sony DSR-1500A. System Profiler recognizes that something is plugged in, the color wheel spins for a while then I get a warning that the device can not be recognized. The I-Link indicator on the DRS-1500A never stops blinking. I have used two different DSR-1500A's and Two different FCP systems. The DSR-1500A works fine when I connect the DSR-11 as an I-Link source.

    Thank you for your input.
    It seems that the series in which the device come up is important.
    I shut the DSR-1500A and my laptop down.
    Installed the firewire cable.
    Powered up the DSR-1500A
    Powered up my MacBook Pro
    Started Systems Profiler which reported the deck 1503 interface card not a DSR-1500A deck.
    I link light continued to blink.
    I played a tape in the 1500A and got A/V into my MacBook Pro.
    Tried the same process on my second DSR-1500A and still got the error message that the device could not be listed. Max bus speed 800 Mb/s
    Tried the same process with my G5 and got the same error message.
    I think I have one bad 1503 board on one of my DSR-15000A's and I think that the Mac's have a problem identifying and linking to the DSR-1500A.
    So My problem is still unsolved.
    Anyone else out there interfacing a SR-1500A with their FCP?

  • html:link problem with Mozilla vs. IE

    Hello,
    I am experiencing the following situation.
    In IE the following segment of code works properly:
    <td>
    <table border="0" align="center" cellpadding="0" cellspacing="0">
    <tr>
         <html-el:link action="zone3/g036Play">
         <td><html-el:img srcKey="detailsLeft2" bundle="ZONE3_IMAGE_RESOURCE_KEY" border="0" width="17" height="18"/></td>
         <td class="details"><bean-el:message key="couponsHistory.details" bundle="XLTS_MESSAGE_RESOURCE_KEY"/></td>
         <td><html-el:img srcKey="detailsRight2" bundle="ZONE3_IMAGE_RESOURCE_KEY" border="0" width="9" height="18"/></td>
         </html-el:link>
    </tr>
    </table>
    </td>BUT in Mozilla the link doesn't work
    On the other hand, i found out that if i place the <html:link> tag outside of the table, then the link will work properly for mozilla but won't work for IE.
    Is there a way i can work this problem around?
    Thank you very much in advance.
    Frini

    ok, sorry, my mistake, i was looking at the wrong fragment of code.
    It output the HTML code:
       <td><a href="/XltsWeb/zone3/g036Play.web"><img src="images/xlts/details_left_lottery.gif" height="18" width="17" border="0"></td>
       <td class="details">Details</td>
       <td><img src="images/xlts/details_right1_lottery.gif" height="18" width="9" border="0"></a></td>which still doesn't work in Mozilla as a link...
    But if i place <html:link> outside the table and inside TD, i get:
    <td>
      <a href="/XltsWeb/zone3/g036Play.web"><table border="0" align="center" cellpadding="0" cellspacing="0">
      <tr>
      <td>
       <td><img src="images/xlts/details_left2_lottery.gif" height="18" width="17" border="0"></td>
       <td class="details">Details</td>
       <td><img src="images/xlts/details_right2_lottery.gif" height="18" width="9" border="0"></td>
       </td>
       </tr>
       </table></a>
    </td>and works in Mozilla, BUT no, none of the above works in IE!!!!!!!!!!!!!!!!!!!!!
    The only code that works in IE, is the first that i posted!!!!

  • Link problem with domain

    So this site I've just completed has a Flash home page. My first in CS3 and it seems to work great, except;
    the links work when you visit. http://finessecuisine.com
    and the links don't work when you visit http://www.finessecuisine.com
    It's the same file you're seeing in both instances, so I don't understand what the problem is.
    FLA available at http://pointbcommunications.com/FinesseHome.zip 
    I'll take any advice at this point. Thanks for looking.

    you have an apparent (to flash) cross-domain security issue:
    SecurityError: Error #2137: Security sandbox violation: http://finessecuisine.com/images/uploads/FinesseHome.swf cannot navigate window _self within http://www.finessecuisine.com/ (allowScriptAccess is sameDomain). Attempted URL was http://www.finessecuisine.com/fc/page/people/.
        at global/flash.net::navigateToURL()
        at MethodInfo-86()
        at Function/http://adobe.com/AS3/2006/builtin::apply()
        at gs::TweenLite/complete()
        at gs::TweenLite/render()
        at gs::TweenLite$/updateAll()
    to remedy, use a local path to your swfs and any other assets you load.

Maybe you are looking for

  • Pasting Text with Keyboard Cue

    I'm not sure if this is the right forum, but I'll give it a try. When using my PC, I can quickly paste text by pressing a couple keys on my keyboard; I think it's CTRL / V. I discovered that I can't do it with my new Apple/Mac keyboard, and it's real

  • IDOC for outbound delivery

    Hi All, I need to generate an outbound IDOC when DO is created in VL01N. I searched in SDN and it returns me a lot of different results that really confusing. I found some using IDOC_OUTPUT_DESADV01, some using IDOC_OUTPUT_DELVRY. I do look into the

  • Leather Wallet Case For iPhone 6 (4.7")

    Hello! I'm looking for leather wallet case for my iPhone 6 4.7", I want something that will protect all the body of the iPhone like this - i-Blason-leather-book-folio-wallet-case-for-iphone-6-plus-32.jpg I want cuts only for the holes not for the ent

  • HT1386 What is "other" in the storage category and how do you reduce that amount?

    What is "other" in the storage category and how do you reduce that amount?

  • Three Computers One Sign-in?

    I understand that you can only use the product on one computer at a time but install on two, I have a situation though where I have a personal account, and a work account for CC. I also have a work PC, and Laptop. As well as my Laptop. My personal La