J
Jan Krouwer
Hi,
I'm using OWC 9 in an Excel vba application. The code below works. That is,
in an embedded spreadsheet on a user form, the value typed in by a user is
transfered to a second embedded spreadsheet on this form. But this requires
a double click. I can't seem to get this to work when I try to use another
type of event which doesn't require extra user interaction, even though the
event fires (e.g., gRow changes properly). I tried EndEdit among others. Any
ideas?
Private Sub Spreadsheet2_dblClick(ByVal EventInfo As
OWC.SpreadsheetEventInfo)
gRow = frmEnterSpecs.Spreadsheet2.Selection.row
frmEnterSpecs.Spreadsheet3.Cells(gRow, 1).Value =
frmEnterSpecs.Spreadsheet2.Cells(gRow, 4).Value
End Sub
I'm using OWC 9 in an Excel vba application. The code below works. That is,
in an embedded spreadsheet on a user form, the value typed in by a user is
transfered to a second embedded spreadsheet on this form. But this requires
a double click. I can't seem to get this to work when I try to use another
type of event which doesn't require extra user interaction, even though the
event fires (e.g., gRow changes properly). I tried EndEdit among others. Any
ideas?
Private Sub Spreadsheet2_dblClick(ByVal EventInfo As
OWC.SpreadsheetEventInfo)
gRow = frmEnterSpecs.Spreadsheet2.Selection.row
frmEnterSpecs.Spreadsheet3.Cells(gRow, 1).Value =
frmEnterSpecs.Spreadsheet2.Cells(gRow, 4).Value
End Sub