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

I am using the code in your book, page 190, as below. I also set the Build Action property to: Embedded Resources.

The SAS program is in the BatchRun Solution Explore by Add Existing Item. But in the next line, when I use MessageBox.Show(macro) to check its value, it is blank. Wondering where did I miss something?

 

string macro = SAS.Tasks.Toolkit.Helpers.UtilityFunctions.ReadFileFromAssembly("SAS.Tasks.BatchRun.test.sas");

MessageBox.Show(macro);

 

Thanks!

Yihong

1 ACCEPTED SOLUTION

Accepted Solutions
ChrisHemedinger
Community Manager

I think that the most likely cause is a mismatched namespace.  In your function call, you reference the "SAS.Tasks.BatchRun" namespace.  But is that really the default namespace for your assembly?

 

Check the Project properties (Application tab) in Visual Studio, and verify that the "Default namespace" is SAS.Tasks.BatchRun.  If it's not, you'll have to change your call to ReadFileFromAssembly to match what is the default namespace.

 

You can also verify the embedded resource full name by running ILDASM on your DLL file, and looking at the manifest.  That will tell you the full namespace referenced.

 

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 that the most likely cause is a mismatched namespace.  In your function call, you reference the "SAS.Tasks.BatchRun" namespace.  But is that really the default namespace for your assembly?

 

Check the Project properties (Application tab) in Visual Studio, and verify that the "Default namespace" is SAS.Tasks.BatchRun.  If it's not, you'll have to change your call to ReadFileFromAssembly to match what is the default namespace.

 

You can also verify the embedded resource full name by running ILDASM on your DLL file, and looking at the manifest.  That will tell you the full namespace referenced.

 

Chris

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

Hi Chris,

 

That is exactly what happened! It works now.

Thank you very much for your help!

 

Yihong

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
  • 766 views
  • 1 like
  • 2 in conversation