Re: [U2] Re: Logging to Universe NT

2004-07-28 Thread Steve Mayo
You might want to check the group/local security policies for that machine. Compare the differences between Administrator and webuser. HTH, Steve In order for to login into Universe you must be an Admin user. - Original Message - From: Kevin Vezertzis [EMAIL PROTECTED] To: [EMAIL

RE: [U2] RE: [UV] 10.0.19 - Bug with FMT? Unclassified

2004-06-01 Thread Stevenson, Charles
This one interests me, since we also had trouble with FMT at 10.0.12 .16 We are running 10.0.16 and the L10 v. 10#L problem shows up there exactly as you report it, in both PICK IDEAL flavors. Chuck Stevenson -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On

RE: [U2] RE: [UV] 10.0.19 - Bug with FMT?

2004-05-31 Thread djordan
Are you running in PICK flavour or Information Flavour or Ideal David Jordan -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Monday, 31 May 2004 6:02 PM To: [EMAIL PROTECTED] Subject: [U2] RE: [UV] 10.0.19 - Bug with FMT? The

Re: [U2] RE: [UV] 10.0.19 - Bug with FMT? Unclassified

2004-05-31 Thread Bruce Nichol
Goo'day, As recently as last Thursday, I was informed of a bug with FMT in UV10.0.something. I understand it's fixed with UV10.1 . At 06:12 01/06/04, you wrote: Adrian To get the text marks, you'd want to code A = FMT(ABCDEFGHIJKLMNOPQRSTUVWXYZ,10T) Note formatting 10T, not 10L It

RE: [U2] Re: Once again and updated. Cheapest way to have Pick talk to Web ?

2004-05-24 Thread Bill H.
Will: Try the following: http://www.vex.net/~ross/uv/ Hope this helps. Bill -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of [EMAIL PROTECTED] Sent: Sunday, May 23, 2004 6:30 PM To: [EMAIL PROTECTED] Subject: Re: [U2] Re: Once again and updated

Re: [U2] Re: Once again and updated. Cheapest way to have Pick talk to Web ?

2004-05-24 Thread FFT2001
In a message dated 5/23/2004 10:00:46 PM Eastern Daylight Time, [EMAIL PROTECTED] writes: #!/bin/sh /usr/ibm/uv/bin/uv MYCGIPROGRAM or even #!/usr/ibm/uv/bin/uv MYCGIPROGRAM I think you're talking Unix, I need Windows :) Will --- u2-users mailing list [EMAIL PROTECTED]

RE: [U2] Re: Once again and updated. Cheapest way to have Pick t alk to Web ?

2004-05-24 Thread Jeff Schasny
PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Monday, May 24, 2004 12:48 PM To: [EMAIL PROTECTED] Subject: Re: [U2] Re: Once again and updated. Cheapest way to have Pick talk to Web ? In a message dated 5/23/2004 10:00:46 PM Eastern Daylight Time, [EMAIL PROTECTED] writes: #!/bin/sh /usr/ibm/uv/bin/uv

RE: [U2] Re: Once again and updated. Cheapest way to have Pick talk to Web ?

2004-05-24 Thread Logan, David (SST - Adelaide)
, Adelaide 5000 Australia +61 8 8408 4273 - Work +61 417 268 665 - Mobile +61 8 8408 4259 - Fax -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Craig Bennett Sent: Tuesday, 25 May 2004 9:31 AM To: [EMAIL PROTECTED] Subject: Re: [U2] Re: Once again

Re: [U2] Re: Once again and updated. Cheapest way to have Pick talk to Web ?

2004-05-24 Thread Craig Bennett
Whoops, now there was a confused paragraph! You could try: #!C:\windows\system32\cmd.exe cd C:\MYACCOUNT C:\IBM\UB\BIN\UV MYCGIPROGRAM or if you install perl something like this might work: #!C:\pathtoperl\perl -w my @output = `C:\IBM\UB\BIN\UV MYCGIPROGRAM`; my $printline; while ($printline

Re: [U2] Re: Once again and updated. Cheapest way to have Pick talk to Web ?

2004-05-23 Thread Craig Bennett
Will, Can a Pick database (on Windows) talk to the Web for say... under 5 grand? Option 1: Install Apache, run UV from CGI-BIN scripts. Option 2: Run UV from /etc/inetd.conf and write your own HTTP server. regards, Craig --- u2-users mailing list [EMAIL PROTECTED]

Re: [U2] Re: Once again and updated. Cheapest way to have Pick talk to Web ?

2004-05-23 Thread Craig Bennett
Will, Dmn, I was hoping you wouldn't ask -- actually we always run UV from inetd.conf -- but I see no reason why you shouldn't be able to #!/bin/sh /usr/ibm/uv/bin/uv MYCGIPROGRAM or even #!/usr/ibm/uv/bin/uv MYCGIPROGRAM Stdin/Stdout should get connected to the uv executables input and

RE: [U2] Re: Once again and updated. Cheapest way to have Pick talk to Web ?

2004-05-22 Thread Tony Gravagno
Will Johnson wrote: Ok let's hear some real numbers. Can a Pick database (on Windows) talk to the Web for say... under 5 grand? Yes If so How ? Write your own interface on time that has not been allocated to paying customers. Seriously, I have written many such interfaces using

Re: [U2] Re: SALES Once again and updated. Cheapest way to have Pick talk to Web ?

2004-05-22 Thread Dave Taylor
SALES Will, Yes, a Pick database can talk with a browser for under $5,000, using PixieWeb ($1,995 US). But, you also need a web server (eg. IIS, with W2000Pro, under $300) and some programming in Pick Basic to produce the HTML code read by the browser, and to process the HTML code returned by

RE: [U2] RE: U2] Error 30107 when calling Subroutines from UniObj ects

