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

Check out SAS Innovate on-demand content! Watch the main stage sessions, keynotes, and over 20 technical breakout sessions!

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

Check out SAS Innovate on-demand content! Watch the main stage sessions, keynotes, and over 20 technical breakout sessions!
Bill_Guinan
Calcite | Level 5
Thanks, I knew I was missing something relatively simple.

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

Register now!

SAS Enterprise Guide vs. SAS Studio

What’s the difference between SAS Enterprise Guide and SAS Studio? How are they similar? Just ask SAS’ Danny Modlin.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

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