สวัสดีครับ คือว่าผมเขียน windows service ขึ้นมาตัวนึงให้รัน exe ที่เป็น app from ความต้องการคือ มันจะรัน แล้ว โชว์ alter ขึ้นมาครับ แล้ว คราวนี้ มันรันขึ้น error มางี้อะครับ
A program running on this computer is trying to display a message ใน details มันขึ้นว่า This problem occurs when a program is not fully compatible with windows please contact the program or device manufactures(s) for more information
ProcessStartInfo startinfo = new ProcessStartInfo();
Process pStart = new Process();
startinfo = new ProcessStartInfo(@"D:\Jobs\JoinPle\BPCSOrderRunSchedule\BPCSOrderRunSchedule\bin\Debug\BPCSOrderRunSchedule.exe");
pStart.StartInfo = startinfo;
pStart.Start();
pStart.WaitForExit();
pStart.Close();