You could open up the assembly, do a File>Save a Copy and then rename the needed parts to the customers naming conventions. This way you could still have the old assembly and part names if needed.
Sorry for the late reply. Errata has been sent to those that requested. And I haven't come across the entire book in pdf format, but I'm sure it's somewhere.
I'm sure there are much simpler ways to be doing this but this is my first time programming with the serial port. I thought about using the OnComm event for each time something gets sent to the receive buffer but I'm not sure what I should use...comEvReceive or comEvEOF. If someone could...
Hi,
I'm having trouble splitting up data that I am receiving through a COM port. The data I am receiving is a mix between two different GPS readings and a telemetry reading. Right now the data comes through a timer control that takes whatever is in the receive buffer and writes to a text file...
Ooops the Receive button code is wrong it should read the following (I think?):
Private Sub cmdReceive_Click()
Dim Data As Variant
Do
Data = MSComm1.Input
Open "C:\Data.txt" For Append As #1
Write #1, Data
Close #1
Loop Until MSComm1.InBufferCount = 0 'As...
Here is the code I have so far....unfortunately I don't have anything to test this code with (nothing in serial port). I've put the MSComm object into the form...so I guess my question now is...to the best of your knowledge, will this work for the above described situation?
Private Sub...
Hey,
I'm pretty new at VB and programming in general, but I don't think my question is too hard of one.
I want to be able to receive data from a serial port and write that data to a text file until I either tell it to stop or the connection is gone. Now I've never programmed anything to read...
Hi, I am new to using MSC.Nastran. I am running through a tutorial to help familiarize myself with the program. I have created a relatively simple bar with one load with the three translational constraints on each end of the bar, and I am trying to analyze. When I run the analysis the...