BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Bill_Guinan
Calcite | Level 5

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

 

 

1 ACCEPTED SOLUTION

Accepted Solutions
ChrisHemedinger
Community Manager

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

SAS For Dummies 3rd Edition! Check out the new edition, covering SAS 9.4, SAS Viya, and all of the modern ways to use SAS!

View solution in original post

2 REPLIES 2
ChrisHemedinger
Community Manager

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

SAS For Dummies 3rd Edition! Check out the new edition, covering SAS 9.4, SAS Viya, and all of the modern ways to use SAS!
Bill_Guinan
Calcite | Level 5
Thanks, I knew I was missing something relatively simple.

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

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!

Register Now

Creating Custom Steps in SAS Studio

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 1319 views
  • 0 likes
  • 2 in conversation