<?xml version="1.0" encoding="iso-8859-1" ?>
<rss version="0.92">
<channel>
	<docs>http://backend.userland.com/rss092</docs>
	<title>Law Manager User Group</title>
	<link>http://www.lawmanager.info//</link>
	<description>www.lawmanager.info</description>
	<managingEditor>webmaster@lawmanager.info</managingEditor>
	<webMaster>webmaster@lawmanager.info</webMaster>
	<lastBuildDate>Wed, 07 Jan 2009 00:51:09 GMT</lastBuildDate>
<item>
	<title>Tech Questions :: RE: LawManager upgrade to version 5.31</title>
	<link>http://www.lawmanager.info/viewtopic.php?p=56#56</link>
	<description>Author: &lt;a href=&quot;http://www.lawmanager.info//profile.php?mode=viewprofile&amp;u=10&quot; target=&quot;_blank&quot;&gt;nickpuschak&lt;/a&gt;&lt;br /&gt;
Subject: Problem with MSComDlg.CommonDialog&lt;br /&gt;
Posted: Fri Nov 16, 2007 4:26 pm (GMT -4)&lt;br /&gt;
Topic Replies: 1&lt;br /&gt;&lt;br /&gt;
&lt;span class="postbody"&gt;The problem with MSComDlg.CommonDialog is not a LawManager issue, but Microsoft changed the licensing of this and some of the API.
&lt;br /&gt;
The dialog is only installed with a VB project using the dialog and I think previously it was installed as part of microsoft office.
&lt;br /&gt;

&lt;br /&gt;
There is a EvLa.GetPath function to do this. This will put up a dialog for the user to choose a file.
&lt;br /&gt;

&lt;br /&gt;
function GetPath([title: OleVariant], [filter: OleVariant], [defaultExt: OleVariant], [initialDir: OleVariant]): WideString
&lt;br /&gt;

&lt;br /&gt;
Function GetPath( _
&lt;br /&gt;
   ByVal Title As Variant, _
&lt;br /&gt;
   ByVal filter As Variant, _
&lt;br /&gt;
   ByVal defaultExt As Variant, _
&lt;br /&gt;
   ByVal initialDir As Variant _
&lt;br /&gt;
) As String
&lt;br /&gt;

&lt;br /&gt;
Parameters
&lt;br /&gt;
Title - The title to display in the dialog title. Usually this should describe what the user is selecting. 
&lt;br /&gt;

&lt;br /&gt;
filter - What filters to use. This is a vertical bar separated list of items. The items come in pairs when the description is first and then the actual filter. For example: 'Law Manager Script File|*.LMS;*.ECF|Report File (*.QRP)|*.QRP' will result in two file types being available. Either &amp;quot;Law Manager Script File&amp;quot; or &amp;quot;Report File (*.QRP)&amp;quot; are the choices the user will see. Internally the two file types are filtered by *.LMS;*.ECF and *.QRP. Notice that it is possible to have multiple file type filters grouped under one display entry for the user. 
&lt;br /&gt;

&lt;br /&gt;
defaultExt - The default extension to use. This will cause the dialog to focus on this filter first. 
&lt;br /&gt;

&lt;br /&gt;
initialDir - The initial directory to use for browsing. If this is not passed in then the current directory of the application will be used.
&lt;br /&gt;_________________&lt;br /&gt;Nicholas Puschak
&lt;br /&gt;
Bridgeway Software
&lt;br /&gt;
VP Product Management&lt;/span&gt;&lt;br /&gt;
</description>
</item>
<item>
	<title>Ask Law Manager :: RE: BDE not compatible with SQL Server 2005?</title>
	<link>http://www.lawmanager.info/viewtopic.php?p=55#55</link>
	<description>Author: &lt;a href=&quot;http://www.lawmanager.info//profile.php?mode=viewprofile&amp;u=10&quot; target=&quot;_blank&quot;&gt;nickpuschak&lt;/a&gt;&lt;br /&gt;
