Why the Smart Guides work on some objects, but not others?

Hello world. I try to use benchmarks commented to help me align a small arc in a corner, so I can merge into a larger shape. Well, I got my bow on one of the anchor points and I drag the path to full fitness, but no hanging, no label 'path' or 'intersection' appears. I have all the options for Smart Guides is checked and I've got Snap to Point activated but still no luck. It's a precise alignment, a guessing game. Any idea? -Mike

arc.png

Hold down the Cmd key while dragging.

Tags: Illustrator

Similar Questions

  • Why the HDR toning work with some pictures, but not for others?  I have CS6.

    I have Photoshop CS6 and when I go to HDR toning, it is only highlighted for work with some photos, but not others, why?  Thank you.

    HDR toning does not work with CMYK images. Change the RGB color mode, and then you will be able to use HDR toning. It also works with the color to grayscale mode.

  • Why Oracle ManagedDataAccess (4.121.1.0) throws a System.FormatException "first chance" exception to the debugger when you use OracleCommand.BindByName (on some machines, but not others)?

    Why Oracle ManagedDataAccess (4.121.1.0) throws a System.FormatException "first chance" exception to the debugger when you use OracleCommand.BindByName (on some machines, but not others)?

    This occurs when calling a ref cursor-returning packaged function stored with OracleCommand.BindByName set to true.

    When BindByName undefined, it works as expected.

    I've only been able to recreate this problem on a machine in my control. This issue has also reported to me by a customer.

    I tried to change the locale of the system of EN - UK EN-US, but I was not aware of any change in behavior.

    Similarly, I've tried explicitly overriding the default locale of the system with the OracleGlobalization parameters, and it also had no effect.

    Please see the example below.

    ---

    Environment (default):

    Windows 7 Professional 64-bit SP1

    Visual Studio 12.0.21005.1 REL / / CAN BE SIGNIFICANT

    .NET framework 4.5.51209

    Local system: EN - UK (but also does not, EN-US).

    Oracle.ManagedDataAccess 4.121.1.0

    "< supportedRuntime version ="v4.0"sku =". NETFramework,Version=v4.5.1"/ >

    Environment (base):

    Windows 7 Professional 64-bit SP1

    Updated Visual Studio 12.0.31101.00 //SEE above 4

    .NET framework 4.5.51209

    Local system: EN - UK

    Oracle.ManagedDataAccess 4.121.1.0

    "< supportedRuntime version ="v4.0"sku =". NETFramework,Version=v4.5.1"/ >

    Call stack:

    mscorlib.dll. Unknown System.Number.StringToNumber(string str, System.Globalization.NumberStyles options, ref System.Number.NumberBuffer number, System.Globalization.NumberFormatInfo info, bool parseDecimal)
    mscorlib.dll. Unknown System.Number.ParseInt32(string s, System.Globalization.NumberStyles style, System.Globalization.NumberFormatInfo info)
    Oracle.ManagedDataAccess.dll! Oracle.ManagedDataAccess.Types.OracleRefCursor.OracleRefCursor (connection Oracle.ManagedDataAccess.Client.OracleConnection, OracleInternal.ServiceObjects.OracleRefCursorImpl refCursorImpl, Oracle.ManagedDataAccess.Types.OracleIntervalDS sessionTimeZone, string commandText, string paramPosOrName, long initialLongFS, long initialLobFS, long [] scnFromExecution) unknown
    Oracle.ManagedDataAccess.dll! OracleInternal.ServiceObjects.OracleParameterImpl.ExtractRefCursorFromAccessor (Oracle.ManagedDataAccess.Client.OracleConnection conn, accessor OracleInternal.TTC.Accessors.Accessor, long fetchSize, Oracle.ManagedDataAccess.Client.PrmEnumType enumType, Oracle.ManagedDataAccess.Types.OracleIntervalDS sessionTimeZone, string commandText, string paramPosOrName, long longFetchSize, long lobFetchSize, long [] scnFromExecution, int currentRow) unknown
    Oracle.ManagedDataAccess.dll! OracleInternal.ServiceObjects.OracleParameterImpl.GetRefCursorFromBytes unknown (Oracle.ManagedDataAccess.Client.OracleConnection conn, accessor OracleInternal.TTC.Accessors.Accessor, long fetchSize, Oracle.ManagedDataAccess.Client.PrmEnumType enumType, Oracle.ManagedDataAccess.Types.OracleIntervalDS sessionTimeZone, string commandText, string paramPosOrName, long longFetchSize, long lobFetchSize, long [] scnFromExecution)
    Oracle.ManagedDataAccess.dll! Oracle.ManagedDataAccess.Client.OracleParameter.PostBind_RefCursor (connection Oracle.ManagedDataAccess.Client.OracleConnection, OracleInternal.TTC.Accessors.Accessor bindAccessor, long fetchSize, Oracle.ManagedDataAccess.Types.OracleIntervalDS sessionTimeZone, string commandText, string paramPosOrName, long longFetchSize, long lobFetchSize, long [] scnFromExecution) unknown
    Oracle.ManagedDataAccess.dll! OracleInternal.ServiceObjects.OracleCommandImpl.ExtractAccessorValuesIntoParam (Oracle.ManagedDataAccess.Client.OracleParameterCollection paramColl, Oracle.ManagedDataAccess.Client.OracleConnection connection, string commandText, long longFetchSize, long lobFetchSize, long [] scnFromExecution) unknown
    Oracle.ManagedDataAccess.dll! Unknown Oracle.ManagedDataAccess.Client.OracleCommand.ExecuteReader(bool requery, bool fillRequest, System.Data.CommandBehavior behavior)
    Oracle.ManagedDataAccess.dll! Oracle.ManagedDataAccess.Client.OracleCommand.ExecuteReader (unknown)

    > ManagedSimpleRefCursor1.exe! NoddyConsole.Program.Command_ExecuteReader_BindByName_Fails (Line 63 c#)

    Example:

    ----

    using System;

    using System.Collections.Generic;

    using System.Linq;

    using System.Text;

    using Oracle.ManagedDataAccess.Client;

    using Oracle.ManagedDataAccess.Types;

    using System.Data;

    namespace NoddyConsole

    {

    public class Program

    {

    public static int Main (string [] args)

    {

    Error int = 0;

    Errors += Command_ExecuteReader_BindByName_Fails();

    Errors += UseReturnValue_Command_ExecuteNonQuery_BindByName_Fails();

    return errors;

    }

    public static int Command_ExecuteReader_BindByName_Fails()

    {

    Error int = 0;

    Try

    {

    var conn = new OracleConnection ("UID = USER; Password = PASS; ("Data Source = / / your-host: 1521 / yours-sid");

    var conn = new OracleConnection ("user Id = UNIT620; Password = UNIT620; ("Data Source = / / ln1apidb01:1521 / fm");

    Conn. Open();

    IRRELEVANT

    OracleGlobalization og is conn. GetSessionInfo();

    og. DateFormat = "HH24:MI:SS MON-DD-YYYY";

    Conn. SetSessionInfo (og);

    var cmd is conn. CreateCommand();

    cmd.CommandType = CommandType.Text;

    BindByName. cmd = true;

    cmd.CommandText = "START: rc: = SHAUN.recreate_issue_1 (in_code = >: in_code); END; « ;

    var prm1 is cmd. CreateParameter();

    PRM1. ParameterName = "rc";

    PRM1. Direction = ParameterDirection.ReturnValue;

    PRM1. OracleDbType = OracleDbType.RefCursor;

    cmd. Parameters.Add (prm1);

    / * SHAUN.recreate_issue_1 * /.

    var prm2 is cmd. CreateParameter();

    PRM2. ParameterName = "in_code";

    PRM2. Direction = ParameterDirection.Input;

    PRM2. OracleDbType = OracleDbType.Varchar2;

    PRM2. Value = "A";

    cmd. Parameters.Add (prm2);

    /* */

    var reader is cmd. ExecuteReader(); FAILS to System.Number.StringToNumber (String str, NumberStyles options, NumberBuffer & number, NumberFormatInfo info, Boolean parseDecimal)

    /* *-/

    OracleRefCursor orc = null;

    cmd ExecuteNonQuery()); must fail here

    ORC = cmd. Parameters ["rc"]. Value as OracleRefCursor;

    If (orc is nothing)

    throws InvalidOperationException new ("Invalid return the ref cursor type");

    var = orc player. GetDataReader();

    /* */

    While (reader. Read

    {

    var values = new object [reader. FieldCount];

    drive. GetOracleValues (values);

    for (int i = 0; i < values.) Length; (++ I)

    {

    Console.WriteLine(values[i]);

    }

    }

    drive. Dispose();

    cmd. Dispose();

    Conn. Dispose();

    }

    catch (Exception ex)

    {

    Console.Error.WriteLine (ex) Message);

    Errors ++;

    }

    Finally

    {

    Return (true);

    }

    return errors;

    }

    public static int UseReturnValue_Command_ExecuteNonQuery_BindByName_Fails()

    {

    Error int = 0;

    Try

    {

    var conn = new OracleConnection ("UID = USER; Password = PASS; ("Data Source = / / your-host: 1521 / yours-sid");

    Conn. Open();

    IRRELEVANT

    OracleGlobalization og is conn. GetSessionInfo();

    og. DateFormat = "HH24:MI:SS MON-DD-YYYY";

    Conn. SetSessionInfo (og);

    var cmd is conn. CreateCommand();

    BindByName. cmd = true; // ####

    cmd.CommandText = "START: rc: = SHAUN.recreate_issue_1 (in_code = >: in_code); END; « ;

    cmd.CommandText = "START: rc: = SHAUN.recreate_issue_2; END; « ; No params, works

    var prm1 is cmd. CreateParameter();

    PRM1. ParameterName = "rc";

    PRM1. Direction = ParameterDirection.ReturnValue;

    PRM1. OracleDbType = OracleDbType.RefCursor;

    cmd. Parameters.Add (prm1);

    / * SHAUN.recreate_issue_1 * /.

    var prm2 is cmd. CreateParameter();

    PRM2. ParameterName = "in_code";

    PRM2. Direction = ParameterDirection.Input;

    PRM2. OracleDbType = OracleDbType.Varchar2;

    PRM2. Value = "A";

    cmd. Parameters.Add (prm2);

    /* */

    var reader is cmd. ExecuteReader();

    OracleRefCursor orc = null;

    HERE does NOT cmd. BindByName = true; System.FormatException first-chance exception in at System.Number.StringToNumber (String str, NumberStyles options, NumberBuffer & number, NumberFormatInfo info, Boolean parseDecimal)

    cmd ExecuteNonQuery());

    ORC = cmd. Parameters ["rc"]. Value as OracleRefCursor;

    If (orc is nothing)

    throws InvalidOperationException new ("Invalid return the ref cursor type");

    var = orc player. GetDataReader();

    While (reader. Read

    {

    var values = new object [reader. FieldCount];

    drive. GetOracleValues (values);

    for (int i = 0; i < values.) Length; (++ I)

    {

    Console.WriteLine(values[i]);

    }

    }

    drive. Dispose();

    ORC. Dispose();

    cmd. Dispose();

    Conn. Dispose();

    }

    catch (Exception ex)

    {

    Console.Error.WriteLine (ex) Message);

    Errors ++;

    }

    Finally

    {

    Return (true);

    }

    return errors;

    }

    }

    }

    ---

    create or replace package THAT SHAUN is

    type ref_cur_type is ref cursor;

    function recreate_issue_1)

    in_code varchar2: = null

    ) return ref_cur_type;

    end SHAUN;

    /

    create or replace package body what SHAUN

    -TTS000233

    function recreate_issue_1)

    in_code varchar2: = null

    ) return ref_cur_type is ref_cur ref_cur_type;

    Start

    Open the ref_cur for

    Select UO.object_name from user_objects UO;

    Return ref_cur;

    end recreate_issue_1;

    end SHAUN;

    /

    ---

    Thanks a lot to qualify again for me Alex.  I'll try upgrading to the latest version of the provider.

    The difference in behavior between the two hosts was found to be reduced to differences in configuration VS.

    Checking 'Just my code' prevents the first chance thrown in the debugger exception. As in fact, the exception is handled in the provider, it is enough for me.

  • Why my AS3 code working in 1 project, but not in another?

    I had a small project by working with simple buttons that worked very well. I had to restore my project and now it does not work. Ive cut all new code that I added and it did not work. I made a completely new project and copied the layers I'm testing and just the code that had the first working draft and it did not work either. any suggestions on why this might happen?

    This can be a bit of a twist when it comes to understand because this is what I consider an anomaly of the Flash.  If you have different instances of the same object in the adjacent images, then the object the latter will inherit properties of the thing seized.  Sometimes it works to your advantage and sometimes it will leave scratching you your head trying to solve a problem.

    You have shown just in case, you have an object in the frame of 30 and I guess it is the same object that is in frame 1.  Based on what I just explained as an anomaly, even if you were to remove the name of the instance of the object in the frame of 30, or call it something else, it will persist with the name of the instance assigned to it in box 1.  Try it and see - it should always work.

    However, if you interrupt (that ness adjacent) regarding placing a keyframe empty between frame 1 and 30, you will find that the button no longer works in the frame of 30.  He is most associated with the earlier proceedings.  To get back to work, you reassign Auditors properties.

  • my cd-rom reads some discs but not others like command and conquer. the first decade. IM using windows xp serv pack 3__

    my cd rom usually read some disks but others will read

    mkuholr,
    When you say that you "tried other cd rom" do you mean you replaced the drive to CD or just tried another disc?  If you haven't tried another drive and it's something that you are able to do, I would say that.  It is possible that it could be hardware related.

    I would also say that you check that you do not have any type of infection on your system.  Get rid of malware Mike - Engineer Support Microsoft Answers
    Visit our Microsoft answers feedback Forum and let us know what you think.

  • JQuery working on some pages, but not all

    Hello

    I added a bit of javascript, JQuery scripts to my site.  My main site has a sticky menu script and a script of back button up.  Everything works fine on www.performanceaire.com.

    I recently added a new section of the site that looks like a separate site. All the files are on the same hosting account.  I added the same sticky script menu and return to the top button and none of them work on my new pages.  I created these files in dreamweaver and for my new article, I created a new site in dreamweaver, even if I'm downloading everything on the same hosting account.

    I mention this because it seems weird that none of my scripts work on the "new site" (section).  I keep thinking that it does not find the file JQuery javascript file. But all files residing together so I'm stumped.

    For reference, the page I added the scripts for is www.performanceaire.com/BypassDamper.html.   The script is called <! - sticky menu - > and <!--back to top button - >.

    The www.performanceaire.com/index.html page is an example of the same scripts work.

    Any thoughts would be greatly appreciated... I'm on a date limit and need this problem!

    Shannon

    You need not display the browser console and correct your mistakes in javascript:

    stickUp.min.js:1 Eception TypeError: $(...). is not an (anonymous) function stickUp.min.js:1 b .fn .b .ready @ jquery.min.js:26(anonymous_function) @ stickUp.min.js:1 b .extend .ready @ jquery.min.js:28 @ t @ jquery.min.js:36

    main.js:6 Eception TypeError: $(...). flexslider is not a function (anonymous) @ main.js:6 m. Callbacks.j @ jquery.min.js:2 m. Callbacks.k.fireWith @ jquery.min.js:2 @ jquery.min.js:2J @ jquery.min.js:2 .ready .extend m

    stickUp.min.js:1 Eception TypeError: $(...). is not a function

  • Rocket support some .jpg, but not others? Pls help =.

    Okay so I'm a bit confused why doesn't my 4 GB Fuze in charge of some .jpg and then others?  Sorry if it took a LOT, but it's confusing and I'd like TO get this understood b4 I deploy here next week.

    TX and GL!

    Always use the Sansa Media Converter to put the photos in your Sansa. MSC can accept a large number of picture formats.

    Stylesheet wrote:

    Okay so I'm a bit confused why doesn't my 4 GB Fuze in charge of some .jpg and then others?  Sorry if it took a LOT, but it's confusing and I'd like TO get this understood b4 I deploy here next week.

    TX and GL!

  • VPN fails under W8 on some networks but not others

    I'm back to an Institute that I visited last year.  Last year, I was using a Windows 7 machine, and two VPN services that I use worked perfectly.  This year I'm back, but with a machine of Windows 8.  Neither the VPN service works.  Furthermore, I have excluded the problem in network of the Institute, because my wife brought his Windows 7 machine with it, and it still works perfectly.  The problem is subtle: on a side-trip to Berlin, VPN Windows 8 worked well a of the hotel network.

    Here are the two errors I receive, each with a different VPN server:

    1 standard server VPN in Windows 7 on my desktop at home: "error 806: the VPN connection between your computer and the VPN server was not successful...". "He goes on to say that the most common problem is that something is not configured to allow packets to the Protocol GRE Generic Routing Encapsulation ().

    2. the University VPN server: "Error 800: remote connection does not because attempts VPN tunnels failed...". »

    Suggestions?  Thank you.

    Hi Ken,

    The question is more suited in the TechNet forums. So I would say you mention the link and send the request in this forum for better support.

    http://social.technet.Microsoft.com/forums/en-us/w8itpronetworking/threads

    For any information related to Windows, feel free to get back to us. We will be happy to help you.

  • Why did datasocket works on some of the computers in a windows 2000 network, but not others?

    I use an executable program of labview which write Boolean arrays on multiple computers in a network and their bed on a computer 'server '.  All the client computers are running windows 2000 with the labview run time engine 8.6.  The server computer is running windows 2000 with the labview 8.6 developers edition.  I can only contact between a client computer and the server computer.  Communication will work either way between these two computers.  Either the computer can sucessfully read or write data datasocket.  Other computers cannot communicate in both directions.  All the computers are on the same network in the same workgroup and can see through the network.  It doesn't seem to be a firewall on all computers.  Suggestions?

    It seems he needs the installation standard/full engine runtime 8.6 with decision-making data.  I had the engine smaller run time file installed on the computers that did not work.

  • Newbie? Why did the CSS stylesheet work in some browser &amp; amp; not in others?

    I'm new to DW - always used GoLive - make the transition.

    I created styles in an internal style sheet and them moves on an external style sheet. The page works fine on my computer with the external style sheet in every browser I check it in but... When I download the page with the external stylesheet to the server-it only works in Safari, Opera, Windows IE-6. It does work in FireFox 2 and Netscape 9. It is as if there is no stylesheet attached to the document. Can someone explain what is happening? I tried everything but can not understand. Don't know enough to ask the right questions in google.

    http://www.summitcom.NET/PII/index5.html

    Any help really appreciated.

    Thank you

    Jim



    Osgood,

    Thanks for the suggestion. You were quite correct. I have contacted my server company, sent the URL you provided to them so the owner could see what the problem was and would be able to fix it. They didn't believe me at first.

    They just called and said that they fixed. It now works correctly.

    Thanks for the help.

    Jim

  • Ideas for why HttpConnection works with some clients and not others

    Hi, I have an application that downloads and analyzes an xml file. This works perfectly for some users and does not at all for others. They can even access the XML on the web, but it won't work with my application. Some said they used a bold font, other OS 4.5. Here is an excerpt from my source:

    HttpConnection conn = (HttpConnection) Connector.open(url);conn.setRequestMethod(HttpConnection.GET);String _node, _element;DocumentBuilderFactory docBuilderFactory = DocumentBuilderFactory.newInstance();DocumentBuilder docBuilder = docBuilderFactory.newDocumentBuilder();docBuilder.isValidating();Document doc = docBuilder.parse(conn.openInputStream());doc.getDocumentElement().normalize();NodeList list = doc.getElementsByTagName("*");// .. parse data
    

    Edit: formatting is all messed up

    Not necessarily. You * can * make your app to use BIS-B if you are a partner of the Alliance and I recommend this, but this is not necessary.

    Your customers can also connect using WAP 1.1, WAP2 or direct TCP. I would recommend that you try WAP2 first, this requires no info gateway APN or WAP. You can get the WAP2 info directly from the maintenance book.

    Try the code in the example (in the white paper that I attached earlier).

    Your best bet is to develop some hueristics of network connection using the CoverageInfo class (see the documentation of the API).

    We are doing something like this, at the bottom of the list:

    BES

    BIS-B

    WiFi

    WAP2

    WAP1.1

    Direct

    I think that in the USA, CA, UK and Western Union, BES and BIS - B cover approximately 90% of users. Once you walk out of those areas, it starts to be more exciting.

  • Free disc of Premiere Elements with the new camera. Installed on the pc and have shortcuts for items and items first. The serial No. work with Premiere Elements, but not Photoshop Elements. Why is this?

    Hi, I'm new to this bear so please with me. I have a free disc of Premiere Elements with a new canon camera and install it on my pc windows 8.1. After installation I have a shortcut for first elements and a shortcut for the elements, I guess that first for the video and photo elements. The drive came with a serial No. who worked with first, but when I opened elements, he asked for a serial No. but when I tried the same series only.  It says this serial No. is not valid for Adobe photoshop elements. I'm something wrong, I am missing a serial number, do I have to pay to use the side elements (photo editor), and if so I don't understand why he loaded the two programs on a disk I thought it was a big split in video and photo program.

    Help, please.

    Photoshop elements and first elements are two different programs (as you know).  they have different serial numbers used to activate them.

    If you were supposed to get both with your camera, you should have two serial numbers: quickly find your serial number

    However, is it possible that you had only to get a serial number of elements first and photoshop elements was provided as a trial (to see if you want to buy a serial number)?

  • Why do AS3 highlighting some fonts, but not others (which are quite common)?

    Hi all!

    I have a simple question that hopefully has a simple answer (which mocks me with his elusive). In the code below (from "University of Programming ActionScript 3.0 Game" of Gary Rosenzweig (2nd ed.)), I declare a style sheet simple using AS3 supported all the tags/attributes to emphasize a HTML link. My question is this: why AS3 don't highlight the chosen font (Arial), but still it will highlight some other fonts I have to substitute (such as "Times New Roman" and "Garamond")?

    // create a basic format
    var myFormat:TextFormat = new TextFormat();
    myFormat.font = "Arial";
    myFormat.size = 24;
    myFormat.bold = true;
    var myStyleSheet:StyleSheet = new StyleSheet();
    myStyleSheet.setStyle("A",{textDecoration: "underline", color: "#0000FF"});
    // create a text field with a Web URL link
    var myWebLink:TextField = new TextField();
    myWebLink.defaultTextFormat = myFormat;
    myWebLink.styleSheet = myStyleSheet;
    myWebLink.selectable = false;
    myWebLink.htmlText = "Visit <A HREF='http://flashgameu.com'>FlashGameU.com</A>!";
    myWebLink.x = 80;
    myWebLink.y = 90;
    myWebLink.width = 400;
    myWebLink.height = 30;
    addChild(myWebLink);
    var myLink:TextField = new TextField();
    myLink.defaultTextFormat = myFormat;
    myLink.styleSheet = myStyleSheet;
    myLink.selectable = false;
    myLink.htmlText = "Click <A HREF='event:testing'>here</A>";
    myLink.x = 80;
    myLink.y = 190;
    myLink.width = 400;
    myLink.height = 30;
    addChild(myLink);
    addEventListener(TextEvent.LINK, textLinkClick);
    function textLinkClick(event:TextEvent) {
     trace(event.text);
    }
    

    The underscore is here, that you're not just allowing sufficient height for the textfield object to show him.  TNR is a shorter police to the same font size, he manages to appear in 30 height.

  • My filter (for ads) works for some shippers, but not for others

    I have several filters. One is "Advertising" for ads I want to read later, but need not be cluttering up my Inbox. It seems to work for a couple of the entries but ignores the rest. I checked the spelling, and they all seem to be correct. My settings are:
    Apply filter by operating manually,
    Apply the filter when getting new messages, filter before spam classification,
    correspondence to one of the following values
    Contains (followed by the name of the seller, such as honda, staples, cvs).
    Move messages and ads

    This is a support forum for Firefox. You will need to contact your
    e-mail assistance provider.

    The filters have all send your 'junk e-mail' folder, but the implementation
    a list of 'safe' for those that you want.

    Separate the issue;
    Shows details of the system;

    Plug-ins installed

    Adobe Shockwave for Director Netscape plug-in, version 12.1.2.152
    Adobe Shockwave for Director Netscape plug-in, version 12.0.3.133

    Having multiple versions of a program can cause problems.
    You must remove older programs. Then download the current full installer.

    Shockwave Director:
    Shockwave Standalone install / Uninstaller {web link}
    Shockwave Director Version 12.2.1.171 http://get.adobe.com/shockwave/

  • EXE, built with the application Builder works on a PC but not on another PC

    Hello.

    I have the following problem:

    An old man. EXE-conversion of a VI (built with LabVIEW 8.2.1) works correctly on a PC with LabVIEW 2013. (This isn't the PC that was originally used to generate the original VI.)

    However, when I move this EXE to another PC (with the last engine LabVIEW to run (LVRTE2013std) installed) it does work correctly. It runs, but it's weird. Because of these specific "Symptoms", I am sure it has something to do with the custom scales used in the original VI. Anyway, I can't be sure of that because the EXE does not have the automatic error handling enabled.

    Finally, build a new EXE of the old VI would be quite difficult at this point for several reasons, so I would really like to get this old EXE to run correctly.

    Thank you in advance!


Maybe you are looking for