Re: [U2] THE variable names

2005-07-25 Thread Mark Johnson
I know a assembler (not mcd but BAL) and PROC. Don't miss them though. - Original Message - From: Mark Baldridge [EMAIL PROTECTED] To: u2-users@listserver.u2ug.org Sent: Sunday, July 24, 2005 11:50 AM Subject: Re: [U2] THE variable names Could we not just avoid confusing the old(er)

Re: [U2] [UV] Select Question

2005-07-25 Thread Mark Johnson
We're beating a dead horse. I offered this method around 200 posts or 10 days ago. Mark Johnson - Original Message - From: [EMAIL PROTECTED] To: u2-users@listserver.u2ug.org Sent: Monday, July 25, 2005 12:17 PM Subject: RE: [U2] [UV] Select Question I can NAME THAT TUNE in *** 2

Re: [U2] [UV] Select Question

2005-07-25 Thread Mark Johnson
Is not 'muscle-memory' phrases what makes for being an effecient programmer. I can knock off a 5 field file maintenance program in around 10 minutes without even 'thinking'. No 4gl's or other magic programming need apply. Just pure code. my 1 cent - Original Message - From: Stewart

Re: [U2] THE variable names

2005-07-15 Thread Mark Johnson
a single problem that despite all working, some work better than the others. Then it's a personal preference. My 3 cents. Mark Johnson - Original Message - From: gerry-u2ug [EMAIL PROTECTED] To: u2-users@listserver.u2ug.org Sent: Friday, July 15, 2005 12:46 AM Subject: RE: [U2] THE variable

Re: [U2] THE variable names

2005-07-15 Thread Mark Johnson
not in a forward-writing environment with UD/UV, just maintenance and some tweaks. Mark Johnson - Original Message - From: [EMAIL PROTECTED] To: u2-users@listserver.u2ug.org Sent: Friday, July 15, 2005 5:47 PM Subject: Re: [U2] THE variable names In a message dated 7/15/05 7:19:42 AM Pacific

[U2] Re: Comments from Users Digest

2005-07-15 Thread Mark Johnson
One client has an A/R file with such a large array (235,000 attributes). upon READing the XREF and using DCOUNT, I put a 50,000 fork in the road. If less than 50,000, the regular application uses the XREFX sans REMOVE. If over 50,000, then it was easier to SELECT the file independent of the XREF.

Re: [U2] THE variable names

2005-07-14 Thread Mark Johnson
you're reading now. My 1 cent. Mark Johnson - Original Message - From: gerry-u2ug [EMAIL PROTECTED] To: u2-users@listserver.u2ug.org Sent: Tuesday, July 12, 2005 9:53 AM Subject: RE: [U2] THE variable names not trying to start anything - but was this intended as a joke ? I read

Re: [U2] [UV] Select Question

2005-07-14 Thread Mark Johnson
At the risk of starting another debate, I'll toss out my preference on internal (or external) READNEXTS. UD: LOOP WHILE READNEXT ID DO BLAH REPEAT D3: LOOP READNEXT ID ELSE EXIT UNTIL 0 DO BLAH REPEAT MCD and others I use the infidel EOF=0 logic EOF=0 LOOP READNEXT ID ELSE EOF=1 UNTIL EOF DO

Re: [U2] SYSTEM(20)?

2005-07-14 Thread Mark Johnson
Here, here. My MCD roots are showing as I truly love SP-JOBS. I have even wrote an equivilent using LISTPEQS for D3 systems. I never bothered on U2 systems as I was more of a contract programmer than an administater. SP-JOBS should have been picked up by the remaining keepers of the MV flame. It

Re: [U2] THE variable names

2005-07-12 Thread Mark Johnson
snip (Why else is COUNT(VAR,@FM)+(VAR NE ) syntax so popular?) \snip Because there is a real difference between COUNT and DCOUNT. COUNT counts the number of delimiters and DCOUNT counts the number of elements being delimited. Sort of backwards but accurate. Thus A=mark would have COUNT(A,@VM)

Re: [U2] THE variable names

2005-07-12 Thread Mark Johnson
Does that work. PRODS was not a File handle. Is there some magic that turns a mv'd variable into a file handle. Besides, if it did work, you would lose the included MV variable for use with associated fields or would have to manage by hand. Why use Remove? It's unfamiliar to more oldtimers and

Re: [U2] Strange phenomena using EXECUTE QSELECT and DATA statements in subroutine

2005-07-10 Thread Mark Johnson
Being a PROCologist, this problem was very popular in the Jurrasic Pick era. When these processes were handled in proc and the results sent to a databasic program, we could interrogate the errmsg variable E. Thus if you were trying to QSELECT something from a 'No Items Present' QUERY, you would

