by Mike.Sheen » Mon Dec 07, 2015 10:46 am
perry wrote:thanks Mike
*EDIT*
There is a missing step in the readme
I have to open "Forms" form and set "Assembly Full Name" as the plugin, otherwise I get an error when open the form.
Hmmm... but that's
exactly what this part of the script does:
- Code: Select all
IF NOT EXISTS(SELECT TOP 1 * FROM SY_Forms WHERE ClassName = 'Widgets')
INSERT INTO SY_Forms(ClassName, Description, FormType, HelpFileName, HelpPageName, AssemblyFullName)
SELECT 'Widgets', 'Widget Sample List Maintenance', 2, '', '',
(SELECT TOP 1 RecID FROM SY_Plugin WHERE Name = 'Sample Plugin - List Maintenance')
GO
The AssemblyFullName is set to the plugin ID. Did you rename the plugin or something before you ran the script?
Mike Sheen
Chief Software Engineer
Jiwa Financials
If I do answer your question to your satisfaction, please mark it as the post solving the topic so others with the same issue can readily identify the solution