Subject: LawManager solutions for MS SQLServer 2005&lt;br /&gt;
Posted: Fri Nov 16, 2007 12:30 pm (GMT -4)&lt;br /&gt;
Topic Replies: 2&lt;br /&gt;&lt;br /&gt;
&lt;span class="postbody"&gt;TITLE:         LawManager support for MS SQL Server 2005 
&lt;br /&gt;
TYPE:          Developer Tip 
&lt;br /&gt;
PRODUCT:       Case Management Foundation 
&lt;br /&gt;
KEYWORDS:      MS SQL Server 2005 
&lt;br /&gt;
SYMPTOM/ISSUE: 
&lt;br /&gt;
============== 
&lt;br /&gt;
There are two issues regarding LawManager support for MS SQL Server 2005 that can cause problems.
&lt;br /&gt;

&lt;br /&gt;
ISSUES:         
&lt;br /&gt;
====== 
&lt;br /&gt;
1) Client server LM Pro uses the Borland BDE, which communicates with the SQL DB-Library, which is not included anymore with SQL 2005. This is only a problem with LM Pro, not LM Web/Server, which uses ADO to communicate with SQL Server. 
&lt;br /&gt;

&lt;br /&gt;
2) SQL 2005 does not support the older outer join SQL syntax if you are not running in SQL 2000 (80) compatibility mode. Many LawManager systems may have views that use the older MS SQL outer join syntax and the BDE uses that syntax to manage text fields. You can run Pro or Web in 2000 compatibiliy mode and not have to change your views. If you don't want to run in compatibility mode, you need to change your views and run LM Pro three tier or switch to LM Web. 
&lt;br /&gt;

&lt;br /&gt;
NOTE: LM Pro 5.4 may switch from BDE to ADO.
&lt;br /&gt;

&lt;br /&gt;
SOLUTIONS:      
&lt;br /&gt;
========= 
&lt;br /&gt;
If you don't want to upgrade much you can run MS SQL Server 2005 in a 2000 compatibility mode by doing the following: 
&lt;br /&gt;
1) For freshly installed SQL clients you will need to copy the dll &amp;quot;C:\WINDOWS\system32\ntwdblib.dll&amp;quot; from a MS SQL Server 2000 installation to your Client PCs that are running LM Pro.
&lt;br /&gt;
2) Set the Compatibility level of the database to SQL Server 2000 (80) on the SQL Server. 
&lt;br /&gt;

&lt;br /&gt;
For LawManager 5.3 we have done the following to allow you to run in full 2005 mode: 
&lt;br /&gt;
The views ParentAddressView and ParentPhoneView were updated. 
&lt;br /&gt;
CREATE VIEW dbo.ParentAddressView AS 
&lt;br /&gt;
SELECT Address.*, AddressType.description address_type, Office.office_name 
&lt;br /&gt;
FROM Address LEFT OUTER JOIN Office ON Address.office_key = Office.office_key, AddressType 
&lt;br /&gt;
WHERE Address.address_type_key = AddressType.address_type_key 
&lt;br /&gt;
CREATE VIEW dbo.ParentPhoneView AS 
&lt;br /&gt;
SELECT Phone.*, PhoneType.description phone_type, Office.office_name 
&lt;br /&gt;
FROM Phone LEFT OUTER JOIN Office ON Phone.office_key = Office.office_key, PhoneType 
&lt;br /&gt;
WHERE Phone.phone_type_key = PhoneType.phone_type_key 
&lt;br /&gt;

