Search found 8 matches

by jcreyes
Thu Jun 18, 2009 8:24 pm
Forum: General
Topic: Order creation via the API
Replies: 8
Views: 1608

Re: Order creation via the API

Yes, I'm copying the dlls from the install folder.

Running the program exe in the Select folder did the trick!

Thanks John!
by jcreyes
Thu Jun 18, 2009 3:53 am
Forum: General
Topic: Order creation via the API
Replies: 8
Views: 1608

Re: Order creation via the API

I'm encountering a "Failed to load the SoftPro business rules for order" exception upon executing the following code lifted from the SDK.

Image

Any help to resolve this issue will be greatly appreciated. Thanks!
by jcreyes
Thu Feb 12, 2009 11:25 pm
Forum: Shell (User Interface)
Topic: Rendering Custom Fields in a SnapSection
Replies: 7
Views: 1130

Re: Rendering Custom Fields in a SnapSection

Thanks again Mark. One last question - I went looking around for the user controls used for rendering the CustomFields in the SoftPro assemblies, and I found out that the SoftPro.UI.Controls assembly contains the following friend classes: SoftProDatePicker, SoftProPercentBox and SoftProFlowTextBox a...
by jcreyes
Mon Feb 09, 2009 3:20 am
Forum: Shell (User Interface)
Topic: Rendering Custom Fields in a SnapSection
Replies: 7
Views: 1130

Re: Rendering Custom Fields in a SnapSection

I guess I have no choice but to create my own snap section for grouping multiple custom fields together in either a horizontal or vertical layout. Is there a way for me to access and render the custom user controls that SoftPro uses for rendering Custom Field types such as Flow Text, Date, DateTime,...
by jcreyes
Thu Feb 05, 2009 11:48 pm
Forum: Shell (User Interface)
Topic: Rendering Custom Fields in a SnapSection
Replies: 7
Views: 1130

Re: Rendering Custom Fields in a SnapSection

Thanks Mark for the prompt response. Is it possible to change the layout of the CustomFields such that they render horizontally (left to right) instead of vertically (top to bottom) by passing a value in the Settings node of the CustomFieldSnapSection?
by jcreyes
Wed Feb 04, 2009 1:42 am
Forum: Shell (User Interface)
Topic: Rendering Custom Fields in a SnapSection
Replies: 7
Views: 1130

Rendering Custom Fields in a SnapSection

Are there any available methods in the SoftPro API that we can use to render or embed CustomField controls (i.e. Currency, Date, FlowText, etc) in a SnapSection given that we're able to retrieve the CustomField definition?
by jcreyes
Thu Jan 22, 2009 10:23 pm
Forum: ProForm (Order Tracking)
Topic: Accessing Lookup Tables via API
Replies: 32
Views: 4657

Re: Accessing Lookup Tables via API

Thanks John! Another question - what is the best/quickest way to delete all records for a given Lookup table? I'm currently using the code snippet below: Public Shared Sub ClearLookupTable(ByVal lookupSvc As Lookups, ByVal tableName As String) Dim table As DataTable = lookupSvc.GetTable(tableName) F...
by jcreyes
Thu Jan 22, 2009 2:14 am
Forum: ProForm (Order Tracking)
Topic: Accessing Lookup Tables via API
Replies: 32
Views: 4657

Re: Accessing Lookup Tables via API

How do we determine the correct value to assign to the IsFormula property of the LookupValue when we try to insert a new row in a given Lookup table?