Skip to content

Commit

Permalink
Added clsCurrDataFrame
Browse files Browse the repository at this point in the history
  • Loading branch information
deaspo committed Apr 25, 2016
1 parent a7cb8d4 commit 4e57b6e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions instat/dlgExportDataset.vb
Original file line number Diff line number Diff line change
Expand Up @@ -59,13 +59,13 @@ Public Class dlgExportDataset
chkOptions.Enabled = False
grpOptions.Enabled = False
clsWriteCSV.AddParameter("file", Chr(34) & strFilePath & Chr(34))
clsWriteCSV.AddParameter("x", ucrAvailableSheets.cboAvailableDataFrames.SelectedItem)
clsWriteCSV.AddParameter("x", clsRFunctionParameter:=ucrAvailableSheets.clsCurrDataFrame)
ucrBase.clsRsyntax.SetBaseRFunction(clsWriteCSV)
Case ".xlsx"
clsWriteXLSX.SetRCommand("write.xlsx")
chkOptions.Enabled = True
clsWriteXLSX.AddParameter("file", Chr(34) & strFilePath & Chr(34))
clsWriteXLSX.AddParameter("x", ucrAvailableSheets.cboAvailableDataFrames.SelectedItem)
clsWriteXLSX.AddParameter("x", clsRFunctionParameter:=ucrAvailableSheets.clsCurrDataFrame)
ucrBase.clsRsyntax.SetBaseRFunction(clsWriteXLSX)
End Select
End Sub
Expand Down

0 comments on commit 4e57b6e

Please sign in to comment.