&lt;br /&gt;
The scripts with SQL changed: 
&lt;br /&gt;
DocMergeGenerateDoc (line 191 didn't need the outer join since Merge.selection_key is required) 
&lt;br /&gt;
GetComponentCaption - outer join wasn't needed (don't think script is being used) 
&lt;br /&gt;
MergeFieldSelectCode - outer join not needed (script may not be used) 
&lt;br /&gt;
The Scripts where there were Outer Join vars, but they weren't used: 
&lt;br /&gt;
MatterBudgetFinancialSQL - outer join vars not needed 
&lt;br /&gt;
MatterFinancialFooterFindSQL - outer join vars not needed 
&lt;br /&gt;
MatterFinancialHeaderSQL - outer join vars not needed 
&lt;br /&gt;
MatterFinancialSQL - outer join vars not needed 
&lt;br /&gt;
VendorHeaderSQL - outer join vars not needed 
&lt;br /&gt;
NOTE: LM Pro Client/Server uses the BDE and blob saving will NOT work since the BDE fires a SQL with the old style Outer Join, which we can not fix. The only solution is to run LM Pro in a three-tier deployment through LM Server, which uses ADO. ADO does not have this problem.
&lt;br /&gt;
MORE INFO:     
&lt;br /&gt;
========== 
&lt;br /&gt;
&lt;a href=&quot;http://pauked.com/blog/?p=83&quot; target=&quot;_blank&quot;&gt;http://pauked.com/blog/?p=83&lt;/a&gt; 
&lt;br /&gt;
DB-Library - Embedded SQL for C 
&lt;br /&gt;
Although the SQL Server 2005 Database Engine still supports connections from existing applications using the DB-Library and Embedded SQL APIs, it does not include the files or documentation needed to do programming work on applications that use these APIs. A future version of the SQL Server Database Engine will drop support for connections from DB-Library or Embedded SQL applications. Do not use DB-Library or Embedded SQL to develop new applications. Remove any dependencies on either DB-Library or Embedded SQL when modifying existing applications. Instead of these APIs, use the SQLClient namespace or an API such as OLE DB or ODBC. SQL Server 2005 does not include the DB-Library DLL required to run these applications. To run DB-Library or Embedded SQL applications you must have available the DB-Library DLL from SQL Server version 6.5, SQL Server 7.0, or SQL Server 2000.
&lt;br /&gt;

&lt;br /&gt;
The query uses non-ANSI outer join operators (”*=” or “=*”). To run this query without modification, please set the compatibility level for current database to 80 or lower, using stored procedure sp_dbcmptlevel. It is strongly recommended to rewrite the query using ANSI outer join operators (LEFT OUTER JOIN, RIGHT OUTER JOIN). In the future versions of SQL Server, non-ANSI join operators will not be supported even in backward-compatibility modes.
&lt;br /&gt;_________________&lt;br /&gt;Nicholas Puschak
&lt;br /&gt;
Bridgeway Software
&lt;br /&gt;
VP Product Management&lt;/span&gt;&lt;br /&gt;
</description>
</item>
<item>
	<title>Tech Questions :: LawManager upgrade to version 5.31</title>
	<link>http://www.lawmanager.info/viewtopic.php?p=54#54</link>
	<description>Author: &lt;a href=&quot;http://www.lawmanager.info//profile.php?mode=viewprofile&amp;u=69&quot; target=&quot;_blank&quot;&gt;BorisZ&lt;/a&gt;&lt;br /&gt;
Subject: LawManager upgrade to version 5.31&lt;br /&gt;
Posted: Thu Sep 06, 2007 1:37 pm (GMT -4)&lt;br /&gt;
Topic Replies: 1&lt;br /&gt;&lt;br /&gt;
&lt;span class="postbody"&gt;Did someone faces a problem with Common Dialog  in LawManager. We are calling it from VB script by 
&lt;br /&gt;
Set dlgOpen = CreateObject(&amp;quot;MSComDlg.CommonDialog.1&amp;quot;)
&lt;br /&gt;
This worked OK in 5.0, but returns an error in 5.31
&lt;br /&gt;
Thanks!
&lt;/span&gt;&lt;br /&gt;
</description>
</item>
<item>
	<title>Ask Law Manager :: RE: BDE not compatible with SQL Server 2005?</title>
	<link>http://www.lawmanager.info/viewtopic.php?p=53#53</link>
	<description>Author: &lt;a href=&quot;http://www.lawmanager.info//profile.php?mode=viewprofile&amp;u=68&quot; target=&quot;_blank&quot;&gt;genabrave&lt;/a&gt;&lt;br /&gt;
