Search found 21 matches

by danny.little
Tue Mar 29, 2011 3:03 pm
Forum: Shell (User Interface)
Topic: IMonitorSelection_SelectionChanged not very reliable?
Replies: 1
Views: 614

IMonitorSelection_SelectionChanged not very reliable?

IMonitorSelection_SelectionChanged in the ZipCode Package I know is not written for 2.6, noted by another post. I was wondering if people have issues with missing the events? It does not seem to be to reliable for when I leave a field and check some information and show the user a warning about some...
by danny.little
Fri Mar 18, 2011 12:42 pm
Forum: ProForm (Order Tracking)
Topic: Stoping an order update based on invalid data
Replies: 1
Views: 653

Stoping an order update based on invalid data

Do we have a place in SoftPro that we can STOP an order update if we try to validate a field and it fails? For example, user enters Homes Contract ID and it’s wrong…can we stop the update or just issue a warning.
by danny.little
Tue Feb 15, 2011 12:56 pm
Forum: ProForm (Order Tracking)
Topic: Getting current profile user is in
Replies: 1
Views: 684

Getting current profile user is in

I know there is a way and it is probably very simple, but I cannot seem to find it. Is there way to get the current profile the user is in similar to the functionality of the GetActiveOrder() function in your examples. I want the profile in the bottom right hand corner of SoftPro screen. Hope that m...
by danny.little
Fri Jan 28, 2011 10:25 pm
Forum: Shell (User Interface)
Topic: Buyer Data for Individuals
Replies: 3
Views: 770

Re: Buyer Data for Individuals

Sorry Melissa, If i would have just tried looking at it a little further, i would have seen you meant that you create 2 of these and I need to just get the first and or second one depending on the type. Thanks A million. Here is the code that works!!!! WHEEEEE! Maybe I will save someone else this em...
by danny.little
Fri Jan 28, 2011 10:14 pm
Forum: Shell (User Interface)
Topic: Buyer Data for Individuals
Replies: 3
Views: 770

Re: Buyer Data for Individuals

Hey Melissa!! Thanks for the quick response, and i just got around to trying this and it still did nothing for me. Here is the full code: IBuyer buyer = order.Buyer.CreateNew(); IBuyerSellerPerson buyerPerson = buyer.BuyerSellerPerson.CreateNew(); buyerPerson.FirstName = "John"; buyerPerso...
by danny.little
Sat Jan 22, 2011 1:22 pm
Forum: Installation and Setup
Topic: Formula Editor functions, syntax
Replies: 1
Views: 908

Formula Editor functions, syntax

All,

Sorry if this is the wrong place to put this, but hey I need it. Is there documentation on the Formula editor and its commands, along with examples?

Thanks
Danny
by danny.little
Thu Dec 02, 2010 1:56 pm
Forum: General
Topic: Creating contact from Lookup API
Replies: 7
Views: 1369

Re: Creating contact from Lookup API

Found the SetFormula, guess I should have not jumped the gun, and good coding would be to check all values to see if they are formulas. But hey, it keeps me employeed. :D if (row["FeeTransferLedger"].IsFormula) { uw.SetFormula("", row["FeeTransferLedger"].Value.ToString...
by danny.little
Thu Dec 02, 2010 1:48 pm
Forum: General
Topic: Creating contact from Lookup API
Replies: 7
Views: 1369

Re: Creating contact from Lookup API

Here is an example since I see a lot of people looking at this. This is for other contact and Underwriter, I noticed they are not mapped exactly so i had to debug and look at all the rows columns to get the names to the Classes Properties. Now all I need to figure out is how to put a formula in the ...
by danny.little
Tue Nov 23, 2010 8:45 am
Forum: General
Topic: Creating contact from Lookup API
Replies: 7
Views: 1369

Re: Creating contact from Lookup API

Well, you are correct that I want to create an order contact and I do using what you stated. But I want to load that Order Contact with information from the contacts lookup tables. I hope this makes sense, uw = order.Underwriter.createNew(); uw.LookupCode = "CM"; // this does not seem to l...
by danny.little
Tue Nov 16, 2010 12:19 pm
Forum: General
Topic: Creating contact from Lookup API
Replies: 7
Views: 1369

Creating contact from Lookup API

Is there a way to create an Order Contact from using the Lookup API? Or am I totally thinking the wrong way with this. I am particulary concerned about the underwriter, since it is used in rate calculations.

An example would be great.

Any help is greatly appreciated.