2004-05-20 Thread alfkec
Like Jim said. It's likely opening files into named/common. It may also be setting up some type of system variables into common as well. You will likely need your app vendor to let you know what needs to be added. You would then have to call a subroutine of your making to call the setup the

Re: [U2] RE: U2] Error 30107 when calling Subroutines from UniObjects

2004-05-20 Thread John Kent
Peter, if you can get their uniobjects menu driver to initialise a common then all you need do is INCLUDE it in the subroutines called. If there are files you dont want to open globally to all applications you can set up a common just for a particular application. If you want some code

Re: [U2] RE: U2] Error 30107 when calling Subroutines from UniObjects

2004-05-20 Thread Will
Patrick Will Williams, President American Computer Technics, Inc. 919-567-0042 Raleigh, NC - Original Message - From: John Kent To: [EMAIL PROTECTED] Sent: Thursday, May 20, 2004 3:18 PM Subject: Re: [U2] RE: U2] Error 30107 when calling Subroutines from UniObjects Peter

RE: [U2] Re: [OT] unsubscribe

2004-05-11 Thread Karl L Pearson
I've used Majordomo for years and have already written unsubscribe forms for html. If you are interested, I could lend a hand. I've also written other utilities... You might just consider looking at MajorCool, if you are using Majordomo 1.94.5, which it appears you are. Karl On Tue, 2004-05-11

RE: [U2] Re: {Virus?} Duplicate posts, attachments

2004-05-05 Thread Anthony Dzikiewicz
I received this about 20 times (at least) myself. Anthony -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Doug Miller Sent: Wednesday, May 05, 2004 12:21 PM To: [EMAIL PROTECTED] Subject:[U2] Re: {Virus?} Duplicate posts, attachments At

RE: [U2] RE: Memo: RE: [UD] Union Query

2004-05-03 Thread Stevenson, Charles
Title: Message Yes it does, albeit syntax is different. 2 ways: LIST.UNION combines savedlists GET.LIST LIST-A TO 1 10 record(s) selected to SELECT list #1. GET.LIST LIST-B TO 2 10 record(s) selected to SELECT list #2. MERGE.LIST 1 UNION 2 19 record(s) selected to SELECT list

{Virus?} Re: [U2] RE: Memo: RE: [UD] Union Query

2004-05-03 Thread Wally Terhune
Warning: This message has had one or more attachments removed (graycol.gif, ecblank.gif, pic00981.gif). Please read the "VirusWarning.txt" attachment(s) for more information. I didn't follow this email thread, but (if it applies) wanted to point out that UniData does have a MERGE.LIST command

Re: [U2] RE: UNIX tune for UV 300 users

2004-05-03 Thread Ilya Shabaev
Thank you, David, It is usefull link for tuning Reliant Unix. I will try to check performance with described tools. I use UV 9.5.12 under Reliant Unix 5.45 IBM informed me that SHMMNI must be more that number of uv users. I checked process memory ussage with ps -el command and found that every

RE: [U2] RE: Memo: RE: [UD] Union Query

2004-05-03 Thread alfkec
lto:[EMAIL PROTECTED]Sent: Monday, May 03, 2004 7:37 AMTo: [EMAIL PROTECTED]Subject: RE: [U2] RE: Memo: RE: [UD] Union Query Yes it does, albeit syntax is different. 2 ways: LIST.UNION combines savedlists GET.LIST LIST-A TO 1 10 record(s) selected to SELECT lis

<    1   2   3   4   5   6