Re: [U2] U2 .Net Information

2004-08-30 Thread u2ug
Is UO.NET included with the current version of uvpe that is available for download ? The online description doesn't mention it at all and the exact download version, as always, is not given other than that it is version 10. gerry --- u2-users mailing list [EMAIL PROTECTED] To unsubscribe

Re: [U2] Trigger problem!

2004-08-30 Thread Rich Sias
** Reply to message from Dennis Bartlett [EMAIL PROTECTED] on Thu, 26 Aug 2004 15:56:58 +0200 No one has mentioned that the trigger program probably is not findable in the other accounts that use the Q pointer. I see that KO.OP SYNC.TRIGGER is the program for your trigger. I would first try a Q

RE: [U2] Unclassified:[UV] How are the TCL dot commands impleme nted?

2004-08-30 Thread Ian McGowan
Seems like every pick programmer has written their own TCL replacement :-) Mine is at: http://www.pickwiki.com/cgi-bin/wiki.pl?TclStack Though it seems like a lot of trouble if the only problem is .S leaving null items in the VOC. Wouldn't a cron job, or something in the login script that

RE: [U2] U2 .Net Information

2004-08-30 Thread Stevenson, Charles
LeRoy, Are we going to be able to get it at the IBM DB2 Information Management Technical Conference? Karjala Isn't there a pre-conference seminar on the topic, too ? ? ? --- u2-users mailing list [EMAIL PROTECTED] To unsubscribe please visit http://listserver.u2ug.org/

RE: [U2] Trigger problem!

2004-08-30 Thread Adrian Matthews
That was the problem (as I suggested). You must have missed the post back from him. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Rich Sias Sent: 30 August 2004 20:29 To: [EMAIL PROTECTED] Subject: Re: [U2] Trigger problem! ** Reply to message from

RE: [U2] Unclassified:[UV] How are the TCL dot commands impleme nted?

2004-08-30 Thread Allen E. Elwood \(CA\)
Hi Ian, Yep, you know us 'creative types' :-D I also wrote a TCL.LIGHT a long time ago that was more similar to your program. It would allow people to only look at files they had access to via a 'allowed files' screen and disallowed all DELETE commands. These people had no access to the real

[U2][UD] - ODBC

2004-08-30 Thread Chauhan, Savita
Hi, How does ODBC (from MS Windows) actually connect to the UniData on Unix (AIX)? Is there any port listening to the ODBC requests from clients or is it something completely different? I want to know the Unix side of it. What changes are made to what files to be able to access UniData from

[U2] UniObjects.Net

2004-08-30 Thread David Cason
I'm not gettin it. I've downloaded the PDF doc for UniObjects.Net. I don't see any real advantages over UniObjects for Java converted to J#. I was hoping to see some kind of adapter that would allow us to work seamlessly with ADO.NET (ie. filling a .Net Dataset). This would really help increase

RE: [U2] How import data from UniVerse into MS Access?

2004-08-30 Thread LeRoi Keiller
Wow, you're good. I did a CNAME to change the file name to HS_FILE_ACCESS.OLD and then ran option 3 from the HS.ADMIN menu - this time it created the file and added the new entry, without issue. So thanks. :o) -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf

Re: [U2] U2 .Net Information

2004-08-30 Thread Leroy Dreyfuss
Are we going to be able to get it at the IBM DB2 Information Management Technical Conference? At our conference, you will receive plenty of information on the subject. You will get plenty of information, but you must order new copies of UniData 6.1 or Universe 10.1 to receive it. It is not a

RE: [U2] [Unix] creation date/time

2004-08-30 Thread Ian McGowan
If your system doesn't have the stat or fstat command, this small program may do: #include sys/stat.h main(int argc,char**argv) { struct stat buf; char d[256]; stat(argv[1],buf); strftime(d, sizeof(d), %D, localtime(buf.st_ctime)); printf(%s\n, d); } (error checking removed)

RE: [U2] [Unix] creation date/time

2004-08-30 Thread [EMAIL PROTECTED]
Ian McGowan wrote: If your system doesn't have the stat or fstat command, this small program may do: #include sys/stat.h main(int argc,char**argv) { struct stat buf; char d[256]; stat(argv[1],buf); strftime(d, sizeof(d), %D, localtime(buf.st_ctime)); printf(%s\n,

[U2] Dot Commands

2004-08-30 Thread Michael J Burbo
Mike, Another way to correct the or NULL saved item is to setup a Write Trigger and if the ID is NULL no write or replace with the person's logon and date/time this will also help you find who is causing your NULL items. A Trigger program can be set up an most any file and very good this