Subject: Sql 2005&lt;br /&gt;
Posted: Wed Sep 05, 2007 6:16 pm (GMT -4)&lt;br /&gt;
Topic Replies: 2&lt;br /&gt;&lt;br /&gt;
&lt;span class="postbody"&gt;Is this resolved? We are planning to upgrade to sql 2005 by calendar year end
&lt;/span&gt;&lt;br /&gt;
</description>
</item>
<item>
	<title>News and Announcements :: Hiring at Citigroup, Business Objects / MS SQL consultants..</title>
	<link>http://www.lawmanager.info/viewtopic.php?p=52#52</link>
	<description>Author: &lt;a href=&quot;http://www.lawmanager.info//profile.php?mode=viewprofile&amp;u=2&quot; target=&quot;_blank&quot;&gt;BHousel&lt;/a&gt;&lt;br /&gt;
Subject: Hiring at Citigroup, Business Objects / MS SQL consultants..&lt;br /&gt;
Posted: Fri Aug 24, 2007 9:22 am (GMT -4)&lt;br /&gt;
Topic Replies: 0&lt;br /&gt;&lt;br /&gt;
&lt;span class="postbody"&gt;Citigroup is looking to grow the size of the Law Manager support team.  Openings are available immediately for consultants with Business Objects experience.  Secondary skills include general reporting / data warehousing, MS SQL Server, Webfocus, VBScript ActiveX/COM development, and of course Law Manager.  The team is located in Pavonia/Newport area of Jersey City NJ, very close to I-78, PATH, and NJ Transit.  Please send all resumes or inquires directly to me, &lt;a href=&quot;mailto:bryan.m.housel@citi.com&quot;&gt;bryan.m.housel@citi.com&lt;/a&gt;.
&lt;br /&gt;

&lt;br /&gt;
Thanks!
&lt;/span&gt;&lt;br /&gt;
</description>
</item>
<item>
	<title>News and Announcements :: Law Manager User Group Meeting - 1/31/07</title>
	<link>http://www.lawmanager.info/viewtopic.php?p=51#51</link>
	<description>Author: &lt;a href=&quot;http://www.lawmanager.info//profile.php?mode=viewprofile&amp;u=2&quot; target=&quot;_blank&quot;&gt;BHousel&lt;/a&gt;&lt;br /&gt;
Subject: Law Manager User Group Meeting - 1/31/07&lt;br /&gt;
Posted: Sat Dec 09, 2006 11:56 am (GMT -4)&lt;br /&gt;
Topic Replies: 0&lt;br /&gt;&lt;br /&gt;
&lt;span class="postbody"&gt;From Rob Jarvis:
&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Quote:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;quote&quot;&gt;Greetings to everyone it has been some time since we had some communication with the user group. Over the last several weeks I have been working with Nancy Rich of Bridgeway to assembly a “Law Manager” East Coast User Group Conference.
&lt;br /&gt;

&lt;br /&gt;
Together we come up a date, time and place (See Below) and we are looking for the group to assist in putting together an agenda for the meeting. So please email me your agenda items that you would like discussed and I will pass them on to staff at Bridgeway to address ,once we have more in way of an agenda I will circulate it back to the group. In addition I have ask them to provide a conference call number for those who can’t attend them.   
&lt;br /&gt;

&lt;br /&gt;
In closing if you received the is email and are no longer involved with the Law Manager product in your company please pass on the email or let me know and I will change it on my distribution list.
&lt;br /&gt;

&lt;br /&gt;
Thanks
&lt;br /&gt;
&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;
&lt;br /&gt;

&lt;br /&gt;
DATE:  
&lt;br /&gt;
&lt;span style=&quot;font-weight: bold&quot;&gt;Wednesday, January 31, 2007&lt;/span&gt;
&lt;br /&gt;

&lt;br /&gt;
TIME:
&lt;br /&gt;
&lt;span style=&quot;font-weight: bold&quot;&gt;2 - 5 pm.&lt;/span&gt;
&lt;br /&gt;

