I am attempting to learn how to write a custom task in Visual Studio 2013 for SAS EG 6.1. I am following along in "Custom Tasks for SAS Enterprise Guide Using Microsoft .Net".
Where I'm stuck is getting the form to show, I've used the Template to create the application and it has created a defaut Overrides Function Show method. In the book, when it comes to "Adding a User Interface" I copied what was there (changed for my form)
' This function is called when it's time to show the task window Public Overrides Function Show(ByVal Owner As IWin32Window) As SAS.Shared.AddIns.ShowResult Dim dlg As Form1 = New Form1() dlg.Text = String.Format("Test my form.") If (DialogResult.OK = dlg.ShowDialog(Owner)) Then Return ShowResult.RunNow End If Return ShowResult.RunNow End Function
However, when I run the debugger and click on my task in SAS EG, it just opens a file dialog, not the Windows From I created.
Any help would be appreciated.
BIll
I think the initial file dialog you see comes from EG wanting you to add/select a data set for your task. After selecting the data set, your task form would show.
If your task does not require input data, then change the properties of your task by specifying this class attribute on your task class:
[InputRequired(InputResourceType.None)]
(Instead of "[InputRequired(InputResourceType.Data)]")
Chris
I think the initial file dialog you see comes from EG wanting you to add/select a data set for your task. After selecting the data set, your task form would show.
If your task does not require input data, then change the properties of your task by specifying this class attribute on your task class:
[InputRequired(InputResourceType.None)]
(Instead of "[InputRequired(InputResourceType.Data)]")
Chris
Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!
Check out this tutorial series to learn how to build your own steps in SAS Studio.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.