18 lines
317 B
QBasic
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
|
|
|