Re: [U2] DEBUG mode on a UniObjects connections

2008-12-05 Thread Brian Leach
] To: u2-users@listserver.u2ug.org Sent: Friday, December 05, 2008 5:02 AM Subject: RE: [U2] DEBUG mode on a UniObjects connections Note that the SYSTEM(9001) function call returns the runtime stack. I use a generic logging subroutine that writes to a sequential file any information I want to log

RE: [U2] DEBUG mode on a UniObjects connections

2008-12-05 Thread Dave Reynolds
Of Tony G Sent: 05 December 2008 02:51 To: u2-users@listserver.u2ug.org Subject: RE: [U2] DEBUG mode on a UniObjects connections Dave, if you suspect a server-side routine might fall to debug then I'd recommend putting server access into a separate client-side thread. That doesn't stop the aborts

RE: [U2] DEBUG mode on a UniObjects connections

2008-12-05 Thread Dave Reynolds
] [mailto:[EMAIL PROTECTED] On Behalf Of Brian Leach Sent: 05 December 2008 08:55 To: u2-users@listserver.u2ug.org Subject: Re: [U2] DEBUG mode on a UniObjects connections These are all good approaches, but the difficulty is often in trying to collate the information on what is happening client side

RE: [U2] DEBUG mode on a UniObjects connections

2008-12-05 Thread Tony G
You guys are describing a new product I've been developing as time permits: removepleaseNebula-RnD.com/blog/tech/mv/2008/09/remotecontrol1.ht ml Tony Gravagno Nebula Research and Development TG@ remove.pleaseNebula-RnD.com From: Dave Reynolds Brian, This sounds like a good approach to me.

RE: [U2] DEBUG mode on a UniObjects connections

2008-12-05 Thread Dave Reynolds
Tony, Does it need testing for accessibility? Thanks, Dave -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Tony G Sent: 05 December 2008 12:16 To: u2-users@listserver.u2ug.org Subject: RE: [U2] DEBUG mode on a UniObjects connections You guys

Re: [U2] DEBUG mode on a UniObjects connections

2008-12-05 Thread Bill Haskett
, David S [EMAIL PROTECTED] To: u2-users@listserver.u2ug.org Sent: Friday, December 05, 2008 5:02 AM Subject: RE: [U2] DEBUG mode on a UniObjects connections Note that the SYSTEM(9001) function call returns the runtime stack. I use a generic logging subroutine that writes to a sequential file any

[U2] DEBUG mode on a UniObjects connections

2008-12-04 Thread Dave Reynolds
Hi all, I'm new to the list, and hope that someone may have the answer to a problem which is causing me a lot of headaches at the moment. I'm using VB6 and UniObjects to connect to a Universe Database. I call DataBasic routines from the VB6 client. All works fine, until there is a problem in

RE: [U2] DEBUG mode on a UniObjects connections

2008-12-04 Thread Brian Leach
Hi Dave A uniObjects subroutine call is a 'black box' RPC. It doesn't allow any kind of user interaction to interrupt the call. If you're going into debug, that will hang because it has nowhere from which to take input. Sorry, but that's how it is designed. Brian Hi all, I'm new to the

RE: [U2] DEBUG mode on a UniObjects connections

2008-12-04 Thread Symeon Breen
: [U2] DEBUG mode on a UniObjects connections Hi all, I'm new to the list, and hope that someone may have the answer to a problem which is causing me a lot of headaches at the moment. I'm using VB6 and UniObjects to connect to a Universe Database. I call DataBasic routines from the VB6 client. All

RE: [U2] DEBUG mode on a UniObjects connections

2008-12-04 Thread Dave Reynolds
help, Dave -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Brian Leach Sent: 04 December 2008 11:45 To: u2-users@listserver.u2ug.org Subject: RE: [U2] DEBUG mode on a UniObjects connections Hi Dave A uniObjects subroutine call is a 'black box' RPC

RE: [U2] DEBUG mode on a UniObjects connections

2008-12-04 Thread Dave Reynolds
Subject: RE: [U2] DEBUG mode on a UniObjects connections Databasic will only go into debug mode if you tell it to - this is done either at the command line or with a debug statement in the code. Since you are calling the sub from uniobjects it will not be a command line issue so i suspect you have

RE: [U2] DEBUG mode on a UniObjects connections

2008-12-04 Thread Dave Reynolds
uncertain whether we'll be buying MVDotNet. Best, Dave -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Brian Leach Sent: 04 December 2008 11:45 To: u2-users@listserver.u2ug.org Subject: RE: [U2] DEBUG mode on a UniObjects connections Hi Dave A uniObjects

Re: [U2] DEBUG mode on a UniObjects connections

2008-12-04 Thread Allen Bell
PROTECTED] On Behalf Of Dave Reynolds Sent: 04 December 2008 10:10 To: u2-users@listserver.u2ug.org Subject: [U2] DEBUG mode on a UniObjects connections Hi all, I'm new to the list, and hope that someone may have the answer to a problem which is causing me a lot of headaches at the moment. I'm using

Re: [U2] DEBUG mode on a UniObjects connections

2008-12-04 Thread Brett Callacher
Reynolds Sent: 04 December 2008 10:10 To: u2-users@listserver.u2ug.org Subject: [U2] DEBUG mode on a UniObjects connections Hi all, I'm new to the list, and hope that someone may have the answer to a problem which is causing me a lot of headaches at the moment. I'm using VB6

RE: [U2] DEBUG mode on a UniObjects connections

2008-12-04 Thread Israel, John R.
Just chiming in on the debugging in a web page which might also help here since you loose the ability to interact. I have written a universal E-mailing program that can be called from any UniData program. It will work with both simple text or HTML depending on how much effort the programmer

RE: [U2] DEBUG mode on a UniObjects connections

2008-12-04 Thread Kishor Parmar
is happening. Many thanks for your help, Dave -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Brian Leach Sent: 04 December 2008 11:45 To: u2-users@listserver.u2ug.org Subject: RE: [U2] DEBUG mode on a UniObjects connections Hi Dave A uniObjects

RE: [U2] DEBUG mode on a UniObjects connections

2008-12-04 Thread Dave Reynolds
it is... Thanks, Dave -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Brett Callacher Sent: 04 December 2008 13:22 To: 'u2-users@listserver.u2ug.org' Subject: Re: [U2] DEBUG mode on a UniObjects connections Agreed with COMO comment. Depending on your version

RE: [U2] DEBUG mode on a UniObjects connections

2008-12-04 Thread Dave Reynolds
for such a purpose, it was just never implemented. Dave -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Israel, John R. Sent: 04 December 2008 13:31 To: 'u2-users@listserver.u2ug.org' Subject: RE: [U2] DEBUG mode on a UniObjects connections Just chiming

RE: [U2] DEBUG mode on a UniObjects connections

2008-12-04 Thread Tony G
Dave, if you suspect a server-side routine might fall to debug then I'd recommend putting server access into a separate client-side thread. That doesn't stop the aborts, but it does prevent such things from affecting the end-user's session. Having a lot of experience with the visually-impaired

RE: [U2] DEBUG mode on a UniObjects connections

2008-12-04 Thread Hona, David S
] DEBUG mode on a UniObjects connections Interesting idea that. As standard, all subroutine calls in our software add to a Stack and their names are deleted from the stack when control is returned to the calling level. It doesn't solve the debug issue, but has given me an idea about tracing. I'm sure