Macro VBA CST error-need help
來源:edatop
更新時間:2024-08-25
閱讀:
Hi every body i write a code of macro and i want to export the 1d results to .bmp and ASCII but
1.with .bmp files it export a file.bmp I want to export a S(2)(1) but no images inside
2.with ASCII it error :"no plot data available to export"
Can you help me.tks a lot
This is my code
With Result1D("a2(1)1(1)")
StoreViewInBmpFile ("E:\CSt\macro\rec_a50_b" & CStr(b) & ".bmp")
End With
With ASCIIExport
.Reset
.FileName ("E:\CSt\macro\rec_a50_b" & CStr(b) & ".txt")
.Mode ("Fixedwidth")
.Execute
End With
ive got similar program did u solve it?