Program to interact with Instron Machine

Hi, back ten years ago, we had a program written with LabVIEW that controlled an Instron 4206 Stress machine by keeping it at a constant load because it was not an available setting on the machine. The program would correspond with the Instron machine and would maintain the constant load. We are trying to bring back the program and use it now. We know the program was written with version 5.1.1 and I posted it on the Conversion Forum to get it converted, but any ideas on how to link it back up with the Instron Machine? Is there some hardware we need to buy? We don't have the computer or the person who ran the last program so this is why I am asking.
Thanks

Hi Will,
The last Instron I worked with (I programmed one for one of my clients) was a pretty old clunker that came with actual 5-1/4" floppy disks.  So I don't know if it was a 4206 or not.  At any rate, I used its GPIB interface to control it via LabVIEW.
Assuming your Instron has a GPIB interface for external communication, which it probably does, you'll need a GPIB board for the computer which has your LabVIEW program on it.  Assuming you are using a relatively modern computer which has USB ports, I'd recommend this one: http://sine.ni.com/nips/cds/view/p/lang/en/nid/201586 
You might also need a GPIB cable for connecting the Instron to the USB-to-GPIB adapter.
Hope that's helpful,
Diane

Similar Messages

  • Firefox stalls when opened, nothing will load, it says program stopped interacting with windows

    Since early 19 August I have been unable to use firefox browser. "A problem caused this program to stop interacting with Windows." Those are the exact words it says right now on firefox failed attempt to load. There are numerous Problem signatures, as it says also. I have tried uninstalling and reinstalling several times but it is not available. Is firefox unaware of the problem? I use windows Vista, and it is the 32 version, not 64. My bookmarks are there, but since it freezes and never loads, I cannot access them. I hate to use I.E. but my login cards with Norton are only compatible with firefox or Internet Explorer. Please provide a solution so I can have internet access again with the most convenient browser until it broke, which was firefox. There was a new something that was available, after it was downloaded, it broke down firefox so that the internet is not available, nor anything else since then from firefox, as it is still for nearly an entire day still crashed. I hate using I.E. and Opera does not have my bookmarks and other saved information I used to be able to have on firefox until it became incompatible with the internet, as nobody is able to access firefox anymore. When will the shutdown of firefox to lose it's interactiveness with windows be restored? Or does firefox plan on permanently being unavailable for all windows users as is now the case? I hate to lose all saved items if firefox is no longer going to function with windows.

    If, for some reason, you think [http://support.mozilla.com/en-US/kb/Safe+Mode Safe Mode] is connected w/ Windows Safe Mode, it is not. [http://support.mozilla.com/en-US/kb/Safe+Mode Safe Mode] is a Firefox feature. Just a suggestion that might work...

  • How does airplay interact with Time Machine?

    I just purchased a MacBook Pro, but the 256GB of flash storage is not going to be enough for my projects and media.  My iTunes library has become pretty extensive, so I'm wondering if I'll be able to stream to my TV the content in my iTunes using Time Machine in combination with Apple TV?  Anyone have this set up?

    Time Machine is software that backs up the contents of your Mac.  You will not be able to use those backups for everyday use to stream media over your network.
    Suggest that you add another external hard drive and move your iTunes library to that drive.
    Then Time Machine will backup both your Mac and the contents of the external drive. So, you have "originals" on one drive and "backups" on another. If one drive fails, then you at least have a copy on the other drive.

  • How to apply security paramters in a main program to interact with webservi

    Hi ,
    I am working with weblogic 10.1.3 and running build.xml in eclipse for EE
    I would like to know the steps to include security parameters to authenticate with weblogic server and call webservice
    I have written a build.xml that takes input as wsdl , When I run the build.xml it generates
    all the necessary stubs and interfaces
    I have written a main program that imports generated classes and invoke the webservice method
    below are buidl.xml and two classes( main program and one java class) which I used to invoke webservice
    Build.xml
    =====
    <project name="webservices-simple_client" default="all">
         <!-- set global properties for this      -->
         <property name="wls.hostname" value="localhost" />
         <property name="wls.port" value="8002" />
         <property name="example-output" value="output" />
         <property name="clientclass-dir" value="${example-output}/srcclasses" />
         <property name="clientclassfiles-dir" value="${example-output}/classfiles" />
         <path id="client.class.path">
              <pathelement path="${clientclass-dir}" />
              <pathelement path="${java.class.path}" />
         </path>
         <taskdef name="clientgen" classname="weblogic.wsee.tools.anttasks.ClientGenTask" />
         <target name="clean">
              <delete dir="${clientclass-dir}" />
              <delete dir="../src/com/bea/wlcp/wlng/ws/presence" />
              <delete dir="../src/org/csapi/schema/paralyx/common/v2_1" />
              <delete dir="../src/org/csapi/schema/paralyx/presence/consumer/v2_3/local" />
              <delete dir="../src/org/csapi/schema/parlayx/presence/v2_3" />
              <echo message="Cleaning Completed" />
         </target>
         <target name="build-client">
              <clientgen wsdl="http://${wls.hostname}:${wls.port}/parlayx21/presence/PresenceConsumer?WSDL" destdir="${clientclass-dir}" generatepolicymethods="true" packageName="com.bea.wlcp.wlng.ws.presence" />
              <javac srcdir="${clientclass-dir}" destdir="${clientclassfiles-dir}" includes="**/*.java" />
              <copy overwrite="true" todir="../src">
                   <fileset dir="${clientclass-dir}" />
              </copy>
              <copy overwrite="true" todir="../src">
                   <fileset dir="${clientclassfiles-dir}" />
              </copy>
              <delete dir="${clientclass-dir}" />
              <delete dir="${clientclassfiles-dir}" />
              <echo message="Building Completed" />
         </target>
         <target name="all" depends="clean,build-client" />
    </project>
    ======================================================
    import java.net.URI;
    import javax.xml.rpc.Stub;
    import javax.xml.ws.BindingProvider;
    import java.net.Proxy;
    import java.net.InetSocketAddress;
    import java.util.ArrayList;
    import java.util.List;
    import weblogic.webservice.wsdl.WsdlPort;
    import weblogic.wsee.connection.transport.http.HttpTransportInfo;
    import weblogic.wsee.jaxrpc.ServiceImpl;
    import org.csapi.schema.parlayx.common.v2_1.PolicyException;
    import org.csapi.schema.parlayx.common.v2_1.SimpleReference;
    import org.csapi.schema.parlayx.presence.consumer.v2_3.local.SubscribePresence;
    import org.csapi.schema.parlayx.presence.consumer.v2_3.local.SubscribePresenceResponse;
    import com.bea.wlcp.wlng.et.core.module.session_manager.GTUsernameTokenPolicy;
    import com.bea.wlcp.wlng.et.core.module.session_manager.SessionManagerService_Impl;
    import com.bea.wlcp.wlng.ws.presence.PresenceConsumer;
    import com.bea.wlcp.wlng.ws.presence.PresenceConsumerService_Impl;
    import com.bea.wlcp.wlng.ws.sessionmanager.SessionManager;
    import com.bea.wlcp.wlng.ws.sessionmanager.SessionManagerService;
    import weblogic.wsee.security.unt.ClientUNTCredentialProvider;
    import weblogic.xml.crypto.wss.WSSecurityContext;
    import weblogic.xml.crypto.wss.provider.CredentialProvider;
    @SuppressWarnings("deprecation")
    public class Main {
         @SuppressWarnings("unchecked")
         public static void main(String[] args) throws javax.xml.rpc.ServiceException,PolicyException{
         try{
         /*PresenceConsumerService_Impl pcs_impl = new PresenceConsumerService_Impl("http://localhost:8002/parlayx21/presence/PresenceConsumer?WSDL");
         PresenceConsumer pc = (PresenceConsumer) pcs_impl.getPresenceConsumer();
         UserCredentialsvalidation gt = new UserCredentialsvalidation("sdpai","sdp");*/
         SimpleReference rf = new SimpleReference();
         rf.setCorrelator("correlatorid");
         rf.setEndpoint(URI.create("http://localhost:8002/PresenceConsumerService/services/PresenceConsumer"));
         rf.setInterfaceName("PresenceConsumer");
         SubscribePresence sb = new SubscribePresence();
         sb.setApplication("sdp");
         sb.setPresentity(URI.create("tel:1234"));
         sb.setReference(rf);
         System.out.println(" Before calling subscribe presence ==" );
         //SubscribePresenceResponse spr = pc.subscribePresence(sb);
         System.out.println(" Hi There here 2226678565");
         System.out.println(" Hi There here 333");
         //raja
         String strUrl = "http://localhost:8002/parlayx21/presence/PresenceConsumer?WSDL";
         Stub objStub = (Stub) new PresenceConsumerService_Impl().getPresenceConsumer();
         objStub._setProperty(javax.xml.rpc.Stub.USERNAME_PROPERTY,"sdpai");
         objStub._setProperty(javax.xml.rpc.Stub.PASSWORD_PROPERTY,"sdp");
         objStub._setProperty(javax.xml.rpc.Stub.ENDPOINT_ADDRESS_PROPERTY,strUrl);
         PresenceConsumer port = (PresenceConsumer) objStub;
         String returnVal = "";
         System.out.println(" Hi There here 77");
         SubscribePresenceResponse spr = port.subscribePresence(sb);
         System.out.println(spr);
         //ended here
              catch(Exception e)
                   e.printStackTrace();
    =======================================
    UserCredentialsvalidation.java
    import com.bea.wlcp.wlng.et.core.module.session_manager.SessionManagerService_Impl;
    import com.bea.wlcp.wlng.schema.ews.common.ServiceException;
    import com.bea.wlcp.wlng.ws.sessionmanager.SessionManager;
    import com.bea.wlcp.wlng.ws.sessionmanager.SessionManagerService;
    import weblogic.wsee.security.unt.ClientUNTCredentialProvider;
    import javax.xml.rpc.Stub;
    import java.util.ArrayList;
    import java.util.List;
    public class UserCredentialsvalidation implements PolicyBase {
         private String username;
         private String password;
         public UserCredentialsvalidation(String username, String password) {
              this.username = username;
              this.password = password;
              String sessionManagerURL="http://localhost:8002/session_manager/SessionManager";
              SessionManagerService accessservice = null;
              try {
              accessservice = (SessionManagerService) new SessionManagerService_Impl(sessionManagerURL+"?WSDL");
              SessionManager port = accessservice.getSessionManager();
              System.out.println(" port >>>>>");
              System.out.println(" port >>>>>" +port);
              UserCredentialsvalidation pbase = new UserCredentialsvalidation();
              pbase.prepareStub((Stub)port,username,password);
              } catch (Exception e) {
                   System.out.println(" helo helo");
                   // TODO Auto-generated catch block
                   e.printStackTrace();
         public UserCredentialsvalidation() {
              // TODO Auto-generated constructor stub
         public void prepareStub(Stub stub,String username,String password) throws Exception {
              List<ClientUNTCredentialProvider> credProviders = new ArrayList<ClientUNTCredentialProvider>();
              System.out.println(" username >>> " + username.getBytes());
              System.out.println(" password >>> " + password.getBytes());
              credProviders.add(new ClientUNTCredentialProvider(username.getBytes(),
                        password.getBytes()));
              System.out.println("setting standard wssec");
              stub._setProperty("weblogic.wsee.security.wss.CredentialProviderList",
                        credProviders);
              System.out.println("Getting property from stub== " + stub._getProperty("weblogic.wsee.security.wss.CredentialProviderList"));
         @Override
         public void prepareStub(Stub port) throws Exception {
              // TODO Auto-generated method stub
    =========================================
    When I run the main program I am getting below exception
    Before calling subscribe presence ==
    Hi There here 2226678565
    Hi There here 333
    Hi There here 77
    java.rmi.RemoteException: SOAPFaultException - FaultCode [{http://schemas.xmlsoap.org/soap/envelope/}Server] FaultString [Unable to add security token for identity] FaultActor [null]No Detail; nested exception is:
         weblogic.wsee.jaxrpc.soapfault.WLSOAPFaultException: Unable to add security token for identity
         at com.bea.wlcp.wlng.ws.presence.PresenceConsumer_Stub.subscribePresence(PresenceConsumer_Stub.java:37)
         at Main.main(Main.java:62)
    Caused by: weblogic.wsee.jaxrpc.soapfault.WLSOAPFaultException: Unable to add security token for identity
         at weblogic.wsee.codec.soap11.SoapCodec.decodeFault(SoapCodec.java:355)
         at weblogic.wsee.ws.dispatch.client.CodecHandler.decodeFault(CodecHandler.java:115)
         at weblogic.wsee.ws.dispatch.client.CodecHandler.decode(CodecHandler.java:100)
         at weblogic.wsee.ws.dispatch.client.CodecHandler.handleFault(CodecHandler.java:88)
         at weblogic.wsee.handler.HandlerIterator.handleFault(HandlerIterator.java:309)
         at weblogic.wsee.handler.HandlerIterator.handleResponse(HandlerIterator.java:269)
         at weblogic.wsee.ws.dispatch.client.ClientDispatcher.handleResponse(ClientDispatcher.java:213)
         at weblogic.wsee.ws.dispatch.client.ClientDispatcher.dispatch(ClientDispatcher.java:150)
         at weblogic.wsee.ws.WsStub.invoke(WsStub.java:87)
         at weblogic.wsee.jaxrpc.StubImpl._invoke(StubImpl.java:337)
         at com.bea.wlcp.wlng.ws.presence.PresenceConsumer_Stub.subscribePresence(PresenceConsumer_Stub.java:32)
         ... 1 more
    Caused by: weblogic.xml.crypto.wss.WSSecurityException: Unable to add security token for identity
         at weblogic.wsee.security.wss.SecurityPolicyDriver.processIdentity(SecurityPolicyDriver.java:175)
         at weblogic.wsee.security.wss.SecurityPolicyDriver.processOutbound(SecurityPolicyDriver.java:73)
         at weblogic.wsee.security.WssClientHandler.processOutbound(WssClientHandler.java:71)
         at weblogic.wsee.security.WssClientHandler.processRequest(WssClientHandler.java:55)
         at weblogic.wsee.security.WssHandler.handleRequest(WssHandler.java:74)
         at weblogic.wsee.handler.HandlerIterator.handleRequest(HandlerIterator.java:141)
         at weblogic.wsee.handler.HandlerIterator.handleRequest(HandlerIterator.java:107)
         at weblogic.wsee.ws.dispatch.client.ClientDispatcher.dispatch(ClientDispatcher.java:132)
         ... 4 more
    ==========================================================
    I am working for 3 days to solve this issue, but helpless :(
    Please tell me I am going in right way , I read many forums and implemented different ways , but getting same problem, that too before calling webservice method .
    Do i need to do anything more apart from adding username and password parameters
    Please tell me the exact steps how to perform authentication with webservices
    Your answer will help me a lot .
    Thanks in Advance
    Regards
    Rajasekhar

    Please ignore this thread

  • Weird interaction with time machine

    Whenever time machine starts doing a backup, iMovie goes beserk. If it's playing a movie, it suddenly stops. Then when I hit the space bar to start it again, it jumps to a different project. In particular, I've been watching a clip in an event. But after the time-machine hiccup, the next I hit the space bar, it jumps to a project I was working on yesterday and starts playing that! Anyone seen this?

    I'm having a difficult time following, I understand English isn't your native language. You may have good luck with Google Translate.
    Also please read Pondini's Time Machine FAQs & Time Machine Troubleshooting.

  • Canno Interact with other machines

    When I try to send a message to a remote computer,chat, try to drag and drop a file, or share a screen, etc.. a message is returned"A username or password has not been set for “MU1”.
    I can control or observe machines.
    What am I missing?

    In ARD it is possible to setup exactly what ARD admin. users can and cannot do. I would check the preferences to see if you have full access to it's features or only a limited set.....

  • Interacting with windows programs

    I've been programming in java for about 18 months and now I'd like write a program that interacts with windows programs but I do not know where to begin. For example, if I wanted to write a program that closed WinAmp after it played the last song on my playlist how would I go about doing something like that?

    Unless this "WinApm" thing provides for being signalled somehow, other than by a user clicking on its close button or something like that, yur up the creek dude.

  • How do I restore lost emails with Time Machine?

    I would like to know how I restore lost drafts that I had on my mail program 6.6 with Time Machine.
    I forgot that when you restore the mail program (was buggy) it saves all your emails except for your drafts. So now I need to find all the drafts that were deleted with my Time Machine.
    Where are the drafts store prior to when I have to delete my mail program because of bugs in it?
    How do I find them once I launch Time Machine.  Can't recall where they are stored in my systems folder?
    Thanks for any help regarding this.

    From Apple support article: http://support.apple.com/kb/ht1427
    To restore individual files see Restoring specific files or folders.
    Restoring your entire system from a backup
    Hold down the Command and R keys at startup to start the computer from the Recovery system. The Recovery menu that appears includes the option to restore from a Time Machine backup. If you are using Mac OS X Snow Leopard, start your computer from the installation disc. Then use the "Restore From Time Machine Backup" utility.
    The Recovery system explained: http://support.apple.com/kb/HT4718

  • I am having problems interacting with Microsoft Office programs since the last update:cannot create a pdf through the 'print' menu in exel and both Word and Exel docs sent in Mac Mail end up being received as .dat files.

    I am having problems interacting with Microsoft Office programs since the last update:cannot create a pdf through the 'print' menu in exel and both Word and Exel docs sent in Mac Mail end up being received as .dat files.
    Both these situations have cropped up on my MacBook Pro since the last update.
    Thanks for your help.
    Cheers
    Bob

    The 'Winmail.dat' problem has been extensively covered in these forums, I would search for that (a Google search works well) and unfortunately I have not seen the pdf print problem before, but assuming the software is current and functions normally (other than the pdf print problem) I have no suggestion other than the obvious (but time consuming) re-installation of Office.
    I wish I had more

  • A problem caused this program to stop interacting with Windows

    I try to run Photoshop.exe, but it doesn't respond. I get this error message. How to fix it? I have no idea where is a problem? I had no problems with it earlier.
    ERROR MESSAGE:
    Description:
    A problem caused this program to stop interacting with Windows.
    Problem signature:
    Problem Event Name: AppHangB1
    Application Name: Photoshop.exe
    Application Version: 8.0.0.0
    Application Timestamp: 3fce5708
    Hang Signature: 1875
    Hang Type: 0
    OS Version: 6.0.6001.2.1.0.256.1
    Locale ID: 1063
    Additional Hang Signature 1: 3732c99c21cdca196fbfee3cc7094b85
    Additional Hang Signature 2: 848c
    Additional Hang Signature 3: 5c7261f725b6a443e8327138a3fe0208
    Additional Hang Signature 4: 1875
    Additional Hang Signature 5: 3732c99c21cdca196fbfee3cc7094b85
    Additional Hang Signature 6: 848c
    Additional Hang Signature 7: 5c7261f725b6a443e8327138a3fe0208
    Read our privacy statement:
    http://go.microsoft.com/fwlink/?linkid=50163&clcid=0x0409

    I suspect a RAM or hardware problem.

  • Description: A problem caused this program to stop interacting with Windows. Problem signature: Problem Event Name: AppHangB1 Application Name: firefox.exe Application Version: 1.9.2.3855 Application Timestamp: 4c48d5ce Hang Signature: 9962

    I am having this problem, in the first window when I try to do anything.
    Description:
    A problem caused this program to stop interacting with Windows.
    Problem signature:
    Problem Event Name: AppHangB1
    Application Name: firefox.exe
    Application Version: 1.9.2.3855
    Application Timestamp: 4c48d5ce
    Hang Signature: 9962
    Hang Type: 0
    OS Version: 6.0.6002.2.2.0.768.3
    Locale ID: 1033
    Additional Hang Signature 1: 5df72ce88195c0212c542e9c8c172716
    Additional Hang Signature 2: 2b94
    Additional Hang Signature 3: 9acafbb8ad01bf9d2eb258d8fddad3ca
    Additional Hang Signature 4: 9962
    Additional Hang Signature 5: 5df72ce88195c0212c542e9c8c172716
    Additional Hang Signature 6: 2b94
    Additional Hang Signature 7: 9acafbb8ad01bf9d2eb258d8fddad3ca
    == This happened ==
    Every time Firefox opened
    == User Agent ==
    Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4

    I suspect a RAM or hardware problem.

  • The program shany ip surrvilance Playback.exe version 4.0.7.3 stopped interacting with Windows and was closed

    in windows server 2008 r2 running shany ip surveillance
    when i want to playback from record file windows encounter error:The program shany ip surrvilance Playback.exe version 4.0.7.3 stopped interacting with
    Windows and was closed

    Hi Koosha,
    You should ask this question on
    Windows Forums.
    Thanks!
    If this answers your question please mark as answer. If this post is helpful, please vote as helpful by clicking the upward arrow mark next to my reply.

  • Interaction with MS DOS-program

    I try to interact with a MS DOS-program.
    I try something like this:
    // start command running
    startCmd = "start command";
    Process proc = Runtime.getRuntime().exec(startCmd);
    istr = proc.getInputStream();
    BufferedReader br = new BufferedReader(new InputStreamReader(istr));           
    printCmdLine(br);
    out = proc.getOutputStream();
    writer = new BufferedWriter(new OutputStreamWriter(out));
    writer.write("second command");
    writer.newLine();
    writer.flush();
    printCmdLine(br);
    writer.write("third command");
    writer.newLine();
    writer.flush();                     
    printCmdLine(br);
    // wait for command to terminate
    try {
         proc.waitFor();
    catch (InterruptedException e) {
         System.err.println("process was interrupted");
    // check its exit value
    if (proc.exitValue() != 0)
         System.err.println("exit value was non-zero");
    The problem is that I can't read from the InputStream:
    private static void printCmdLine(BufferedReader br) throws IOException {
         ArrayList list = new ArrayList();
         String outlist[];
         String str = br.readLine();
    The program can't read. The DOS prompt waits for an input from the keyboard and nothing more happens. If I don't try to read from the InputStream, the program hangs when it comes to proc.waitFor(); - The DOS prompt waits for an input from the keyboard. I can't achieve this by using a batch file either. Anyone knows how to do this?

    1. Buffered reader/writer might not be so good an idea; use the constructor with boolean flush.
    2. It might be, that you need to read from the MSDOS program's STDERR, the "error" InputStream. This can be tested in MSDOS by appending to the command-line (NT/2000) greater-than-out.txt and 2-greater-than-err.txt.

  • A problem caused this program to stop interacting with Windows.  Problem signature:   Problem Event Name:     AppHangB1

    I have received the following error message with Adobe Acrobat Pro XI when working with Portfolio Files. I am operating Windows 7 Professional.
    Has anyone found a fix for this issue?
    Description:
      A problem caused this program to stop interacting with Windows.
    Problem signature:
      Problem Event Name: AppHangB1
      Application Name: Acrobat.exe
      Application Version: 11.0.10.32
      Application Timestamp: 547e97af
      Hang Signature: 8dc7
      Hang Type: 0
      OS Version: 6.1.7601.2.1.0.256.48
      Locale ID: 1033
      Additional Hang Signature 1: 8dc7ed9d7ff41b8cc5ee35b7294b45e9
      Additional Hang Signature 2: e6d0
      Additional Hang Signature 3: e6d001594873a6b1363ccd82616a4edf
      Additional Hang Signature 4: 8dc7
      Additional Hang Signature 5: 8dc7ed9d7ff41b8cc5ee35b7294b45e9
      Additional Hang Signature 6: e6d0
      Additional Hang Signature 7: e6d001594873a6b1363ccd82616a4edf
    Read our privacy statement online:
      http://go.microsoft.com/fwlink/?linkid=104288&clcid=0x0409
    If the online privacy statement is not available, please read our privacy statement offline:
      C:\Windows\system32\en-US\erofflps.txt
    Please help
    John Sorkin [email protected]

    jamodi
    What computer operating system is your Premiere Elements 12 installed?
    How far into the opening of the program do you get? Do you get to the Expert or Quick workspaces?
    And, if so, how long can you stay there? What are you doing when you get this message, opening a new project
    or opening an existing one that has been saved/closed or just trying to launch the program from the desktop icon.
    Are you running the program Run As Administrator and from a User Account with Administrative Privileges?
    Do you have the McAfee antivirus program? Do you have the latest version of QuickTime installed on your computer
    with Premiere Elements 12?
    What video card/graphics card does your computer use? Have you verified at the web site of the manufacturer of the
    card that the video card/graphics card driver is up to date?
    If you do not know, check the Device Manager/Display
    Adapters to determine if you have 1 or 2 cards.
    Depending on your answers, the next step will be
    Uninstall the program the usual Control Panel way.
    (If you can get into the program long enough to go to Help Menu/Sign Out, please do that to deactivate the program
    before going to the uninstall in Control Panel area.)
    Do a run through with ccleaner (both the regular cleaner and registry cleaner parts) to get rid of leftovers from
    incomplete uninstalls and reinstalls.
    https://www.piriform.com/ccleaner
    Reinstall the program with the antivirus and firewalls disabled.
    (If you have McAfee as the antivirus, that may be problem, and we can take care of that without having to go
    through this uninstall/ccleaner/reinstall.)
    Let us start here and then decide what next.
    Thank you.
    ATR

  • I keep having this problem " A problem caused this program to stop interacting with Windows., Problem Event Name: AppHangB1". Even I uninstall or reinstall, the problem still persists! Anyone can help!?

    Description:
    A problem caused this program to stop interacting with Windows.
    Problem signature:
    Problem Event Name: AppHangB1
    Application Name: firefox.exe
    Application Version: 1.9.2.3951
    Application Timestamp: 4cc7ae16
    Hang Signature: baf1
    Hang Type: 0
    OS Version: 6.0.6002.2.2.0.256.6
    Locale ID: 18441
    Additional Hang Signature 1: 897ae6b831cea2d1f02b14199c9f3e81
    Additional Hang Signature 2: 6fd0
    Additional Hang Signature 3: b3b3b2452eec1eff2c85f2da7046f02c
    Additional Hang Signature 4: baf1
    Additional Hang Signature 5: 897ae6b831cea2d1f02b14199c9f3e81
    Additional Hang Signature 6: 6fd0
    Additional Hang Signature 7: b3b3b2452eec1eff2c85f2da7046f02c

    I suspect a RAM or hardware problem.

Maybe you are looking for

  • APEX, BI Publisher and SQL Query (PL/SQL Function returning SQL Query)..

    I don't know if I should be posting this in this Forum or the BI Publisher forum, so I am posting in BOTH forums.. I love APEX, let me say that first.. And appreciate the support offered here by the group, but am running int a confusing issue when BI

  • Information platform services in BODS 4.0

    What are the pros and cons of using information platform services that come with Data Services 4.0 and if we use Data Services 4.0 with information platform services from BOE4.0?

  • FORM LAYOUT DESIGNING

    Hi, Can anyone suggest me the approach to go for FORM LAYOUT DESIGNING in ISU? As i need to convert existing client Letters into ISU Forms(proabably smart forms). Secondly, if a client is having different body type (of letters) but same variable data

  • Channel values read

    Hi everyone, I have a very trivial problem.In a SUD dialog I load and display some channels in a  channel-combo-box.So everythings perfect so far,but I have some texts channels and I have text entries which lenght may vary, but I cannot figure it out

  • Tables that provide information on infoproviders

    HI , I need a table in BW/BI system which must have details of the infoproviders 1) How often they are loaded ? 2)  whether been used in reports? It is OK if the information is spread across multiple tables Thanks