Click here to Skip to main content
15,884,298 members

Comments by Member 9357265 (Top 14 by date)

Member 9357265 16-May-13 5:07am View    
Thanks all for the input and I have made all suggestions above, but I'm still getting the data from File2 on the second line..sorry to have to ask, but can you guys please help me out with the code. I've got a deadline for this stuff for tomorrow and about a weeks worth of stuff still to do.
Member 9357265 16-May-13 5:05am View    
Thanks for the hint, but I'm under a lot of pressure so please can you help me out with the code to eliminate the nee line character. Much appreciated!
Member 9357265 16-May-13 4:35am View    
Geez, thanks! Showing all the lines now, but still getting output on two separate lines as below...

1 TUBE 1.0000 0.0500
1 1
2 TUBE 0.5080 0.0316
2 2
Member 9357265 10-May-13 4:49am View    
I need to make sure that, for example, if I renamed 102030 to 1015 on one file, I need to find 102030 on the other file and rename it to 1015. The two files are used for two different functions, but they use the same content for certain components.
Member 9357265 6-May-13 5:00am View    
This is working a treat... just replaced
fprintf(OutPut,"%2d ", n10);
with
fprintf(OutPut,"%02lX", n10);
for all the cases and it works. Thanks