&lt;br /&gt;
LOCATION:  
&lt;br /&gt;
&lt;span style=&quot;font-weight: bold&quot;&gt;The New York Suite 
&lt;br /&gt;
located on 4th floor of the Hilton New York&lt;/span&gt;
&lt;br /&gt;

&lt;br /&gt;
ADDRESS:
&lt;br /&gt;
&lt;span style=&quot;font-weight: bold&quot;&gt;The Hilton New York Hotel
&lt;br /&gt;
1335 Avenue of the Americas
&lt;br /&gt;
New York, NY 10019&lt;/span&gt;
&lt;/span&gt;&lt;br /&gt;
</description>
</item>
<item>
	<title>News and Announcements :: New FTP Site for LawManager Products</title>
	<link>http://www.lawmanager.info/viewtopic.php?p=50#50</link>
	<description>Author: &lt;a href=&quot;http://www.lawmanager.info//profile.php?mode=viewprofile&amp;u=10&quot; target=&quot;_blank&quot;&gt;nickpuschak&lt;/a&gt;&lt;br /&gt;
Subject: New FTP Site for LawManager Products&lt;br /&gt;
Posted: Mon Nov 20, 2006 1:12 pm (GMT -4)&lt;br /&gt;
Topic Replies: 0&lt;br /&gt;&lt;br /&gt;
&lt;span class="postbody"&gt;We have finally transferred all the product files (installers, release notes, manuals, configuration patches, etc.) from the old Thomson Elite ASR site to a new Bridgeway FTP site. There is a Table of Contents spreadsheet in the root directory with descriptions of each file. This site is intended only for LawManager clients that are under maintenance. Please contact our new support person, Kathy Huxley at &lt;a href=&quot;mailto:Support@lawmanager.com&quot;&gt;Support@lawmanager.com&lt;/a&gt; or call her at 610-729-1123 to get the URL to the new Product FTP site.
&lt;br /&gt;_________________&lt;br /&gt;Nicholas Puschak
&lt;br /&gt;
Bridgeway Software
&lt;br /&gt;
VP Product Management&lt;/span&gt;&lt;br /&gt;
</description>
</item>
<item>
	<title>News and Announcements :: RSS on the Message Board..</title>
	<link>http://www.lawmanager.info/viewtopic.php?p=49#49</link>
	<description>Author: &lt;a href=&quot;http://www.lawmanager.info//profile.php?mode=viewprofile&amp;u=2&quot; target=&quot;_blank&quot;&gt;BHousel&lt;/a&gt;&lt;br /&gt;
Subject: RSS on the Message Board..&lt;br /&gt;
Posted: Sat Nov 11, 2006 10:23 am (GMT -4)&lt;br /&gt;
Topic Replies: 0&lt;br /&gt;&lt;br /&gt;
&lt;span class="postbody"&gt;We have RSS for the message board now!
&lt;br /&gt;

&lt;br /&gt;
For those that don't know, this will let you grab a summary of the new message board posts from another program or website that is RSS-aware. For example, Firefox can make a Live Bookmark of the forum. Or you could add the RSS to your My Yahoo or Google Reader page.
&lt;br /&gt;

&lt;br /&gt;
RSS for the whole message board is:
&lt;br /&gt;
&lt;a href=&quot;http://www.lawmanager.info/rss.php&quot; target=&quot;_blank&quot;&gt;http://www.lawmanager.info/rss.php&lt;/a&gt;
&lt;br /&gt;

&lt;br /&gt;
Or you can just grab a single forum by including the forum id:
&lt;br /&gt;
&lt;a href=&quot;http://www.lawmanager.info/rss.php?f=3&quot; target=&quot;_blank&quot;&gt;http://www.lawmanager.info/rss.php?f=3&lt;/a&gt; (for News and Announcements)
&lt;/span&gt;&lt;br /&gt;
</description>
</item>
<item>
	<title>Tech Questions :: RE: Commit header and tabs in a single transaction?</title>
	<link>http://www.lawmanager.info/viewtopic.php?p=48#48</link>
	<description>Author: &lt;a href=&quot;http://www.lawmanager.info//profile.php?mode=viewprofile&amp;u=2&quot; target=&quot;_blank&quot;&gt;BHousel&lt;/a&gt;&lt;br /&gt;
