Help!!! I have a compiling problem using rfcsdk

Hello.
I have a compiling problem.
My server is  SUN OS 5.9.
And I made a rfcsdk folder.
When I used gcc comiler I had a error message as below.
%>cat mk_gcc2
gcc  -funsigned-char  -Wcast-align -fPIC -c -I.  -I/home/user/rfcsdk_32/include        -L/home/user/rfcsdk_32/lib  $1.c
gcc    -funsigned-char    -L/home/user/rfcsdk_32/lib    -o $1 $1.o  -I/home/user/rfcsdk_32/lib/librfccm.so  -laio  -lm   -lrfc   -L.  -lsocket -lnsl -lw -ldl
%>
%>
%>mk_gcc2 plantcl
정의되지 않음                   첫번째 참조된
기호                       파일의
__1cG__CrunKpure_error6F_v_         /home/user/rfcsdk_32/lib/librfc.a(cpictlib.o)
__1cG__CrunKvector_con6FpvIIpF1_vp2_v_ /home/user/rfcsdk_32/lib/librfc.a(cpictlib.o)
__1cG__CrunMex_rethrow_q6F_v_       /home/user/rfcsdk_32/lib/librfc.a(cpictlib.o)
c::c(N6,  (int0_t))                 /home/user/rfcsdk_32/lib/librfc.a(cpictlib.o)
c::c(n6,  (int0_t))                 /home/user/rfcsdk_32/lib/librfc.a(cpictlib.o)
__1c2K6Fpv_v_                       /home/user/rfcsdk_32/lib/librfc.a(cpictlib.o)
__1c2k6Fpv_v_                       /home/user/rfcsdk_32/lib/librfc.a(cpictlib.o)
ld: 치명적: 기호 참조 오류. plantcl에 출력이 기록되지 않음
collect2: ld returned 1 exit status
%>
%>
Do anyone have a idea about this kinds of errors ?
I couldn't find any reference from the internet and documents.
I'll thank you very much if you recommend me.

Trying
<description><![CDATA[About 4 PM , March 31,1917.
The salute from the Fort Christian&rsquo;s Saluting Battery as
the Captain and officers leave the USS Hancock on their way to
shore to take over the Danish West
Indies.]]></description>
This fixes the
onmouseover="ShowToolTip('{dsPhotos::description}') problem,
BUT
<p>{dsPhotos::description}</p>
now appears as
'About 4 PM , March 31,1917. The salute from the Fort
Christian&rsquo;s Saluting ..."
with the undesireable &rsquo; instead of '.
So my problem requires both html translation and javascript
argument quoting/non-parsing.
Any ideas?

