If you see the error that contains "architecture mismatch" due to a 32-bit ODBC Connection that does not have a matching 64-bit ODBC, you'll want to make a Windows Form using (x86) CPU type and then use something similar to the following to open it up from within ShipLinx:


        void ReloadOrders()

        {

            string executable_path = @"C:\Program Files\LRMT\ShipLinxNet\cap-fixtures-orders.exe";


            using (System.Diagnostics.Process pProcess = new System.Diagnostics.Process())

            {

                pProcess.StartInfo.FileName = executable_path;

                pProcess.StartInfo.UseShellExecute = false;

                pProcess.StartInfo.RedirectStandardOutput = true;

                pProcess.StartInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden;

                pProcess.StartInfo.CreateNoWindow = true; //not diplay a windows

                pProcess.Start();

                string output = pProcess.StandardOutput.ReadToEnd(); //The output result

                pProcess.WaitForExit();

            }

        }


*This is specific to CAP FIXTURES*