[U2] Just testing

2010-05-10 Thread Brian Leach
It's very quiet.. Brian ___ U2-Users mailing list U2-Users@listserver.u2ug.org http://listserver.u2ug.org/mailman/listinfo/u2-users

Re: [U2] Just testing (O.T.)

2010-05-10 Thread John J. Wahl
And dark too, might we be eaten by a Grue? John J. Wahl Employee Owner Programmer / Analyst Tel:   (888) 465-6737 Ext. 120 Fax:   (330) 342-3896 Email: jw...@joseph.com Web:  http://www.Joseph.com/ -Original Message- From:

Re: [U2] Just testing (O.T.)

2010-05-10 Thread Robert Houben
'Twas brillig and the slythy tothes... -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of John J. Wahl Sent: Monday, May 10, 2010 9:04 AM To: U2 Users List Subject: Re: [U2] Just testing (O.T.) And dark too,

[U2] [ad] XLr8Editor Updates, still $49.00 [/ad]

2010-05-10 Thread Doug
Among other things, we have fixed the outline not refreshing. This allows you to see what labels and now variables are contained in the program. You can click on either the outline or the variable name to see where it occurs in your code. We could not stop there. We add more color definition.

Re: [U2] Soap error question

2010-05-10 Thread Lunt, Bruce
Sorry for the delay in my response, I was out of the office for the last week. It turns out that the problem was that I was calling a subroutine in my program and that doesn't work with soap. So, I included the subroutine's logic into the Basic program and it works now. Bruce -Original

[U2] Printing images

2010-05-10 Thread Oaks, Harold
All: In Universe I am able to use PCL commands to customize printing, fonts, spacing, orientation, etc. I'm sure many of you do this. For example by issuing CHAR(27):'(10U':CHAR(27):'(s1p09v0s6b16602T' in front of text the printing is Arial 9 bold. However, I have been unable to figure out

Re: [U2] Printing images

2010-05-10 Thread iggchamp
A long time ago, someone shared a way of doing this. Here is what I can recollect... * Create BitMap image * Place image On a document in desired position (ie msword) * Create a new print to File printer using HP PCL type driver * Print document * Using a hex editor, delete last x

Re: [U2] Printing images

2010-05-10 Thread Brian Leach
Harold Forgive me if I take this step by step. A JPEG is a compressed image format, one that is understood by Windows and some other platforms. But it's not understood directly by printers. You can convert it to a bitmap (in fact, Windows does this internally when it renders it) which represents

Re: [U2] Soap error question

2010-05-10 Thread Bill Haskett
What? You can't make a SOAP call to a U2 program if that program has a CALL in it? Bill Lunt, Bruce said the following on 5/10/2010 11:53 AM: Sorry for the delay in my response, I was out of the office for the last week. It turns out that the problem was that I was calling a subroutine in

Re: [U2] Soap error question

2010-05-10 Thread phil walker
I don't believe that is correct. -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users- boun...@listserver.u2ug.org] On Behalf Of Bill Haskett Sent: Tuesday, 11 May 2010 8:45 a.m. To: U2 Mail List Subject: Re: [U2] Soap error question What? You can't

Re: [U2] Soap error question

2010-05-10 Thread Lunt, Bruce
What I was doing was calling an SB+ process from within the program and that is what caused the non-action. Bruce -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Bill Haskett Sent: Monday, May 10, 2010 1:39 PM To:

[U2] Listing via the SQL Interface...

2010-05-10 Thread John J. Wahl
Greetings All, Platform: UniVerse Version: 10.2.x O.S.: Windows Server 2008 (x86) 32-bit I'm wondering if there a way to get a listing of READU locks (exactly like the Verb LIST.READU, but via an SQL interface? I was going through the documents and old forum posts, but I do not

Re: [U2] Listing via the SQL Interface...

2010-05-10 Thread Tony Gravagno
[ad] I'm not sure what SQL tools you're talking about but with mv.NET you can easily call BASIC subroutines from ADO.NET as though they were Stored Procedures. So wrap LIST.READU in a program, format the output the way you want and call it like a sproc. If you just want this data outside and

Re: [U2] Listing via the SQL Interface...

2010-05-10 Thread phil walker
Remember the LIST.READU INTERNAL format to get a dynamic array... unfortunately it is row based rather than column based otherwise you could have probably created a dictionary to decompose the data as sets of related multivalues ;-) -Original Message- From:

Re: [U2] Listing via the SQL Interface...

2010-05-10 Thread Hona, David
Any valid command can be executed as a stored procedure via SQLExecDirect (eg., CALL LIST.READU - you need the CALL to specify a store procedure call). Just don't call anything requiring terminal keyboard input.. including anything that pages the output (eg. 'press any key to continue') - other