Subject: Re: This is not really possible&lt;br /&gt;
Posted: Mon Aug 14, 2006 2:34 pm (GMT -4)&lt;br /&gt;
Topic Replies: 3&lt;br /&gt;&lt;br /&gt;
&lt;span class="postbody"&gt;&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;andy wrote:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;quote&quot;&gt;What's the actual use case you're trying to solve?
&lt;br /&gt;
It would defenitely be a nice feature, but is it worth the cost?&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;
&lt;br /&gt;

&lt;br /&gt;
Financial Transactions in the header, and a Cost Center tab which stores the contribution of each cost center towards the transaction.  Also, after the entire transaction is committed (header and tab), I need to call a stored procedure to update the balance summary info elsewhere.  
&lt;br /&gt;

&lt;br /&gt;
So it's definitely the sort of thing that I'd like to protect with a transaction, to ensure that header and tabs get committed together.
&lt;/span&gt;&lt;br /&gt;
</description>
</item>
<item>
	<title>Ask Law Manager :: BDE not compatible with SQL Server 2005?</title>
	<link>http://www.lawmanager.info/viewtopic.php?p=47#47</link>
	<description>Author: &lt;a href=&quot;http://www.lawmanager.info//profile.php?mode=viewprofile&amp;u=2&quot; target=&quot;_blank&quot;&gt;BHousel&lt;/a&gt;&lt;br /&gt;
Subject: BDE not compatible with SQL Server 2005?&lt;br /&gt;
Posted: Mon Aug 14, 2006 2:22 pm (GMT -4)&lt;br /&gt;
Topic Replies: 2&lt;br /&gt;&lt;br /&gt;
&lt;span class="postbody"&gt;Recently I ran into a problem with LawManager.Pro on a machine that had the SQL Server 2005 client tools installed.  It didn't work because the BDE (Borland Database Engine) relies on features that are no longer supported by SQL Server 2005 client tools.  
&lt;br /&gt;

&lt;br /&gt;
More info here:  &lt;a href=&quot;http://pauked.com/blog/?p=83&quot; target=&quot;_blank&quot;&gt;http://pauked.com/blog/?p=83&lt;/a&gt;
&lt;br /&gt;

&lt;br /&gt;
Can Law Manager 5.3, or a future version, be built without this BDE dependency?
&lt;/span&gt;&lt;br /&gt;
</description>
</item>
<item>
	<title>News and Announcements :: LawManager Pro 5.2.1 (293) Hotfix has been released</title>
	<link>http://www.lawmanager.info/viewtopic.php?p=46#46</link>
	<description>Author: &lt;a href=&quot;http://www.lawmanager.info//profile.php?mode=viewprofile&amp;u=10&quot; target=&quot;_blank&quot;&gt;nickpuschak&lt;/a&gt;&lt;br /&gt;
Subject: LawManager Pro 5.2.1 (293) Hotfix has been released&lt;br /&gt;
Posted: Thu Aug 10, 2006 11:54 am (GMT -4)&lt;br /&gt;
Topic Replies: 0&lt;br /&gt;&lt;br /&gt;
&lt;span class="postbody"&gt;The LawManager Pro 5.2.1 (293) Hotfix has been released and is available on the ASR site. The release notes describe the handful of fixes in this hotfix. This is a direct replacement for LM Pro 5.2 (286).
&lt;br /&gt;_________________&lt;br /&gt;Nicholas Puschak
&lt;br /&gt;
Bridgeway Software
&lt;br /&gt;
VP Product Management&lt;/span&gt;&lt;br /&gt;
</description>
</item>
<item>
	<title>Tech Questions :: RE: Creating a Tab against Mainframe Data</title>
	<link>http://www.lawmanager.info/viewtopic.php?p=45#45</link>
	<description>Author: &lt;a href=&quot;http://www.lawmanager.info//profile.php?mode=viewprofile&amp;u=34&quot; target=&quot;_blank&quot;&gt;andy&lt;/a&gt;&lt;br /&gt;
