Search found 54 matches

by danvanf
Fri Dec 08, 2017 5:43 pm
Forum: Shell (User Interface)
Topic: Testing Custom Shell Packages
Replies: 2
Views: 1185

Re: Testing Custom Shell Packages

Excellent thanks, that was my concern. The license process had already started.
by danvanf
Fri Dec 08, 2017 1:25 pm
Forum: Shell (User Interface)
Topic: Testing Custom Shell Packages
Replies: 2
Views: 1185

Testing Custom Shell Packages

Hello Dev's, I want to allow a couple users to test an Shell Package using the Exp Hive. After registering the package on the test machine and starting Select using the Exp hive, Select crashes with a null reference error logged. I'm able to make it work, but wondering if I'm either missing a step, ...
by danvanf
Mon Jan 16, 2017 10:09 pm
Forum: Custom Order Rules
Topic: Looping through Commitment Exceptions looking for text
Replies: 5
Views: 1840

Re: Looping through Commitment Exceptions looking for text

Excellent thanks, as you noted the DLL doesn't import which was the show stopper. I was RTFM... sometimes giving the uneducated a manual isn't the best course of action. ;) The RTF issue remains, but I may have found a solution with the help of https://gist.github.com/gilsondev/7c1d2d753ddb522e7bc22...
by danvanf
Sun Jan 15, 2017 6:40 pm
Forum: Custom Order Rules
Topic: Looping through Commitment Exceptions looking for text
Replies: 5
Views: 1840

Re: Looping through Commitment Exceptions looking for text

Hey Dan, I can get you started, not quite complete. I hooked int Escrow Brief Legal, any scrollable field should work. def Property_EscrowBriefLegal_Value(args): root = args.Context.Root sav = '' for co in root.Title.Commitments: for t in co.Exceptions: if (t.Text.Contains('24+ Year Title Chain')): ...
by danvanf
Wed Jan 11, 2017 12:55 pm
Forum: General
Topic: Select.Client.ConnectionState Property and Event information
Replies: 1
Views: 774

Select.Client.ConnectionState Property and Event information

Hello, I am building a long running subscription based standalone application and have a couple questions around Select.Client.ConnectionState Property and Event. The app is hooked into file folders and an Office 365 / Exchange mailbox, stuffing attachments. For testing is there a way to simulate a ...
by danvanf
Tue Jul 26, 2016 6:51 pm
Forum: Standard/Enterprise Development
Topic: ProFormAPI Classic 15 SP 3.3 unable to load
Replies: 1
Views: 3356

ProFormAPI Classic 15 SP 3.3 unable to load

Hello, Today I'm updating a tool from using the Classic 15 SP1 API to the Classic 15 SP 3.3 ProFormAPI.Dll and associated files. I'm generating an exception "Unable to load DLL 'ProFormAPI.dll': The activation context being deactivated is not active for the current thread of execution. (Excepti...
by danvanf
Tue Oct 13, 2015 1:20 pm
Forum: Business Rules
Topic: IronPython Read Custom Field
Replies: 2
Views: 3486

Re: IronPython Read Custom Field

Thanks John, It does indeed, works great! It also helps with other bewilderment's. The simplicity of the complex is somewhat astounding. I need more time to play in IronPython, so much fun!
Thanks,
-Dan
by danvanf
Tue Oct 13, 2015 10:46 am
Forum: Business Rules
Topic: IronPython Read Custom Field
Replies: 2
Views: 3486

IronPython Read Custom Field

Hello, I have successfully hooked up to a custom field in IronPython, def PreliminaryTitleOpinion_HST_FS_35LandVal(args): args.Value = args.Context.HST_FS_100LandVal * 0.35 #HST_FS_100LandVal## is the custom field name # Redefine Custom Field Rule names to allow mapping to any field name. Preliminar...
by danvanf
Thu May 21, 2015 1:14 pm
Forum: Business Rules
Topic: IronPython set drop down list
Replies: 5
Views: 4011

Re: IronPython set drop down list

Thanks Bob. That all makes sense. Quick comments in order Quite cool on the execution speed, the Profiling Session Report showing 75 thousand calls in .39 seconds is impressive. I was being overly concerned about a couple hundred. Go figure I'd select something impossible like setting a drop down li...
by danvanf
Mon May 11, 2015 10:22 pm
Forum: Business Rules
Topic: IronPython set drop down list
Replies: 5
Views: 4011

IronPython set drop down list

Hello, I am playing with IronPython and have run across a question, which turns out to be 2 to 3 questions. I am attempting to set the drop down list, {{Order.Properties.Address.State}} to "OH" or "Ohio". The first issue I've had is simply getting to the field. To keep it simple,...