[U2] THE variable names

2005-07-10 Thread Mark Johnson
This ain't rocket science but it piques my curiosity. I've just acquired another client who's system contains an extrodinary use of the prefix THE in front of extracted values within a FOR/NEXT or LOOP and labels. READ CUST FROM blah, blah C=DCOUNT(CUST15,@VM) FOR I=1 TO C

Re: [U2] THE variable names

2005-07-10 Thread Mark Johnson
, But Starting to Look My Age Barouch Mark Johnson wrote: This ain't rocket science but it piques my curiosity. I've just acquired another client who's system contains an extrodinary use of the prefix THE in front of extracted values within a FOR/NEXT or LOOP and labels. READ CUST FROM blah

Re: [U2] THE variable names {Unclassified}

2005-07-10 Thread Mark Johnson
] [mailto:[EMAIL PROTECTED] On Behalf Of Mark Johnson Sent: Sunday, July 10, 2005 9:54 AM To: u2-users@listserver.u2ug.org Subject: [U2] THE variable names [snip] REC= ; READ REC FROM FILE, ID ELSE REC= Maybe this system was converted from a platform where the ELSE automatically set

Re: [U2] THE variable names

2005-07-10 Thread Mark Johnson
of the appended values will contain a null and the set will shift. Thus MV=DCOUNT(X5@VM) MV=MV+1 X5,MV=VAL X6,MV=ANOTHER VAL X7,MV=VAL.THATS.NULL X8,MV=MORE.VAL will always keep the mv'd set intact. Glad to tickle a response. Mark Johnson - Original Message - From: Womack, Adrian [EMAIL

Re: [U2] OCONV of no affect.

2005-06-21 Thread Mark Johnson
: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mark Johnson Sent: Monday, June 20, 2005 8:07 PM To: u2-users@listserver.u2ug.org Subject: Re: [U2] OCONV of no affect. Thanks Kevin, ML (or MR) seems to have no effect. - Original Message - From: Kevin King [EMAIL PROTECTED

Re: [U2] OCONV of no affect.

2005-06-20 Thread Mark Johnson
Mats: Will that work. I've always thought any boolean in an () results in either a 0 (false) or 1 (true). BTW, why did microsoft assign (-1) as true. I don't think (1) works as true and, while being 'not zero', is hard to use mathematically. Thanks. Why not save another line :(and a processor

Re: [U2] OCONV of no affect.

2005-06-20 Thread Mark Johnson
:[EMAIL PROTECTED] On Behalf Of Mark Johnson Sent: Saturday, June 18, 2005 7:56 AM To: u2-users@listserver.u2ug.org Subject: Re: [U2] OCONV of no affect. I'm not looking for a programming alternate or suggestions. Just a null conversion. I didn't invent this situation. It's just one

Re: [U2] OCONV of no affect.

2005-06-18 Thread Mark Johnson
Subject: RE: [U2] OCONV of no affect. OK, I'll bite. How does one find a situation where one wants this? From: Mark Johnson Is there an OCONV method that does nothing, ie IF X=OCONV(X,CONV) THEN TRUE. I've had a situation where I could use this before and one crept up today. How does

[U2] OCONV of no affect.

2005-06-17 Thread Mark Johnson
Is there an OCONV method that does nothing, ie IF X=OCONV(X,CONV) THEN TRUE. I've had a situation where I could use this before and one crept up today. No biggie. Thanks. --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe please visit http://listserver.u2ug.org/

[U2] Re: Databasic Differences

2005-06-09 Thread Mark Johnson
Not that I'm the best at straddling different versions of MV or the underlying OS, but here's a trick that I use for all of my varied clients. I create a separate program file that holds lots of subroutines that represent the differences between systems. For example (maybe not the best, but most

Re: [U2] Re: Databasic Differences

2005-06-09 Thread Mark Johnson
EXECUTE/PERFORM, LOCATE()/LOCATE, many of the system variables and a lot of the OS-level commands participate with these localized variables. I also have one called OPENER that removes all of the verbose ELSE statements, GET.WORK.FILE that creates a port-level WORK file on the fly, GET.IDS for

Re: [U2] OT Wumpus!

2005-06-01 Thread Mark Johnson
] www.valuepart.com -Original Message- From: Mark Johnson [mailto:[EMAIL PROTECTED] Sent: Friday, May 27, 2005 8:38 PM To: u2-users@listserver.u2ug.org Subject: Re: [U2] Help with BREAK-ON TOTAL When doing a recent analysis of their accounts, one of my clients still had the original GAMES account

Re: [U2] OT Wumpus!

2005-06-01 Thread Mark Johnson
6502 was the Apple I and II original 64K processor. Still have them. Those computers came with schematics which left the door open for an entire industry of add-on boards and devices. I had a EPROM burner for my Apple II. my 1 cent. - Original Message - From: John Jenkins [EMAIL PROTECTED]

Re: [U2] Help with BREAK-ON TOTAL

2005-05-27 Thread Mark Johnson
When doing a recent analysis of their accounts, one of my clients still had the original GAMES account still spinning on their system. Wumpus anyone? - Original Message - From: George Gallen [EMAIL PROTECTED] To: u2-users@listserver.u2ug.org Sent: Friday, May 27, 2005 9:23 AM Subject:

Re: [U2] Help with BREAK-ON TOTAL

2005-05-26 Thread Mark Johnson
With apologies to Robin Williams? - Original Message - From: Larry Hiscock [EMAIL PROTECTED] To: u2-users@listserver.u2ug.org Sent: Thursday, May 26, 2005 4:43 PM Subject: RE: [U2] Help with BREAK-ON TOTAL REALITY is for people who can't handle drugs. ;-) --Larry Larry Hiscock

Re: [U2] Include Vs Call - Software Maintenance

2005-05-19 Thread Mark Johnson
snip This reminds me of computer science class and the concepts of coupling and coherence (http://c2.com/cgi/wiki?CouplingAndCohesion). I need a UniBasic program that uses a lot of code from another program. snip I agree with ed's view on INCLUDES and SUBS. I wish this was more prevelant

Re: [U2] Dymanic vs Dimensioned

2005-05-15 Thread Mark Johnson
. Maybe if I managed 200-300 user systems then the nanosecond differences would make a difference. But for my collection of many 20-60 user clients, I see no difference. My 6 cents. Mark Johnson - Original Message - From: Larry Hiscock [EMAIL PROTECTED] To: u2-users@listserver.u2ug.org

Re: [U2] I'm in an Array quandry, any suggestions...

2005-05-12 Thread Mark Johnson
sites, more phone numbers, cell numbers, etc. None of these fields are required and no SPARE records are created unless that CUSTOMER needs a spare field. My 3 cents. Mark Johnson - Original Message - From: George Gallen [EMAIL PROTECTED] To: Ardent List u2-users@listserver.u2ug.org Sent

Re: [U2] I'm in an Array quandry, any suggestions...

2005-05-12 Thread Mark Johnson
I don't think MV participates with the OPTION BASE 0 or 1 that allows the use of REC(0) that VB etc does. MV tends to count things starting with 1 and MS starts with 0. REC0 etc tends to be confusing as it's not the primary key either. I use OPTION BASE 1 to keep my head on straight when

Re: [U2] I'm in an Array quandry, any suggestions...

2005-05-12 Thread Mark Johnson
That's nice to know. I've inherited some VB code written with OPTION BASE 0 and it keeps me honest. Thanks. - Original Message - From: James Canale, Jr. [EMAIL PROTECTED] To: u2-users@listserver.u2ug.org Sent: Thursday, May 12, 2005 1:16 PM Subject: RE: [U2] I'm in an Array quandry, any

Re: [U2] Software development - MVTools

2005-05-05 Thread Mark Johnson
Sounds like The Programmers Helper which is a parameter-less source code generator. In my travels I tend to shudder when a new client has a 4GL, whether commercial or home-grown. Primac, Vercon, Info-Quest, Datamaster, Screen-Gen, Wizard, Gull etc. I'm just getting into the Accuterm GUI designer

[U2] Accuterm GUI tutorials

2005-04-28 Thread Mark Johnson
One of my clients is wishing to move towards Accuterm GUI screens. I'm a seasoned MV person and a half-way decent VB6 person yet I'm getting frustrated with their development environment, managing the forms and underlying code. Thus I'm looking for instructional documentation (as opposed to

Re: [U2] Hold-file to CSV

2005-04-22 Thread Mark Johnson
I created the best of both worlds. I have a preview program that gathers the HOLD (PEQS) items and displays the first 5 non-blank lines. When a user chooses an item, the program asks if its going to a TXT file or CSV. If TXT, I simply copy it to that filename verbatim. If CSV, I run it through a

Re: [U2] Hold-file to CSV

2005-04-18 Thread Mark Johnson
: Sunday, April 17, 2005 10:35 PM Subject: Re: [U2] Hold-file to CSV That's the danger of creating reports in Basic. As you can see it's very limiting. Mark Johnson [EMAIL PROTECTED] wrote: I have my own method of taking English (access etc) statements and creating CSV's. I'm talking about not re

Re: [U2] Hold-file to CSV

2005-04-18 Thread Mark Johnson
in basic or English ? Is it simple to add subtotals in basic or English ? Is it easier to export data in basic or English ? Mark Johnson [EMAIL PROTECTED] wrote: How can Basic be limiting. It has everything English (sic) has and so much more. In fact, there are many reports that 'turn the corner

Re: [U2] Hold-file to CSV

2005-04-18 Thread Mark Johnson
. Solutions that work. People who care. V 858.678.0030 F 858.300.2600 W www.koretech.com -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Mark Johnson Sent: Monday, April 18, 2005 6:34 AM To: u2-users@listserver.u2ug.org Subject: Re: [U2] Hold-file

Re: [U2] Hold-file to CSV

2005-04-18 Thread Mark Johnson
make sense? Is it easier to export data in basic or English ? Is it easier to handle SUBvalues in basic or in English? (and no, we don't all use UniData :-) Cheers, Wol Mark Johnson [EMAIL PROTECTED] wrote: How can Basic be limiting. It has everything English (sic) has and so much

Re: [U2] Hold-file to CSV

2005-04-18 Thread Mark Johnson
or consecutive. They don't care if it's english, basic or BAL. It makes their job easier. my 2 cents. - Original Message - From: Stevenson, Charles [EMAIL PROTECTED] To: u2-users@listserver.u2ug.org Sent: Monday, April 18, 2005 11:24 AM Subject: RE: [U2] Hold-file to CSV From: Mark

Re: [U2] Hold-file to CSV

2005-04-17 Thread Mark Johnson
] Roger Glenfield wrote: Monarch from Datawatch. Converts report files into data. Mark Johnson wrote: The whole premise was to use the existing reports that are presently designed and not re-engineer them. Like many systems, this one is full of finished reports (both english

Re: [U2] Multiple OPEN statements

2005-04-16 Thread Mark Johnson
. You had the file opened. If you wanted to access another file, you had to close the current one and open the next. Kevin used Dartmouth as his base, so think pre-Micro$oft. Roger Mark Johnson wrote: Is this CLOSE thing a new thing. Haven't seen or heard of it in a quarter of a century. I

Re: [U2] Hold-file to CSV

2005-04-16 Thread Mark Johnson
is easier to handle? I agree, tabs would be better than commas as delimiters. - Original Message - From: Mark Johnson [EMAIL PROTECTED] To: u2-users@listserver.u2ug.org Sent: Friday, April 15, 2005 2:15 PM Subject: [U2] Hold-file to CSV I'm at the threshold of wanting (needing

Re: [U2] Multiple OPEN statements

2005-04-16 Thread Mark Johnson
This is not the first time people have referenced 'classrooms' where programming was learned. Any specific classrooms where Pick/MV was taught besides the VAR's seminars. Specifically a formal accredited environment for Pick/MV and not just some left-over Pascal-era or contemporary teachings. I

Re: [U2] Multiple OPEN statements

2005-04-16 Thread Mark Johnson
That school is very diverse and doesn't offer any standardization that seems to come up every once in a while on this forum. I appreciate the humor but I'm really trying to learn where people are taught their Pick/MV techniques (and defend them as gospel as they have been taught) as opposed to

Re: [U2] Multiple OPEN statements

2005-04-16 Thread Mark Johnson
Play on words, eh? There's just no official standards despite what many imply. - Original Message - From: [EMAIL PROTECTED] To: u2-users@listserver.u2ug.org Sent: Saturday, April 16, 2005 8:19 PM Subject: Re: [U2] Multiple OPEN statements Are you implying it would be better if

Re: [U2] Hold-file to CSV

2005-04-16 Thread Mark Johnson
Wow, you pegged me properly. I once bought an SP-JOBS utility for D3 (allegedly) and it was somewhat incomplete and had a few bugs that it basically taught me what to write and I wrote my own. P.S. If not for anything else, Microdata had one of the best spooler manager. Thanks. - Original

Re: [U2] Multiple OPEN statements

2005-04-15 Thread Mark Johnson
] To: u2-users@listserver.u2ug.org Sent: Thursday, April 14, 2005 11:51 PM Subject: RE: [U2] Multiple OPEN statements Mark Johnson wrote: I just acquired a new client and found an interesting programming style that for the life of me I cannot understand why anyone in their right mind would

Re: [U2] Multiple OPEN statements

2005-04-15 Thread Mark Johnson
Is this CLOSE thing a new thing. Haven't seen or heard of it in a quarter of a century. I know it's in MS Basic(s). - Original Message - From: Don Kibbey [EMAIL PROTECTED] To: u2-users@listserver.u2ug.org Sent: Friday, April 15, 2005 7:22 AM Subject: Re: [U2] Multiple OPEN statements

Re: [U2] Multiple OPEN statements

2005-04-15 Thread Mark Johnson
Call me old-school but I prefer top-down OPEN file TO handle ELSE STOP (sic) to get them all out of the way. Whether 1 or 50 files, the get all opened at the same time. If those choose to have a CALL OPEN.FILES internal sub or named commons, then that's also a respectable method. To have the main

Re: [U2] Pro's/cons of keeping UV maint/support contract current (paid)

2005-04-14 Thread Mark Johnson
I agree. But disregarding the insurance tangent, what do these small companies get at the end of their 10-20 years duration before the alleged big bang. At least 10-15 years ago, they visited once a month to vacuum the printers. Peace of mind is one thing, but many of my clients share the

Re: [U2] OT MV-Base

2005-04-02 Thread Mark Johnson
to be of the highest priviledge. Mark Johnson. - Original Message - From: Ross Ferris [EMAIL PROTECTED] To: u2-users@listserver.u2ug.org Sent: Thursday, March 10, 2005 1:42 AM Subject: RE: [U2] OT MV-Base They didn't touch the W2000 server hosting the mvbase. Statements like this ALWAYS make me

Re: [U2] Unique Ids

2005-03-09 Thread Mark Johnson
The only other thing I've experienced that hasn't been mentioned in this thread is if an item gets stored in a different frame than what it was supposed to use. Thus LIST FILE would show it but SORT FILE would not. That was in the early 1980's and microdata called it a 'database failure'.

Re: [U2] [UV] SYSTEM() function

2005-03-09 Thread Mark Johnson
I just put this in on D3 and it's SYSTEM(33). maybe the same? - Original Message - From: Donnie Jacobs [EMAIL PROTECTED] To: U2-Users u2-users@listserver.u2ug.org Sent: Wednesday, March 09, 2005 11:59 AM Subject: [U2] [UV] SYSTEM() function Universe 10.0.8 -- Unix Could someone

Re: [U2] OT MV-Base

2005-03-09 Thread Mark Johnson
) to W2003 and all XP-Pro clients. They didn't touch the W2000 server hosting the mvbase. Everything works as expected except the UOPEN, UCLOSE etc family of commands. They re-loaded the mvClient for everyone as well. Thanks in advance for your help. Mark Johnson --- u2-users mailing list u2-users

Re: [U2] UV Programmer/Analyst contract position

2005-03-06 Thread Mark Johnson
I was about to mention the potential for lower $ in an academic environment. What is the exchange, ie what do you get in that environment versus the percieved lower pay. Mid $60's is the implied 'okay' amount in the northeast US (plus benefits) with some peaks around $70-75. The $60 is also for 11

Re: [U2] UV Programmer/Analyst contract position

2005-03-06 Thread Mark Johnson
My most favorite recollection about rates is once when I was negotiating a rate with a client. We were in the $60-$75 per hour range and the phone rang. This is the conversation as I heard it... Okay, you'll be there from 4:00pm to 5:00 pm..mmm...good. Don't forget to wear that big nose and those

Re: [U2] [UV] making 00001 our of 1

2005-03-02 Thread Mark Johnson
Despite the replies for the various forms of R%5, there may be some more yet offered. This reminds me of the Y2K reviews I had to apply in 1998-1999 before the sky fell. I wrote a program who's concept may help in this pursuit. From the Y2K era, there were certain date oriented things to look for

Re: [U2] Test

2005-02-22 Thread Mark Johnson
Enlighten me on this 'programming competition'. Can't wait to see it. Thanks. - Original Message - From: Kevin King [EMAIL PROTECTED] To: u2-users@listserver.u2ug.org Sent: Monday, February 21, 2005 11:15 PM Subject: RE: [U2] Test Everyone's en route to Spectrum, me thinks.

Re: [U2] HTML printing

2005-02-14 Thread Mark Johnson
- From: Mark Johnson Now we're talkin'. Thanks. - Original Message - From: Stuart.Boydell As you're on *nix you may be able to pipe the HTML output through an HTML renderer (like java jRex or Calpane. Other alternatives might be using Perl or the HTML text renderer Lynx

Re: [U2] HTML printing

2005-02-14 Thread Mark Johnson
component. Does that help? Colin Alfke -Original Message- on Behalf Of Mark Johnson This looks like it will work. I'm begining to dance with VBScript (VBA) and would like to learn where you identify the methods and properties for each MS app that you wish to utilize

[U2] Null Question

2005-02-13 Thread Mark Johnson
snip Get your terminology right guys! Null will not pass the test as null is CHAR(128) and means the value is unknown. /snip In my RESULTS client's applications, where they have a SCREEN file that holds *source* and $object$ screen records, I see the following (example)

Re: [U2] HTML printing

2005-02-12 Thread Mark Johnson
something to do the HTML conversion? In my way of thinking what you've asked for is a way to run a program without having to go through a compiler first. Bob W -Original Message- From: [EMAIL PROTECTED] [mailto:owner-u2- [EMAIL PROTECTED] On Behalf Of Mark Johnson Sent: Friday

Re: [U2] HTML printing

2005-02-12 Thread Mark Johnson
- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mark Johnson Sent: 11 February 2005 22:40 To: u2-users@listserver.u2ug.org Subject: [U2] HTML printing To All: I would like to generate HTML code and have it go directly to a printer as formatted output. Normally, a user

Re: [U2] HTML printing

2005-02-12 Thread Mark Johnson
. Other alternatives might be using Perl or the HTML text renderer Lynx) then to your printer. A quick google search shows there are several commercial products for this type of application. S -Original Message- From: Mark Johnson Subject: [U2] HTML printing I would

[U2] HTML printing

2005-02-11 Thread Mark Johnson
and I have another client on D3-W2K that this may apply to as well. I'm aware that there maybe a unix and/or a PC version for this solution. Thanks in advance. Mark Johnson --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe please visit http://listserver.u2ug.org/

Re: [U2] [AD] UniBasic Program with arguments

2005-02-05 Thread Mark Johnson
Obviously my PRINT process will have its limitations. The major success is not cluttering the BP's with so many stupid 1 or 2 line test programs. As I acquire new clients with their prior programmers programs, I see way too many of these. Virtually all can be replaced with my PRINT process. As

Re: [U2] [AD] UniBasic Program with arguments

2005-02-02 Thread Mark Johnson
Here it is, pretty quickly. Create a Databasic Program, I call mine PRINT (losing regard for PRINT being there). That is a simple program that takes the @COMMAND or PROCREAD or TCLREAD line you just typed as the first line in a Basic program, throw an END at the end, compile and run itself.

Re: [U2] [UV] RAID debugger

2005-02-02 Thread Mark Johnson
Microdata dropped the ball on the INCLUDE 20 years ago which offers this solution that I use for all of my MCD clients today. Here's the source snippet *** * PROGRAM NAME * MARK JOHNSON 020205 *** GOSUB GET.INCLUDES OPEN CUSTOMER ETC snip everything else GET.INCLUDES:* INCLUDE THING1

Re: [U2] [AD] UniBasic Program with arguments

2005-02-02 Thread Mark Johnson
Trevor: You gave up too easily. See my posts on PRINT that I've been using for over 20 years. My 1 cent - Original Message - From: Trevor Ockenden [EMAIL PROTECTED] To: u2-users@listserver.u2ug.org Sent: Wednesday, February 02, 2005 10:51 PM Subject: RE: [U2] [AD] UniBasic Program with

Re: [U2] BREAK-ON help

2005-01-31 Thread Mark Johnson
The GRAND.TOTAL 'P' modifier is great when you are breaking on Salesman and you don't want the last guy to have the totals for the entire company. My 1 cent. - Original Message - From: Peter Gonzalez [EMAIL PROTECTED] To: u2-users@listserver.u2ug.org; u2-users@listserver.u2ug.org Sent:

Re: [U2] [AD] Programmer needed in New Jersey

2005-01-27 Thread Mark Johnson
I'm 47.5 with 26.1 years in mv. more than 50% of my life. Got in sorta early and loved it ever since. Mark Johnson - Original Message - From: Phil Gurnee [EMAIL PROTECTED] To: u2-users@listserver.u2ug.org Sent: Thursday, January 27, 2005 2:44 AM Subject: Re: [U2] [AD] Programmer needed

Re: [U2] ThoroughBred to U2 file conversion

2005-01-26 Thread Mark Johnson
If you have the time and or inclination you could look up the DICE company in the burgular-alarm security monitoring business. It's written in Thoroughbred and they spend a lot of time converting from a big seller in that industry called ABM which is written in Pick to DICE. Backwards yes, but at

Re: [U2] [AD] Programmer needed in New Jersey

2005-01-26 Thread Mark Johnson
Wow. Never saw a limit on experience before. I guess I'm out. - Original Message - From: Barry Rogen [EMAIL PROTECTED] To: u2-users@listserver.u2ug.org Sent: Wednesday, January 26, 2005 10:03 AM Subject: [U2] [AD] Programmer needed in New Jersey Pick programmer needed in New

Re: [U2] Wintegrate ML-SEND

2005-01-20 Thread Mark Johnson
I drove off that bridge late last year. Wintegrate doesn't seem to have a HTML toggle. One client that needs it ended up using BLAT. A little clunky but it handles the formatted output that I needed HTML for. I don't know if Accuterm handles HTML but I know that it's more sophisticated than

Re: [U2] Universe account Name/ID

2005-01-20 Thread Mark Johnson
Try taking a legacy native AP system with no user identification (same logon) and home-grown user stuff and migrating it to D3. I'm 3 for 3 on letting them keep their application-level user-ids as opposed to the system-level. One client is coming around but it's still teaching an old dog new

[U2] Customer Name Lookup

2005-01-19 Thread Mark Johnson
on Clothing yields different Soundex values. So my question is if anyone has any insight on where to learn more about solving this problem of such variable words. I'm open to any ideas. Thanks in advance Mark Johnson --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe please

Re: [U2] Customer Name Lookup

2005-01-19 Thread Mark Johnson
Mark Johnson --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe please visit http://listserver.u2ug.org/ -- No virus found in this incoming message. Checked by AVG Anti-Virus. Version: 7.0.300 / Virus Database: 265.7.0 - Release Date: 1/17/2005 -- No virus

[U2] Person Locator

2005-01-14 Thread Mark Johnson
be appreciated. You could forward my email to them if you feel confidentiality is an issue. They were a pick-programming husband/wife team. You don't see that too often. Thanks in advance. Mark Johnson --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe please visit http

Re: [U2] Re: FIBR

2005-01-13 Thread Mark Johnson
like a struggle. Perhaps I need to merge stuff more often than most. I like the programability of the MV editor with an active list. Again, that's just my opinion. Mark Johnson. - Original Message - From: Brutzman, Bill [EMAIL PROTECTED] To: u2-users@listserver.u2ug.org Sent: Thursday

Re: [U2] Re: WinteGrate

2005-01-12 Thread Mark Johnson
FIBR is huge and I wish it were everywhere. It's Unidata's way of FILING, BASICing and RUNning a program from within the editor. Saves the writing of pesky utilities and/or typing everything by hand. Of course you could have a cycle of dotX3, dotX3 and dotX3 should your last 3 TCL commands be

Re: [U2] Re: WinteGrate

2005-01-12 Thread Mark Johnson
I've installed the same exact UPS connection with WIN.PCRUN without a problem. The only potential problem that I came into was each particular user may have IEXPLORE in a different folder and the PC side can't find it. I test WIN.PCRUN at TCL with the following statement: PRINT ; CALL

[U2] Blast From The Past

2005-01-06 Thread Mark Johnson
, release 2.3 Rev D. I know this is Jurrasic Pick but the client is happy with their system and I don't need any info about alternatives. Spare the bandwidth on the flames. Thanks in advance. Mark Johnson --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe please visit http

Re: [U2] UV Pre-printed forms

2005-01-05 Thread Mark Johnson
Thanks to all who replied to this topic. Mark Johnson - Original Message - From: Buss, Troy (Logitek Systems) [EMAIL PROTECTED] To: u2-users@listserver.u2ug.org Sent: Tuesday, January 04, 2005 6:37 PM Subject: RE: [U2] UV Pre-printed forms Mark, Lots of good answers. Here's mine

[U2] UV Pre-printed forms

2005-01-04 Thread Mark Johnson
. This will most likely be HP PCL per my insistence but there maybe some Canon network printers brought into the mix. UV AIX RS-6000. Thanks in advance Mark Johnson --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe please visit http://listserver.u2ug.org/

Re: [U2] The list format and usefulness

2004-12-21 Thread Mark Johnson
My own redundant contributions may represent a style that is prevelant and cleaning it up may reduce volume. If the first poster asks What's 2+2 and I may know the answer, I reply with '4'. There may be 15 replies from other members with similar answers. Perhaps one solution (and I should take my

Re: [U2] The list format and usefulness

2004-12-21 Thread Mark Johnson
I don't mind the volume of u2 email and I agree that bandwidth has nothing to do with anything. I don't read my email until way past 5pm so I tend to get a settled list. Right now it's 1:50 am as I'm returning from this weekly client. When I see the multiple RE:'s I look upstream to see the

Re: [U2] wIntegrate (on Universe) Question

2004-12-15 Thread Mark Johnson
If you've got Wintegrate already installed, then keep with wintegrate. It's pretty link-friendly. If you're evaluating before purchasing, keep in mind the high price (near $200US per license). I just went through this process having been a long time user of wintegrate but couldn't keep a straight

Re: [U2] wIntegrate (on Universe) Question

2004-12-15 Thread Mark Johnson
allows PgUp/PgDn using [Ctrl][Shift]+PageUp and [Ctrl][Shift]+PageDn. You can also scroll up and down a line at a time by using [Ctrl][Shift]+UpArrow, etc, etc, etc. Bill -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Mark Johnson Sent: Wednesday

Re: [U2] LOOP or GOTO on READNEXT

2004-12-13 Thread Mark Johnson
To further increase your speed with the file copy method use the Overwrite option (O when writing the data back to the cleared desired file from the temp file. This prevents the COPY command from seeing if the record exists and offering up the message. Technically if any target file is cleared,

Re: [U2] LOOP or GOTO on READNEXT

2004-12-13 Thread Mark Johnson
I agree. Be careful to not trip over a record written in later frames. Although WRITE after DELETE prevents the problem. I have an observed question. Is there any MV flavor that requires the null expression for DICT with opening the DATA level of a file. I stopped using that unnecessary code over

Re: [U2] LOOP or GOTO on READNEXT

2004-12-13 Thread Mark Johnson
Sort of like deleting MV's backwards in an attribute to not miss any. Been there as well. - Original Message - From: Dean Fox [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, December 13, 2004 2:04 PM Subject: RE: [U2] LOOP or GOTO on READNEXT Your understanding of the BASIC

Re: [U2] LOOP or GOTO on READNEXT

2004-12-13 Thread Mark Johnson
UD supports LOOP WHILE READNEXT ID DO D3 Supports LOOP READNEXT ID ELSE EXIT UNTIL 0 DO I don't recall what UV supports but it does have a streamlined version without needing the tired EOF=0 or DONE=0 scenarios. My 1 cent. - Original Message - From: Dave Schexnayder [EMAIL PROTECTED]

Re: [U2] LOOP or GOTO on READNEXT

2004-12-13 Thread Mark Johnson
Be careful of consecutive speed tests. With memory caching and virtual memory, the second process benefits from the first process loading and/or leaving data in memory. That may invalidate your victory if the second test won. My 1 cent. P.S. The GOTO Holy war will never end until it's removed

Re: [U2] LOOP or GOTO on READNEXT

2004-12-13 Thread Mark Johnson
decrease as I have a lot more windows open now. Allen -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Mark Johnson Sent: Monday, December 13, 2004 10:35 To: [EMAIL PROTECTED] Subject: Re: [U2] LOOP or GOTO on READNEXT Be careful of consecutive speed

[U2] Scanner Connection

2004-12-01 Thread Mark Johnson
to a temp folder, I would use Accuterm to load in those filenames and offer them to the user for proper pc-filenaming to attach to the application. I would appreciate any insight on this. Thanks in advance. Mark Johnson --- u2-users mailing list [EMAIL PROTECTED] To unsubscribe please visit http

Re: [U2] Greetings

2004-11-23 Thread Mark Johnson
could be found. Thanks in advance. Mark Johnson. - Original Message - From: Alfke, Colin [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, November 23, 2004 11:24 AM Subject: RE: [U2] Greetings much snippage -Original Message- From: Norman Morgan [mailto:[EMAIL PROTECTED

Re: [U2] OT MV-Base

2004-11-21 Thread Mark Johnson
UOPEN to re-open the same filevariable but to a different file, which should force a close of the old file? -Original Message- From: Mark Johnson [...] MVbase running on W2k. UOPEN, UCREATE, UREAD, UWRITE etc. [...] process is complete and file should be available, you

[U2] OT MV-Base

2004-11-19 Thread Mark Johnson
that MVterm still 'owns' the PC file. Only by logging off and closing MVterm does the PC file become available. I RTFM and there is a ULOCK but it's unrelated. Any suggestions. Thanks in advance. Mark Johnson --- u2-users mailing list [EMAIL PROTECTED] To unsubscribe please visit http

Re: [U2] OT MV-Base

2004-11-19 Thread Mark Johnson
. Only by logging off and closing MVterm does the PC file become available. I RTFM and there is a ULOCK but it's unrelated. Any suggestions. Thanks in advance. Mark Johnson --- u2-users mailing list [EMAIL PROTECTED] To unsubscribe please visit http://listserver.u2ug.org

<    1   2   3   4   >