Skip to content

Commit

Permalink
Merge pull request #188 from africanmathsinitiative/master
Browse files Browse the repository at this point in the history
updating branch
  • Loading branch information
Ivanluv authored Jul 8, 2021
2 parents fec131e + 1d547a0 commit b77b64e
Show file tree
Hide file tree
Showing 4 changed files with 491 additions and 8 deletions.
5 changes: 2 additions & 3 deletions instat/dlgExportDataset.vb
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ Public Class dlgExportDataset
'if no or single data frame selected or save as single checked then just set the base function to the default
If ucrReceiverMultipleDataFrames.GetVariableNamesList().Length <= 1 OrElse chkSaveAsSingleFile.Checked Then
ucrBase.clsRsyntax.SetBaseRFunction(clsDefaultFunction)
lblConfirm.Text = "Click Ok to Confirm the Export."
lblConfirm.Text = GetTranslation("Click Ok to Confirm the Export.")
Else
'else, create a string command for exporting separate files to a directory.
'note, as of 09/09/2020 rio didn't support exporting separate files in 1 command see issue #5590
Expand All @@ -123,10 +123,9 @@ Public Class dlgExportDataset
strCommand = strCommand & "rio::export( x = data_book$get_data_frame(data_name=""" & strItem & """), file = """ & ucrFilePath.FilePath & "/" & strItem & GetSelectedExtension(cboFileType.SelectedItem) & """)" & Environment.NewLine
Next
ucrBase.clsRsyntax.SetCommandString(strCommand)
lblConfirm.Text = "Files with the same names will be overwritten." & Environment.NewLine & "Click Ok to Confirm the Export."
lblConfirm.Text = GetTranslation("Files with the same names will be overwritten." & Environment.NewLine & "Click Ok to Confirm the Export.")
End If
TestOkEnabled()
autoTranslate(Me)
End Sub


Expand Down
320 changes: 317 additions & 3 deletions instat/dlgWindPollutionRose.Designer.vb

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit b77b64e

Please sign in to comment.