[Hardhats-members] Updated VA Demo for Cache

2005-12-01 Thread Nancy Anthracite
I have just today received and updated VA Demo (the one online at www.va.gov/vista) and I have not installed it or written instructions for installing it, but it is available for the adventurous among you. I plan to install it, write instructions and port it to GTM in due time. Anyone who wan

Re: [Hardhats-members] == OT: Vonage ==

2005-12-01 Thread Joseph Dal Molin
I use Primus here in Torontofor over a year nowit has had the odd minor glitch but overall it is excellent. I am saving at least $150-200 a month in long distance charges. Joseph Kevin Toppenberg wrote: I really wanted to use it. I even bought a telephone-ip adapter. Only then I fou

[Hardhats-members] CCHIT Pilot Testing

2005-12-01 Thread Nancy Anthracite
I'm predicting we will need to get *VistA and VistA* through this. CCHIT is ready to begin pilot testing of its proposed criteria and inspection methods for certifying EMRs http://www.modernhealthcare.com/article.cms?articleId=37800 -- Nancy Anthracite -

[Hardhats-members] VistA users each with their own userid. Was: Device attributes

2005-12-01 Thread Cameron Schlehuber
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of K.S. Bhaskar Sent: Monday, November 28, 2005 12:02 PM To: hardhats-members@lists.sourceforge.net Subject: Re: [Hardhats-members] Device attributes On Mon, 2005-11-28 at 10:44 -0800, Greg Woodhouse wrote: > That being said, I think you

Re: [Hardhats-members] == OT: Vonage ==

2005-12-01 Thread Kevin Toppenberg
I really wanted to use it.  I even bought a telephone-ip adapter.  Only then I found out that my telephone number that I would be given would be in a different area code from where I live (i.e. they have no local access points.)  So I never signed up. I read a review in a computer magazine that pu

[Hardhats-members] Java Enterprise System

2005-12-01 Thread Greg Woodhouse
>From the San Francisco Chronicle: Sun Banking on Open Source Sun Microsystems Inc. said Wednesday that it will give some of its key software to customers for free, hoping to catapult its popularity with businesses and developers. The Menlo Park company will no longer charge for the Java Enterp

Re: [Hardhats-members] Lambda abstration in "MUMPS"

