Re: [U2] ED: The very finest of 1970s technology! was: UniVerse Dictionary question

2014-02-06 Thread mhilbert
I believe it was just an X on Reality. And the prestore commands under Pick were lots of fun you could do complex multirecord changes or major damage On Thu, 6 Feb 2014 10:36:12 -0600, George Gallen wrote: I don't remember if that was on the Editor in Reality, or if it came along with

Re: [U2] Working with accented characters

2013-11-26 Thread mhilbert
If it's for internal use, I'd set up my own function (or subroutine) with the one - to - one relationships between each lower case accented letter and it's upper case equivalent. If the idea is to send info to a third party, or to use in a different database within you company, be careful

[U2] UniAdmin - Where is Any Account directive written to

2013-11-19 Thread mhilbert
Good afternoon, I'm installing a UV windows 11.1 and am trying to change the login policy to Any Account, but when I press the Save button, I get a message saying that UniAdmin is unable to save the info. I'm supposing it might be a permissions problem, even though I'm accessing with

Re: [U2] More than one way to list the Number of licensed users ?

2013-09-09 Thread mhilbert
SYSTEM(36) in Basic CONFIG from TCL On Mon, 9 Sep 2013 16:14:41 -0400 (EDT), Wjhonson wrote: STATUS NETWORK on Universe, will list Number of licensed uniVerse users: 110 Are there other ways to get this number? ___ U2-Users mailing list

Re: [U2] [UV] ED PERMISSIONS subroutine

2013-08-15 Thread mhilbert
Dianne, Does your login to telnet sessions also have this same delay? We experienced this problem (with ED and with Login); never fixed it. The company was a multinational that managed user priveleges at an international corporate level, so even though we are in Argentina, supoosedly there

Re: [U2] LIST reports and Fields that Do reads

2013-07-23 Thread mhilbert
The READ is executed each time, but if the record being read is in virtual memory, this second read doesn't occur at the disk level. If the file being read is relatively small (ex.: descriptions) it will probably end up in memory quick enough and not provoke performance issues. On Fri, 19

Re: [U2] uniobjects.net

2012-12-03 Thread mhilbert
For me the key is in how many is a number of records? On Mon, 3 Dec 2012 14:48:45 -, Symeon Breen wrote: Hi - I have been using uniobjects.net for many years now, however I usually use it to call a basic subroutine on the u2 server. I now have a little project where I need to get a

Re: [U2] uniobjects.net

2012-12-03 Thread mhilbert
If the supposed access time for these records is rather quick, 200 records is a relatively small record set. Although there are technically more elegant ways of doing this, why cant you just stick with your proven basic subroutine call? On Mon, 3 Dec 2012 14:59:43 -, Symeon Breen wrote:

Re: [U2] trimming a list (a test of your ability)

2012-07-12 Thread mhilbert
To continue along these lines, and if you want your code to be compact, if KEY.LIST were equal to RAISE(KEY.LIST) you could do this: NEW.LIST = SELECT KEY.LIST LOOP WHILE READNEXT UTILITY.ID DO GOSUB GET.UTILITY.RECORD IF INDEX(UTILITY.NAME,LAST.NAME,1) THEN NEW.LIST-1 = UTILITY.ID REPEAT

Re: [U2] T30File parameter in Universe 10.3.7

2012-07-06 Thread mhilbert
Yes, we ran into this limit some time ago at a client site, we set it to 1200. No problems. On Fri, 06 Jul 2012 14:15:00 -0400, Allen Egerton wrote: The default value for T30Files is 200, and it's described as controlling the number of dynamic files that can be open on a system at any point

Re: [U2] File error

2012-07-02 Thread mhilbert
If this were a dynamic file, you would have to create a new file adding the phrase 64BIT. I don't know if the phrase is valid for non-dynamic files. On Mon, 2 Jul 2012 10:20:13 -0500, Holt, Jake wrote: We are getting the message: Warning: Attempt to extend file GJ/INV beyond the 2 gigabyte

Re: [U2] Detecting idle time in INPUT statement.

2012-03-27 Thread mhilbert
Check INPUTIF, this will return a value if the input buffer has something. If after 2 minutes of checking INPUTIF you have nothing it's because the user isn't active. If you do a LOOP with INPUTIF inside be careful to put an RQM or something similar in the loop. On Tue, 27 Mar 2012 06:26:38

Re: [U2] Video Quirk

2011-05-31 Thread mhilbert
John, The data you are managing probably has control character sequences. For display purposes, you should replace all characters below char(32) with .. For reseting the colors, try HELP BASIC @ Regards, Marc On Tue, 31 May 2011 11:18:25 -0400, Israel, John R. wrote: I have written a

Re: [U2] Special Character Handling

2011-01-12 Thread mhilbert
I know I'm not answering the original question Is there a tool , but if the validation is on-line, it would be best to manage a list of valid characters, rather than do converts of specific characters. Bearing in mind that users can copy-paste into your input field, or type Alt+nnn you can