Files
004_comission/armandarmand/task1/task1-ticket1/helloworld/browser/hello-etnet/WriteStockPrice.bas
louiscklaw ce9a4aa9b3 update,
2025-01-31 19:27:58 +08:00

18 lines
317 B
QBasic

Attribute VB_Name = "WriteStockPrice"
Option Explicit
Function run(row As Integer, content As String)
On Error GoTo eh
Worksheets(TARGET_SHEET).Range(COL_STOCK_PRICE & CStr(row)).Value = content
Done:
Exit Function
eh:
Debug.Print "WriteStockPrice"
Debug.Print row
Debug.Print content
End Function