Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Execute Script window statement by statement rather than line by line #8551

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -252,3 +252,7 @@ installer/Output/

/packages/NLog.*/
/packages/Newtonsoft.Json.*/

# RScript package and dependencies
/packages/RScript.*/
/packages/System.Collections.Specialized.*/
288 changes: 204 additions & 84 deletions instat/clsRLink.vb

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion instat/dlgScript.vb
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ Public Class dlgScript
End Sub

Private Sub ucrBase_ClickOk(sender As Object, e As EventArgs) Handles ucrBase.ClickOk
frmMain.clsRLink.RunScriptFromWindow(strNewScript:=txtScript.Text, strNewComment:=strComment)
frmMain.clsRLink.RunScriptFromWindow(txtScript.Text.Trim(vbLf), strComment:=strComment)
End Sub

Private Sub ucrPnlGetData_ControlValueChanged(ucrChangedControl As ucrCore) Handles ucrPnlGetData.ControlValueChanged
Expand Down
9 changes: 7 additions & 2 deletions instat/instat.vbproj
Original file line number Diff line number Diff line change
Expand Up @@ -155,13 +155,18 @@
<Reference Include="RDotNet, Version=1.8.2.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\R.NET.1.8.2\lib\netstandard2.0\RDotNet.dll</HintPath>
</Reference>
<Reference Include="RScript, Version=0.1.0.4, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\RScript.1.0.6\lib\net461\RScript.dll</HintPath>
<Reference Include="RScript, Version=0.1.0.8, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\RScript.1.0.9\lib\net461\RScript.dll</HintPath>
</Reference>
<Reference Include="ScintillaNET, Version=3.6.3.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\jacobslusser.ScintillaNET.3.6.3\lib\net40\ScintillaNET.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Collections.Specialized, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\packages\System.Collections.Specialized.4.3.0\lib\net46\System.Collections.Specialized.dll</HintPath>
<Private>True</Private>
<Private>True</Private>
</Reference>
<Reference Include="System.Configuration" />
<Reference Include="System.Data" />
<Reference Include="System.Data.SQLite, Version=1.0.113.0, Culture=neutral, PublicKeyToken=db937bc2d44ff139, processorArchitecture=MSIL">
Expand Down
3 changes: 2 additions & 1 deletion instat/packages.config
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,9 @@
<package id="Microsoft.Win32.Registry" version="4.5.0" targetFramework="net461" />
<package id="NLog" version="5.1.0" targetFramework="net461" />
<package id="R.NET" version="1.8.2" targetFramework="net461" />
<package id="RScript" version="1.0.6" targetFramework="net461" />
<package id="RScript" version="1.0.9" targetFramework="net461" />
<package id="Stub.System.Data.SQLite.Core.NetFramework" version="1.0.113.3" targetFramework="net461" />
<package id="System.Collections.Specialized" version="4.3.0" targetFramework="net461" />
<package id="System.Data.SQLite.Core" version="1.0.113.7" targetFramework="net461" />
<package id="System.Security.AccessControl" version="4.5.0" targetFramework="net461" />
<package id="System.Security.Principal.Windows" version="4.5.0" targetFramework="net461" />
Expand Down
68 changes: 34 additions & 34 deletions instat/ucrScript.Designer.vb

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

Loading
Loading