Subject: Using ADO&lt;br /&gt;
Posted: Tue Jul 18, 2006 3:31 pm (GMT -4)&lt;br /&gt;
Topic Replies: 1&lt;br /&gt;&lt;br /&gt;
&lt;span class="postbody"&gt;When using ADO against a stored procedure you have to change the statement type. Can I see the actual code which was used?
&lt;/span&gt;&lt;br /&gt;
</description>
</item>
<item>
	<title>Tech Questions :: RE: Commit header and tabs in a single transaction?</title>
	<link>http://www.lawmanager.info/viewtopic.php?p=44#44</link>
	<description>Author: &lt;a href=&quot;http://www.lawmanager.info//profile.php?mode=viewprofile&amp;u=34&quot; target=&quot;_blank&quot;&gt;andy&lt;/a&gt;&lt;br /&gt;
Subject: This is not really possible&lt;br /&gt;
Posted: Tue Jul 18, 2006 3:28 pm (GMT -4)&lt;br /&gt;
Topic Replies: 3&lt;br /&gt;&lt;br /&gt;
&lt;span class="postbody"&gt;This is a know problem, but commiting the header and footer at the same time opens up a real can of worms. For example you would have to populate all primary keys before you started since you cannot call the nextnumber proc once the transaction started. In addition the BeforeCommitCode in the footer assumes many times that the header is already commited and it would not be able to add new rows to the tab since it's executing within the transaction.
&lt;br /&gt;
Commiting data that eventually will show up in tabs and doing this in the DuringTransaction of the header is possible however it's involved since you have to unmark all changes in the actual notebook tab so it doesn't try to make modifications you already made.
&lt;br /&gt;
What's the actual use case you're trying to solve?
&lt;br /&gt;
It would defenitely be a nice feature, but is it worth the cost?
&lt;/span&gt;&lt;br /&gt;
</description>
</item>
<item>
	<title>Tech Questions :: Law Manager Build 5.2.286 Web Install</title>
	<link>http://www.lawmanager.info/viewtopic.php?p=43#43</link>
	<description>Author: &lt;a href=&quot;http://www.lawmanager.info//profile.php?mode=viewprofile&amp;u=4&quot; target=&quot;_blank&quot;&gt;mcpetrow&lt;/a&gt;&lt;br /&gt;
Subject: Law Manager Build 5.2.286 Web Install&lt;br /&gt;
Posted: Fri Jun 30, 2006 9:19 am (GMT -4)&lt;br /&gt;
Topic Replies: 0&lt;br /&gt;&lt;br /&gt;
&lt;span class="postbody"&gt;I'm testing the 3-tier version of Law Manager build 5.2.286 (not Law Manager.NET), and I'm experiercing a weird issue with the auto-detection for the Law Manager software on the client workstation.  I enter the following site:
&lt;br /&gt;

&lt;br /&gt;
&lt;a href=&quot;http://&amp;lt;servername&amp;gt;/lawmanager.pro&quot; target=&quot;_blank&quot;&gt;http://&amp;lt;servername&amp;gt;/lawmanager.pro&lt;/a&gt;
&lt;br /&gt;

&lt;br /&gt;
The server then redirects to the Default.asp page.  It's suppose to check if the system has Law Manager build 5.2.286.  If it does, then redirect to the Welcome.asp page.  If it does not, then redirect to the lmproweb.htm (which I'm assuming used to be the setup.asp page).
&lt;br /&gt;

&lt;br /&gt;
The problem is that it doesn't seems to be properly detecting the software.  Even with correct version of Law Manager installed, it always redirects to lmproweb.htm page.  Here the contents of the versions.inc file:
&lt;br /&gt;

