如何更改 Excel 儲存格資料(編號:7877)

在下是用中文 VB6.0 ,在網上跑了幾天都找不到可用的範例如下︰
Public Sub FlexGrid_To_Excel(TheFlexgrid As MSFlexGrid, _
TheRows As Integer, TheCols As Integer, _
 Optional GridStyle As Integer = 1, Optional WorkSheetName _
 As String)
  
Dim objXL As New Excel.Application
Dim wbXL As New Excel.Workbook
Dim wsXL As New Excel.Worksheet
Dim intRow As Integer ' counter
Dim intCol As Integer ' counter
If Not IsObject(objXL) Then
MsgBox "You need Microsoft Excel to use this function", _
    vbExclamation, "Print to Excel"
  Exit Sub
End If
'On Error Resume Next is necessary because
'someone may pass more rows
'or columns than the flexgrid has
'you can instead check for this,
'or rewrite the function so that
'it exports all non-fixed cells
'to Excel
On Error Resume Next
' open Excel
objXL.Visible = True
Set wbXL = objXL.Workbooks.Add
Set wsXL = objXL.ActiveSheet
' name the worksheet
With wsXL
If Not WorkSheetName = "" Then
    .Name = WorkSheetName
  End If
End With

' fill worksheet
For intRow = 1 To TheRows
For intCol = 1 To TheCols
    With TheFlexgrid
      wsXL.Cells(intRow, intCol).Value = _
        .TextMatrix(intRow - 1, intCol - 1) & " "
    End With
  Next
Next
' format the look
For intCol = 1 To TheCols
wsXL.Columns(intCol).AutoFit
  'wsXL.Columns(intCol).AutoFormat (1)
  wsXL.Range("a1", Right(wsXL.Columns(TheCols).AddressLocal, _
     1) & TheRows).AutoFormat GridStyle
Next
End Sub








Automate Excel via VB -- Example---------------------------------------------------------
Set ApExcel = CreateObject("Excel.application") 'Creates an object
ApExcel.Visible = True ' So you can see Excel
ApExcel.Workbooks.Add 'Adds a new book.
ApExcel.cells(1, 1).Formula = "HELLO" 'Add Text to a Cell
'You can use the line above, changing coordenates to go to any
'cell and you can also add Formulas
ApExcel.Range("A1:Z1").BORDERS.Color = RGB(0, 0, 0) 'Use it to
'change the borders.
ApExcel.Columns("A:AY").EntireColumn.AutoFit 'To adjust the
'column's width.
ApExcel.Range("A:Z").Select 'To establish a selection
ApExcel.Selection.NumberFormat = "0" 'Adding different formats










vb開啟一個已存在的excel檔並存入資料-------------------------------------------------------
Private Sub Command1_Click()
Dim temp As Excel.Application
  Set temp = CreateObject("Excel.Application")
  temp.Workbooks.Open "F:\000-2測試區\vb測試區\abc.xls"
  temp.Range("B7") = "570"
  temp.Visible = True

End Sub

請高手幫幫忙