I made up a contrived example (actually a pretty useless one):
IdGlobal; TModBusFunction = Byte; TModBusDataBuffer = array[0..256] of Byte; TCommsBuffer=packed record TransactionID: Word; ProtocolID: Word; RecLength: Word; UnitID: Byte; FunctionCode: TModBusFunction; MBPData: TModBusDataBuffer; Spare: Byte; end;procedure TForm1.FormShow(Sender: TObject); Buffer: TIdBytes; ReceiveBuffer: TCommsBuffer; //iSize: Word; FillChar(ReceiveBuffer, SizeOf(ReceiveBuffer), 0); ReceiveBuffer.TransactionID := 1; ReceiveBuffer.ProtocolID := 2; ReceiveBuffer.RecLength := 3; ReceiveBuffer.UnitID := 4; ReceiveBuffer.FunctionCode := 5; FillChar(ReceiveBuffer.MBPData[0], SizeOf(ReceiveBuffer.MBPData), 6); ReceiveBuffer.Spare := 7; SetLength(Buffer, SizeOf(ReceiveBuffer)); Move(ReceiveBuffer, Buffer, SizeOf(ReceiveBuffer)); Move(Buffer, ReceiveBuffer, SizeOf(ReceiveBuffer)); ReceiveBuffer.UnitID := 8;I then set a breakpoint on the last line before the end, and ran it. When the breakpoint was hit, I looked at the contents of ReceiveBuffer using ToolTip Evaluation, and everything looked perfectly fine. I could see all of the proper values, including the ReceiveBuffer.Spare being 7. I then single stepped, and looked at ReceiveBuffer.UnitID; it in fact had a value of 8.
However, pressing F9 to continue running (expecting to be able to just close the form and end the application), I ended up in the CPU window and got a message from Vista that the application wasn't responding. I was just outside ntdll.DebugBreakPoint, IIRC, and single stepping brought me into ntdll.RtlReportException. I'm not quite sure what's happening, but it ain't good. Still looking.
Edit2: I ran it again, with the same results. However, this time I noticed before I used Ctrl+F2 to terminate the app that Vista was giving me a popup tooltray window indicating that "Project1.exe has been closed" and mentioning DEP (which I have enabled in hardware on this machine).