&lt;br /&gt;
&amp;lt;% lm2000_release = &amp;quot;Release 5.2.0.286 - 1/3/2006&amp;quot; %&amp;gt;
&lt;br /&gt;
&amp;lt;% lm2000_version_major = 5 %&amp;gt;
&lt;br /&gt;
&amp;lt;% lm2000_version_minor = 2 %&amp;gt;
&lt;br /&gt;
&amp;lt;% lm2000_version_release = 0 %&amp;gt;
&lt;br /&gt;
&amp;lt;% lm2000_version_build = 286 %&amp;gt;
&lt;br /&gt;

&lt;br /&gt;
Here are a snippet of the lm2000ReadyStateChange function which resides on the Default.asp page:
&lt;br /&gt;

&lt;br /&gt;
needToUpgrade = (lm2000load &amp;amp;&amp;amp; (!lm2000load.IsVersionAtLeast(&amp;lt;%=lm2000_version_major%&amp;gt;, &amp;lt;%=lm2000_version_minor%&amp;gt;, &amp;lt;%=lm2000_version_release%&amp;gt;, &amp;lt;%=lm2000_version_build%&amp;gt;)));
&lt;br /&gt;

&lt;br /&gt;
This line then gets translated to the following during runtime:
&lt;br /&gt;

&lt;br /&gt;
needToUpgrade = (lm2000load &amp;amp;&amp;amp; (!lm2000load.IsVersionAtLeast(5, 2, 0, 286)));
&lt;br /&gt;

&lt;br /&gt;
Calling the following function within the debugger results in a value of false:
&lt;br /&gt;
lm2000load.IsVersionAtLeast(5, 2, 0, 286)
&lt;br /&gt;

&lt;br /&gt;
Decrementing the fourth parameter, I discovered that the function returns a value of true when it's reduced to the following:
&lt;br /&gt;

&lt;br /&gt;
lm2000load.IsVersionAtLeast(5, 2, 0, 272)
&lt;br /&gt;

&lt;br /&gt;
I therefore updated the versions.inc file by changing the lm2000_version_build to 272, and the software detection seems to be  working now.  I'm curious if others have ran into the similar situation, or perhaps we don't have the latest and greating LMProWebInstall.exe.
&lt;br /&gt;

&lt;br /&gt;
Any input is appreciated.  Have a good day!!
&lt;br /&gt;

&lt;br /&gt;
MIKE
&lt;br /&gt;_________________&lt;br /&gt;Mike Petrowski
&lt;br /&gt;
Senior Programmer/Analyst
&lt;br /&gt;
DaimlerChrysler Corporation&lt;/span&gt;&lt;br /&gt;
</description>
</item>
<item>
	<title>Tech Questions :: RE: Commit header and tabs in a single transaction?</title>
	<link>http://www.lawmanager.info/viewtopic.php?p=42#42</link>
	<description>Author: &lt;a href=&quot;http://www.lawmanager.info//profile.php?mode=viewprofile&amp;u=4&quot; target=&quot;_blank&quot;&gt;mcpetrow&lt;/a&gt;&lt;br /&gt;

Posted: Fri Jun 30, 2006 8:38 am (GMT -4)&lt;br /&gt;
Topic Replies: 3&lt;br /&gt;&lt;br /&gt;
&lt;span class="postbody"&gt;Not spending any time on this issue, I'd not sure if my theory would hold, but I was wondering if you considered moving all code from the BeforeCommitCode and the AfterCommitCode into the DuringTransactionCode event, for the header as well as each tab.  Additionally, do not explicitly call any commit statements.  When clicking the save button in the Law Manager header, the system wraps a &amp;quot;begin transaction&amp;quot; and a &amp;quot;commit transaction&amp;quot; around all the DML statements to be executed.  If the scenario exists whereby you need to explicitly throw a rollback statement based on some circumstance that occurred during the save process, all work within that transaction should, in theory, be reverted.  Again, just spectulation.  Might be something to test if you have time.  Good luck.
&lt;br /&gt;_________________&lt;br /&gt;Mike Petrowski
&lt;br /&gt;
Senior Programmer/Analyst
&lt;br /&gt;
DaimlerChrysler Corporation&lt;/span&gt;&lt;br /&gt;
</description>
</item>
</channel>
</rss>