2005-12-01 Thread Greg Woodhouse
--- Kevin Toppenberg <[EMAIL PROTECTED]> wrote: Continuing... > > To say that we want functions to treated as values seems a different > point than saying that to accomplish this would require the converse > situation of values being treated the same as functions (i.e. > requiring an entry in the

Re: [Hardhats-members] How to count pieces?

2005-12-01 Thread whitten
> > --- [EMAIL PROTECTED] wrote: > > > PUG>S X="A,B,C,D" > > > > PUG>W $L(X,",") > > 4 > > PUG> > > -poo Greg Woodhouse replied: > > And, of course, using $EXTRACT to retrieve values > > > MNT>S X="ABC,DEF,GHI" > > MNT>W $E(2) > 2 > MNT>W $E(X,",",2) > AB I'm not sure what this last examp

Re: [Hardhats-members] Object Oriented(OO) in Mumps

2005-12-01 Thread Nancy Anthracite
I have some EsiObjects Tutorials from a way back when Greenbelt meeting. I have them right next to my chair, tantalizing me to look at them and try this out, but I haven't done it yet. When I get home tonight, I will see how big they are. If you want them, email me and I will either upload t

[Hardhats-members] == OT: Vonage ==

2005-12-01 Thread Alberto Odor
Sorry for the Off Topic post. Is there anybody using Vonage VoIP services. Would like to hear your experience   Alberto

Re: [Hardhats-members] LOCKS

2005-12-01 Thread Greg Woodhouse
--- Kevin Toppenberg <[EMAIL PROTECTED]> wrote: > You have the XUPROG and XUMGR keys, and they are still locked? > > > Kevin I have these keys, but if I type "??", I still see You can also select a secondary option: Programmer mode [XUPROGMODE] **> Locked with XUPROGMO

Re: [Hardhats-members] How to count pieces?

2005-12-01 Thread Chris Richardson
The code; > > MNT>S X="ABC,DEF,GHI" > > MNT>W $E(X,",",2) > > AB because, the resolution of "," is 0, so the statement is actually; W $EXRACT(X,0,2) with the result of AB because the 0 character is always NULL, "", not $A(0). The range is three characters, 0 to 2, but only 2 characters are returne

Re: [Hardhats-members] How to count pieces?

2005-12-01 Thread Greg Woodhouse
--- [EMAIL PROTECTED] wrote: > > I'm not sure what this last example $E(X,",",2) is supposed to show, > since it really is showing that a comma "," evaluates as an integer > to zero (0) and $EXTRACT(X,0,2) is that same as $EXTRACT(X,1,2) > which is the character subsring of X from position 1 throu

Re: [Hardhats-members] LOCKS

2005-12-01 Thread Greg Woodhouse
--- Thurman Pedigo <[EMAIL PROTECTED]> wrote: > I have several menu items "LOCKED" with "XUPROG", "XUMGR" and other > similar > locks. I can delete the lock and get at them ok. Somehow I am having > trouble > getting them to "unlock" otherwise. Will appreciate suggestions. > > > > thurman >

RE: [Hardhats-members] LOCKS

2005-12-01 Thread Thurman Pedigo
Have those key assigned. Should have said I am testing this on VistA Office. I have it working fine in FileMan and a version of FOIA VistA. I wonder if there are some special locks in Office. I am mostly checking to see if I can ID the best way to manage (FOIA) patient file, so we can sav

Re: [Hardhats-members] Object Oriented(OO) in Mumps

2005-12-01 Thread Chris Richardson
Joseph is partially correct. In that many of the members of the working group were also some of the last members of the MUMPS Development Committee (MDC is still sleeping), he is correct. While many of those in the working group are also on the board or are officers is merely a coindicence. The

Re: [Hardhats-members] Object Oriented(OO) in Mumps

2005-12-01 Thread Michael Zacharias
--- Kevin Toppenberg <[EMAIL PROTECTED]> wrote: > Thanks for the link. And I have looked at EsiObjects before (briefly), and > frankly I find EsiObject in need of a good soundbyte. I.e. "EsiObjects is > " And no more than 5 words can go in the blank. But > from what I have

RE: [Hardhats-members] How to count pieces?

2005-12-01 Thread Greg Woodhouse
--- [EMAIL PROTECTED] wrote: > PUG>S X="A,B,C,D" > > PUG>W $L(X,",") > 4 > PUG> > -poo And, of course, using $EXTRACT to retrieve values MNT>S X="ABC,DEF,GHI" MNT>W $E(2) 2 MNT>W $E(X,",",2) AB MNT> and SET $PIECE to modify them in place MNT>S $P(X,",",2)="abc" MNT>W X ABC,abc,GHI MNT> a

Re: [Hardhats-members] Object Oriented(OO) in Mumps

2005-12-01 Thread Greg Woodhouse
--- Kevin Toppenberg <[EMAIL PROTECTED]> wrote: > > But for right now, I am seeing if I can write code in standard M > (with no > fancy tricks) that lets one store data is globals or arrays that then > act > like objects from other languages. > > Kevin I can tell you what I sometimes do: 1. Cre

Re: [Hardhats-members] LOCKS

2005-12-01 Thread Kevin Toppenberg
You have the XUPROG and XUMGR keys, and they are still locked? Kevin On 12/1/05, Thurman Pedigo <[EMAIL PROTECTED]> wrote: I have several menu items "LOCKED" with "XUPROG",  "XUMGR" and other similar locks. I can delete the lock and get at them ok. Somehow I am having trouble getting

Re: [Hardhats-members] How to count pieces?

2005-12-01 Thread Kevin Toppenberg
Thanks Larry. Kevin On 12/1/05, [EMAIL PROTECTED] <[EMAIL PROTECTED] > wrote:PUG>S X="A,B,C,D"PUG>W $L(X,",") 4PUG>-poo

Re: [Hardhats-members] Object Oriented(OO) in Mumps

2005-12-01 Thread Kevin Toppenberg
Thanks for the link.  And I have looked at EsiObjects before (briefly), and frankly I find EsiObject in need of a good soundbyte.  I.e. "EsiObjects is " And no more than 5 words can go in the blank.  But from what I have seen, it just won't fit. Even now, I just looked at the p

RE: [Hardhats-members] How to count pieces?

2005-12-01 Thread Larry . G . Carlson
PUG>S X="A,B,C,D" PUG>W $L(X,",") 4 PUG> -poo -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Kevin Toppenberg Sent: Wednesday, November 30, 2005 6:31 PM To: Hardhats Sourceforge Subject: [Hardhats-members] How to count pieces? It seems like I saw code

Re: [Hardhats-members] Object Oriented(OO) in Mumps

2005-12-01 Thread Michael Zacharias
Kevin If you haven't already, check out ESIObjects (http://www.esiobjects.org). It is an OO extension to M that uses M as the enabling language (i.e. the OO abstraction is done similarily to what you are doing. Using M data structures, etc). Michael --- Kevin Toppenberg <[EMAIL PROTECTED]> w

[Hardhats-members] LOCKS

2005-12-01 Thread Thurman Pedigo
I have several menu items “LOCKED” with “XUPROG”,  “XUMGR” and other similar locks. I can delete the lock and get at them ok. Somehow I am having trouble getting them to “unlock” otherwise. Will appreciate suggestions.   thurman 

Re: [Hardhats-members] Fileman.rsa for Cache

2005-12-01 Thread Nancy Anthracite
You are right. Now the whole package is 966KB, so I can email it to most. On Thursday 01 December 2005 08:46 am, Gregory Woodhouse wrote: On Nov 30, 2005, at 9:40 PM, Nancy Anthracite wrote: > I made an ANSI file for importing George Timoson's Medsphere Fileman > enhancements into VistA on Cache

Re: [Hardhats-members] Fileman.rsa for Cache

2005-12-01 Thread Gregory Woodhouse
On Nov 30, 2005, at 9:40 PM, Nancy Anthracite wrote: I made an ANSI file for importing George Timoson's Medsphere Fileman enhancements into VistA on Cache and it needs some folks to test it all out. I have the file on my server and instructions for using it, so if you are interested, send

Re: [Hardhats-members] Lambda abstration in "MUMPS"

2005-12-01 Thread Gregory Woodhouse
On Nov 30, 2005, at 6:09 PM, Kevin Toppenberg wrote: I'm afraid I can't reply in detail right now (I have a train to catch), but perhaps I can hint at a response. You are correct that functional programming doesn't add any expressive power in the sense that any program that can be writt

Re: [Hardhats-members] Object Oriented(OO) in Mumps

2005-12-01 Thread Joseph Dal Molin
...for clarification ... the "we" Chris is referring to was the MUMPS Development Committee. Joseph Chris Richardson wrote: Kevin; We were working this technology into a new language which woul work with MUMPS and other languages equally well. but have more true object technology involved.