Similar Messages

  • Compile problem using TOMCAT 5.0 and Apache ANT

    I got some sample from book.
    i just follow the step, place it the class file. it work. it run. show all the detail.
    but when i wan to compile it from java file, error came out
    type Exception report
    message
    description The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    javax.servlet.ServletException: Error allocating a servlet instance
         org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:118)
         org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:160)
         org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:799)
         org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:705)
         org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:577)
         org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:683)
         java.lang.Thread.run(Unknown Source)
    root cause
    java.lang.NoClassDefFoundError: com/jspbook/HelloWorld (wrong name: HelloWorld)
         java.lang.ClassLoader.defineClass1(Native Method)
         java.lang.ClassLoader.defineClass(Unknown Source)
         java.security.SecureClassLoader.defineClass(Unknown Source)
         org.apache.catalina.loader.WebappClassLoader.findClassInternal(WebappClassLoader.java:1634)
         org.apache.catalina.loader.WebappClassLoader.findClass(WebappClassLoader.java:860)
         org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1307)
         org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1189)
         org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:118)
         org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:160)
         org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:799)
         org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:705)
         org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:577)
         org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:683)
         java.lang.Thread.run(Unknown Source)
    note The full stack trace of the root cause is available in the Apache Tomcat/5.0.28 logs.in CMD:
    set java_home = C:\Program Files\Java\jdk1.5.0_08
    set classpath = C:\Program Files\Apache Software Foundation\Tomcat 5.0\common\lib
    and Apache tomcat originally dont have servlet.jar but servlet-api.jar, i copy the servlet.jar from my friend
    i compile it using Apache ANT
    here the build.xml
    <?xml version="1.0" ?>
    <project name="jspbook" default="build" basedir=".">
      <target name="build">
        <echo>Starting Build </echo>
        <!-- Turn Tomcat Off -->
        <antcall target="tomcatOff"/>
        <!-- Compile Everything -->
        <antcall target="compile"/>
        <!-- Turn Tomcat On -->
        <antcall target="tomcatOn"/>
        <echo>Build Finished </echo>
      </target>
      <target name="tomcatOff">
        <echo>Turning Off Tomcat </echo>
        <exec executable="bash" os="Windows">
          <arg value="../../bin/shutdown.bat"/>
        </exec>
        <exec executable="bash" os="Linux">
          <arg value="../../bin/shutdown.sh"/>
        </exec>
      </target>
      <target name="tomcatOn">
        <echo>Starting Tomcat </echo>
        <exec executable="bash" os="Windows">
          <arg value="../../bin/startup.bat"/>
        </exec>
        <exec executable="bash" os="Linux">
          <arg value="../../bin/startup.sh"/>
        </exec>
      </target>
      <target name="compile">
        <javac
          srcdir="WEB-INF/classes"
          extdirs="WEB-INF/lib:../../common/lib"
          classpath="../../common/lib/servlet.jar"
          deprecation="yes"
          verbose="no">
          <include name="com/jspbook/**"/>
        </javac>
      </target>
    </project>compile success, but error in IE
    paste the sample class file in,restart tomcat. i work again!
    what is the problem!
    even i compile the code inside the Jcreator, after set required libraries to servlet.jar or servlet-api.jar
    compile it, success then run it in IE, same error!!!.
    what should i do.
    stil a beginer in servlet and jsp anyway.

    and Apache tomcat originally dont have servlet.jar but servlet-api.jar, i copy the servlet.jar from my friend servlet.jar is an OLD version, you should only use servlet-api.jar!
    wrong name: HelloWorldPerhaps there is a mistake in the class or packagename of the source file. Post the source here.

  • Help i have so many problems

    This is a multi topic question but i really need help. I connect my Ipod to itunes then word pops up trying to take the pictures off my ipod then when i close word Itunes is not responding i restarted both my ipod and computer nothings working but as soon as i disconect my ipod itunes working again and i just downloaded itunes 8.1. what i need help with is
    1) changing it so word dosent try to take the pictures off my ipod
    2) Help me fix the connectivity problem
    AND 3) Help get the songs that were deleted from my itunes that are on NO OTHER computer and not on my Ipod touch back into my itunes because it wont let me re download them and im missing about $100 worth of songs because it won't let me re download. these songs are also not on my computer i also need to transfer songs from my ipod to itunes that i bought on the mobile store.

    1) i've never heard of Word opening up when an ipod is connected. photo software perhaps, but not Word. is your computer somehow set up so that Word will automatically open when a camera is connected?
    when there are 'saved photos' on your ipod (i.e. ones obtained on the ipod, by email/safari/screenshots) sometimes computers recognise the ipod as a camera.
    3) if music disappears from both and ipod and itunes library for no reason, apple will often let you download it again (go into your account in the itunes store, purchase history 'report problem'). however, if you have simply not backed it up, they may be less responsive.

  • I have a compilation problem with my mini iPod that is preventing my volume from increasing. I can't get the compilation code, please help me

    MY mini iPod version number1.1.3 pc robs iPod ,4GB is having volume limit problem ,the volume is very low compare to how it was playing before I mistakenly touch the combination code. I have forgotten the combination code, please help me out.. I have tried to reset settings but it wouldn't work.

    i can get the combination code please

  • Help! Have a serious problem with macbook pro!, please see description!

    so, this must have been about a month ago at the most when it started playing up. basicly, I noticed that A-it has all of a sudden become allot slower than before, B- applications are crashing regularly, this seems to be getting worse and worse, C- i had an incident once or twice where for no reason what so ever the macbook pro simply shut down and restarted for no reason, and with no error message, (though the more recent sudden shut downs give me a message on restart).
    I first investigated the problem when I was playing skyrim, using bootcamp of course to run windows, as I do with many games. After owning the game for about two weeks, and it playing fine, it just crashed and bluescreened all of a sudden without warning, and from that moment on i was unable to play the game since every 5 or so mins in it would crash to desktop or just bluescreen. i thought that this was an error with steam or with the game, and so i looked for help on the steam forum. as i was going through various methods to solve the problem, it seemed that the problem was worsening, since the windows partition begun to bluescreen more often for no reason, and then i noticed that the mac os partition was unexpectedly shutting down for no reason more often aswell, and so i have abandoned my attempts to fix what i thought was an error with windows, and i now believe that it is something more serious. im not so sure what i should do in order to solve this, i know my way around a computer, but im not genius at them, and so i have come to the apple forum seeking help!!
    here i have attatched info that may help, and by the way, it is 64 bit windows 7 that is installed on the bootcamp partition.
    the following message on the bluescreen report makes me think its something to do with the graphics drivers, and so i reinstalled all of the drivers on windows, but this did absolutely nothing unfortunately.  'dxgmms. sys error'

    UPDATE: after verifying and repairing permisions using disk doctor, things seemed to be on the up, but i think this was just hopefull thinking, since it has now got A LOT worse. i can no longer log in to my mac os partition, as soon as i get to the log in page where i type my password in, after typing it in and pressing enter, it will log in for a few seconds and then before i have a chance to do anything, log me out!! this is very very odd indeed!!!

  • Compilation problems using NVL function in Pro*C subselect

    I have come across a weird oracle problem. When I execute the following query in SQLPlus it works but when
    I include it in Pro*C code in a EXEC SQL statement it gives syntax errors and fails to compile. Any idea what I am doing wrong.
    SELECT DISTINCT
         A.ID_PERSON,
         C.ID_STAGE_PERSON_LINK ,
         A.NM_PERSON_FULL,
         A.NBR_PERSON_AGE,
         A.ADDR_PERSON_ST_LN_1,
         A.ADDR_PERSON_CITY,
         A.ADDR_PERSON_ZIP,
         A.CD_PERSON_STATE,
         A.CD_PERSON_COUNTY,
         A.NBR_PERSON_PHONE,
         C.CD_STAGE_PERS_REL_INT
         FROM
              PERSON A,
              STAGE_PERSON_LINK C
         WHERE
         C.ID_CASE = 88776721
         AND          A.IND_INVALID_PERS IS NULL
         AND          C.CD_STAGE_PERS_TYPE = 'PRN'
         AND          C.ID_PERSON = A.ID_PERSON
         AND C.ID_STAGE_PERSON_LINK =
    NVL (
                   (SELECT MAX(F.ID_STAGE_PERSON_LINK)
                   FROM STAGE_PERSON_LINK F
                   WHERE F.ID_PERSON=C.ID_PERSON
                   AND F.ID_CASE = C.ID_CASE
                        AND F.CD_STAGE_PERS_TYPE = 'PRN'
                        AND F.CD_STAGE_PERS_REL_INT IS NOT NULL)
                   (SELECT MAX(G.ID_STAGE_PERSON_LINK)
                   FROM STAGE_PERSON_LINK G
                   WHERE G.ID_PERSON=C.ID_PERSON
                   AND G.ID_CASE = C.ID_CASE
                        AND G.CD_STAGE_PERS_TYPE = 'PRN')
    AND A.ID_PERSON NOT IN
    SELECT S.ID_PERSON
    FROM STAGE_PERSON_LINK S,STAGE T
    WHERE S.ID_CASE = C.ID_CASE
    AND S.ID_CASE = T.ID_CASE
    AND S.ID_STAGE = T.ID_STAGE
    AND T.CD_STAGE &lt;&gt; 'INT'
    MINUS
    SELECT H.ID_PERSON
    FROM STAGE_PERSON_LINK H, STAGE F
    WHERE H.ID_CASE = F.ID_CASE
    AND H.ID_STAGE = F.ID_STAGE
    AND H.ID_CASE = C.ID_CASE
    AND H.CD_STAGE_PERS_ROLE &lt;&gt; 'XE'
    AND F.CD_STAGE &lt;&gt; 'INT'
    This query returns data when run in sqlplus.When used in a Pro*C C program and compiled the precompiler complains with syntax errors when used with EXEC SQL DECLARE CLSS82D_CURSOR CURSOR FOR &lt; query above &gt;.However removing the NVL function and retaining the subselect clause compiles but that is not what I want to do.
    Syntax error at line 262, column 20, file clss82d.pc:
    Error at line 262, column 20 in file clss82d.pc
    SELECT MAX( F.ID_STAGE_PERSON_LINK )
    ...................1
    PCC-S-02201, Encountered the symbol "MAX" when expecting one of the following:
    ( ) * + - / . @ | at, day, hour, minute, month, second, year,
    The symbol "(" was substituted for "MAX" to continue.
    Syntax error at line 263, column 10, file clss82d.pc:
    Error at line 263, column 10 in file clss82d.pc
    FROM STAGE_PERSON_LINK F
    .........1
    PCC-S-02201, Encountered the symbol "FROM" when expecting one of the following:
    , ) * + - / | at, day, hour, minute, month, second, year,

    Pro*C works bit differently tha sqlplus. try removing the blank line after
    SELECT MAX(G.ID_STAGE_PERSON_LINK)
    FROM STAGE_PERSON_LINK G
    WHERE G.ID_PERSON=C.ID_PERSON
    AND G.ID_CASE = C.ID_CASE
    AND G.CD_STAGE_PERS_TYPE = 'PRN')
    good luck,
    Gauranga

  • Do others have a some problems using Firefox together with Charter? Mine is with my search.

    I have used and enjoyed Firefox for years. I have Charter cable and my homepage is Charter.net. When I try to use the Google search on that homepage screen, the results are terrible, giving me nothing more than Google search box (its entry) and a blank white screen.
    Is there a way I can take care of this problem?
    I don't have this problem when I try using Internet Explorer, but I'd much rather use Firefox. Thanks.

    Hello,
    The Reset Firefox feature can fix many issues by restoring Firefox to its factory default state while saving your essential information.
    Note: ''This will cause you to lose any Extensions, Open websites, and some Preferences.''
    To Reset Firefox do the following:
    #Go to Firefox > Help > Troubleshooting Information.
    #Click the "Reset Firefox" button.
    #Firefox will close and reset. After Firefox is done, it will show a window with the information that is imported. Click Finish.
    #Firefox will open with all factory defaults applied.
    Further information can be found in the [[Reset Firefox – easily fix most problems]] article.
    Did this fix your problems? Please report back to us!
    Thank you.

  • How to find help for Apple Mail password problem -- using CLEAR/Verizon

    I've established an alias e-mail address through Apple Mail.  I've lost the password.  Apple "Help" tells me to ask internet provider.  But I only have a cell phone so Verizon doesn't allow me to ask my question.  I use CLEAR to connect through Verizon.
    This is confusing.  I don't know where to go with this issue.

    What is the domain for the email address? You need to get help from the email provider.
    If a forum member gives an answer you like, give them the Kudos they deserve. If a member gives you the answer to your question, mark the answer as Accepted Solution so others can see the solution to the problem.
    "All knowledge is worth having."

  • Help needed with wsdl compilation problem

    Hi all,
    I am trying to perform a wsdl2java run on a wsdl, but it keeps failing and I can't work out why.
    Can anyone help me spot the problem?
    Here is the problem I get:
    [WARN] Type {http://Input.LeaseBaseGetMntcHistory.remarketing.gf.com}MntcHistory missing!
    [WARN] Type {http://Output.LeaseBaseGetMntcHistory.remarketing.gf.com}MaintenanceHistory missing!And here is the full wsdl
    <?xml version="1.0" encoding="UTF-8"?>
    <wsdl:definitions xmlns:tns="http://Master.LeaseBaseGetMntcHistory.Remarketing.gf.com" xmlns:ns0="http://Input.LeaseBaseGetMntcHistory.remarketing.gf.com" xmlns:ns1="http://Output.LeaseBaseGetMntcHistory.remarketing.gf.com" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" name="LeaseBaseMntcHistory" targetNamespace="http://Master.LeaseBaseGetMntcHistory.Remarketing.gf.com">
        <wsdl:types>
         <xsd:schema xmlns = "http://Input.LeaseBaseGetMntcHistory.remarketing.gf.com"
               targetNamespace = "http://Input.LeaseBaseGetMntcHistory.remarketing.gf.com"
               xmlns:xsd="http://www.w3.org/2001/XMLSchema"
               elementFormDefault="unqualified"
               attributeFormDefault="unqualified">
              <xsd:element name="FleetID" type="xsd:string"/>
              <xsd:element name="CountryID" type="xsd:string"/>
              <xsd:element name="RegID" type="xsd:string"/>
              <xsd:element name="CompanyID" type="xsd:string"/>
              <xsd:element name="ChassisID" type="xsd:string"/>
              <xsd:element name="FleetDetails">
                   <xsd:complexType>
                        <xsd:sequence>
                             <xsd:element ref="FleetID"/>
                             <xsd:element ref="CountryID"/>
                             <xsd:element ref="RegID" minOccurs="0"/>
                             <xsd:element ref="CompanyID" minOccurs="0"/>
                             <xsd:element ref="ChassisID"/>
                        </xsd:sequence>
                   </xsd:complexType>
              </xsd:element>
              <xsd:element name="MntcHistory">
                   <xsd:complexType>
                        <xsd:sequence>
                             <xsd:element ref="FleetDetails"/>
                        </xsd:sequence>
                   </xsd:complexType>
              </xsd:element>
         </xsd:schema>
         <xsd:schema xmlns = "http://Output.LeaseBaseGetMntcHistory.remarketing.gf.com"
               targetNamespace = "http://Output.LeaseBaseGetMntcHistory.remarketing.gf.com"
               xmlns:xsd="http://www.w3.org/2001/XMLSchema"
               elementFormDefault="qualified"
               attributeFormDefault="unqualified">
              <xsd:element name="Date" type="xsd:string"/>
              <xsd:element name="Mileage" type="xsd:string"/>
              <xsd:element name="StatusCD" type="xsd:string"/>
              <xsd:element name="Operation" type="xsd:string"/>
              <xsd:element name="Details">
                   <xsd:complexType>
                        <xsd:sequence>
                             <xsd:element ref="Detail" maxOccurs="unbounded"/>
                        </xsd:sequence>
                   </xsd:complexType>
              </xsd:element>
              <xsd:element name="FleetID" type="xsd:string"/>
              <xsd:element name="RegID" type="xsd:string"/>
              <xsd:element name="MaintenanceHistory">
                   <xsd:complexType>
                        <xsd:sequence>
                             <xsd:element ref="FleetID"/>
                             <xsd:element ref="RegID"/>
                             <xsd:element ref="LstUpdateDate"/>
                             <xsd:element ref="MntcWorkHistory"/>
                        </xsd:sequence>
                   </xsd:complexType>
              </xsd:element>
              <xsd:element name="LstUpdateDate" type="xsd:string"/>
              <xsd:element name="MntcWorkHistory">
                   <xsd:complexType>
                        <xsd:sequence>
                             <xsd:element ref="MntcWork" maxOccurs="unbounded"/>
                        </xsd:sequence>
                   </xsd:complexType>
              </xsd:element>
              <xsd:element name="MntcWork">
                   <xsd:complexType>
                        <xsd:sequence>
                             <xsd:element ref="Date"/>
                             <xsd:element ref="Mileage"/>
                             <xsd:element ref="StatusCD"/>
                             <xsd:element ref="LineItems"/>
                        </xsd:sequence>
                   </xsd:complexType>
              </xsd:element>
              <xsd:element name="LineItems">
                   <xsd:complexType>
                        <xsd:sequence>
                             <xsd:element ref="LineItem" maxOccurs="unbounded"/>
                        </xsd:sequence>
                   </xsd:complexType>
              </xsd:element>
              <xsd:element name="LineItem">
                   <xsd:complexType>
                        <xsd:sequence>
                             <xsd:element ref="Operation"/>
                             <xsd:element ref="Details"/>
                        </xsd:sequence>
                   </xsd:complexType>
              </xsd:element>
              <xsd:element name="Detail" type="xsd:string"/>
         </xsd:schema>
        </wsdl:types>
        <wsdl:message name="MntcHistory">
            <wsdl:part name="parameters" type="ns0:MntcHistory"/>
        </wsdl:message>
        <wsdl:message name="MaintenanceHistory">
            <wsdl:part name="parameters" type="ns1:MaintenanceHistory"/>
        </wsdl:message>
        <wsdl:portType name="portType">
            <wsdl:operation name="LeaseBaseClientOp">
                <wsdl:input message="tns:MntcHistory"/>
                <wsdl:output message="tns:MaintenanceHistory"/>
            </wsdl:operation>
        </wsdl:portType>
        <wsdl:binding name="intfwsLeaseBaseClientEndpoint0Binding" type="tns:portType">
            <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
            <wsdl:operation name="LeaseBaseClientOp">
                <soap:operation style="rpc" soapAction="/Processes/LeaseBaseClientOp"/>
                <wsdl:input>
                    <soap:body use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://Input.LeaseBaseGetMntcHistory.remarketing.gf.com" parts="parameters"/>
                </wsdl:input>
                <wsdl:output>
                    <soap:body use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://Output.LeaseBaseGetMntcHistory.remarketing.gf.com" parts="parameters"/>
                </wsdl:output>
            </wsdl:operation>
        </wsdl:binding>
        <wsdl:service name="intfLeaseBaseClient-service">
            <wsdl:port name="intfwsLeaseBaseClientEndpoint0" binding="tns:intfwsLeaseBaseClientEndpoint0Binding">
                <soap:address location="http://localhost:8080/Processes/intfwsLeaseBaseClientEndpoint0"/>
            </wsdl:port>
        </wsdl:service>
    </wsdl:definitions>Thanks in advance!

    Hello
    You may try something like the modified code below.
    Noticiable changes :
    #1 - Removed the parentheses. Your original code won't yield alias list but a list of finder objects, which is the reason why Preview opens the image. (The statment 'open finderObject' behaves the same as double clicking it in Finder)
    #2 - Only delete the original jpeg files which are converted to tiff.
    #3 - Build new path for converted image.
    #4 - Save in new path. (When saving image in a format other than its original format, always save the image to a new file and do not attempt to overwrite the source file.)
    cf.
    http://www.macosxautomation.com/applescript/imageevents/08.html
    on run
    tell application "Finder"
    set PicturesFolder to (path to home folder as string) & "Pictures:SenseCam:" as alias
    set Photographs to get entire contents of PicturesFolder as alias list -- #1
    end tell
    set DonePhotos to {} -- #2
    tell application "Image Events"
    launch
    repeat with Photo in Photographs
    set Photo to Photo's contents
    set oldPath to Photo as string
    if oldPath ends with ".jpg" then
    set newPath to oldPath's text 1 thru -5 & ".tif" -- #3
    set ImageRef to open Photo
    save ImageRef as TIFF in newPath -- #4
    close ImageRef
    set end of DonePhotos to Photo -- #2
    end if
    end repeat
    end tell
    tell application "Finder"
    delete DonePhotos -- #2
    end tell
    end run
    Hope this may help,
    H

  • Blue Box doesn't shut down on Win XP - HELP! HAve to shut down using Task Manager???

    Is it really true that you must shut the Blue Box down using Task Manager on Windows XP operating system???
    On Win 98/NT/2000 the you can shut the Blue Box down by double clicking the Blue Box and shut it down. When I check the Task Manager it really is shut down.
    However, on Windows XP when I shut the Blue Box down in the same manner - it still resides in the Task manager. If I try to start the Blue Box again after shutting it down a popup window is displayed stating there is already an instance of Blue Box running.
    Any help would be appreciated - we cannot open the Task Manager and terminate the NIFB.exe in our application.
    THANX!

    It is a bug of NI-FBUS 2.3.6 version, please send e-mail to "[email protected]" for further information.
    The next NI-FBUS 3.0 version would solve this problem as I know.

  • Help - I have a nightmare problem

    For the last few days my X60S has been slow.  I ran McAfee to make sure there was no worm or virus and it showed clean.  I ran the diagnostic on the HD and it came out fine.  The problem - I can no longer start the computer.
    It comes up with a screen asking if I want Safe Mode, Safe Mode with Networking, Some Other Drive Mode or the last successful startup (which is Windows XP).  I have tried all and they fail as they hit a STOP: 0x0000007b message and the machine shuts down and tries to start again and the loop continues. 
    I do not know what to do.  I have no disks for this computer.  Does anyone have an idea of what I can try?
    Judy in NM

    Welcome to the forum!
    Sorry to hear about your troubles...
    If your machine is still under warranty, you can order restore disks from Lenovo, I believe it's $45+S&H+tax.
    You can also try booting from a copy of XP if you can borrow one, select "repair" on the second screen and then type "FIXMBR" when prompted, wait for it to get done (there will be a couple of "yes"-es in the process) and re-boot.
    Good luck and let us know.
    Cheers,
    George
    In daily use: R60F, R500F, T61, T410
    Collecting dust: T60
    Enjoying retirement: A31p, T42p,
    Non-ThinkPads: Panasonic CF-31 & CF-52, HP 8760W
    Starting Thursday, 08/14/2014 I'll be away from the forums until further notice. Please do NOT send private messages since I won't be able to read them. Thank you.

  • HELP   I have been able to use Itunes since october!

    I keep running in to the error below when ever I open, install, uninstall, or repair my itunes
    I have downloaded an run Ccleaner, and regcure with no luck
    A network error occurred whiles attempting to read from the file C:\WINDOWS\Installer\iTunes.msi
    An error occurred while attemping to create the directory C:\ProgramFile\iPod\boiPodService.Resource\es.lproj
    The installer has encountered an unexpected error installing this package. This may indicate a problem with this package. The error code is 2330
    Cannot delet iPod Help.chm: Data error( cyclic redndancy check)

    We've identified the cause of the problem. It's an account provisioning issue on our end.  We're working to get this resolved as quickly as possible for all of you.
    We're terribly sorry for the inconvenience!
    Kind regards,
    David
    Sr. Online/Social Customer Success Lead - Acrobat & Acrobat.com Services
    Adobe Systems

  • Help I have Heading Font Problems?

    Can someone help me fiqure out what's wrong, it all started after my muse update v7.1
    If you go to the trial site link below it looks fine until you click on different menus, each time you click a menu item the heading and subheading text flashes a different font for a second, I can't fiqure out what happened and it driving me crazy! It was fine before the update.
    http://hamlinhouse.businesscatalyst.com/index.html

    Hi,
    What you are observing is a common problem called FOUT (flash of unstyled text). The forum post http://forums.adobe.com/message/5402383#5402383 outlines a technique to control FOUT, but it involves some knowledge of coding (CSS).
    That said, I am not aware of any v7.1 change that would cause FOUT to appear now. Is there a chance you hadn't noticed it before, or handn't tried the browser you are currently using?
    Thanks,
    Abhishek

  • I have an Ipod 4th gen. and when you plug it into the wall it is stuck on the charge/lighting bolt screen and it wont charge, and when you plug it into a computer (PC) the lighting screen wont even apear. Please help I have had this problem for forever.

    I have a ipod touch 4th gen and it wont chrage. When you plug it into the wall the lightniing bolt screen will apear but no matter how long you leave it, it will never turn on. Also it the lightning bolt screen wont even come on when you plug it into a computer (PC)..........PLease help its been like this for forever

    Hi Gammer576775!
    Here is an article that will help you troubleshoot this issue with your iPod touch:
    iPod touch: Hardware troubleshooting
    http://support.apple.com/kb/ts2771
    Will not power on, or will not turn on unless connected to power
    Verify that the Sleep/Wake button functions. If it does not function, inspect it for signs of damage. If the button is damaged or is not functioning when pressed, seek service.
    Connect the iPod touch to an Apple USB power adapter and let it charge for at least ten minutes.
    After at least 15 minutes, if the display turns on and…
    The home screen appears, the device should be working. Continue charging it until it is completely charged and you see this battery icon in the upper-right corner of the screen: . Then disconnect the device from power. If it immediately turns off, seek service.
    The low-battery image appears even after the iPod touch has charged for at least 20 minutes: See the "iPod touch displays the low-battery image and is unresponsive" symptom in this article.
    Something other than the Home screen or low-battery image appears , continue with this article for further troubleshooting steps.
    If the iPod touch did not turn on, reset it while connected to an Apple USB power adapter. If the display turns on, go to step 4.If the display remains black, go to the next step.
    Restore the device. Connect it to a computer and open iTunes. If iTunes recognizes it and indicates that it is in recovery mode, attempt to restore the iPod touch. If the device doesn't appear in iTunes or if you have difficulties in restoring it, see this article for further assistance.
    If restoring the iPod touch resolved the issue, go to step 4. If restoring it did not solve the issue, seek service.
    Thanks for using the Apple Support Communities!
    Cheers,
    Braden

  • Help i have a slight problem on my N81

    My n81 paint on the side has came off how can i replace the paint... can i use a paint can or sumthin like that... 
    Can i replace it
    Solved!
    Go to Solution.

    you can either live with it, or take it to nokia care and see if they replace it for you*, i would not just put any paint on your phone it will void the warranty and i am not sure that it is safe to do so. it will cost you so you can either call them or go to nokia care to see what they have to say.
    ** by replacing i mean the phone cover/body whatever you want to call it, not the phone itself as there is nothing wrong with it in terms of technical things.
    Message Edited by radical24 on 19-Feb-2009 03:36 PM
    You know what I love about you the most, the fact that you are not me ! In love with technology and all that it can offer. Join me in discovery....

Maybe you are looking for