Re: [U2] Opening UniBasic Source Code - Tab Key

2009-05-21 Thread Anthony W. Youngman
In message 
ae8acc132c0f1c4de288c5fa7b72a53e.squir...@webmail.ourldsfamily.com, 
Karl Pearson ka...@ourldsfamily.com writes

CHAR(8) is a tab, IIRC.


That's a backspace, actually.

Tab is char(9)


Karl


Cheers,
Wol
--
Anthony W. Youngman pi...@thewolery.demon.co.uk
'Yings, yow graley yin! Suz ae rikt dheu,' said the blue man, taking the
thimble. 'What *is* he?' said Magrat. 'They're gnomes,' said Nanny. The man
lowered the thimble. 'Pictsies!' Carpe Jugulum, Terry Pratchett 1998
Visit the MaVerick web-site - http://www.maverick-dbms.org Open Source Pick
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Opening UniBasic Source Code

2009-05-21 Thread Brutzman, Bill
I am looking to inspect the unix file for read, write, and delete
commands.

The openpath command works well.

--Bill

-Original Message-
From: owner-u2-us...@listserver.u2ug.org
[mailto:owner-u2-us...@listserver.u2ug.org] On Behalf Of Gregor Scott
Sent: Wednesday, May 20, 2009 9:36 PM
To: u2-users@listserver.u2ug.org
Subject: RE: [U2] Opening UniBasic Source Code - Tab Key

Bill,

What exactly are you trying to achieve with the unix file?

On UniVerse the openpath command will open a unix path as a database
file, from which you then read items as normal.
You either need to change to use the openseq command so you can
sequentially read the contents of the unix item, or openpath
'/u2/SOFTWARE/BP' to open the unix path as a file and then read the
BASELINE.R0 item.


Gregor
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Opening UniBasic Source Code

2009-05-21 Thread Dave Laansma
FYI, Unix scripts are really handy for making 'mass' changes.

David Laansma
IT Manager
Hubbard Supply Co. 
Direct: 810-342-7143
Office:810-234-8681
Fax: 810-234-6142
www.hubbardsupply.com
Delivering Products, Services, and Innovative Solutions

-Original Message-
From: owner-u2-us...@listserver.u2ug.org
[mailto:owner-u2-us...@listserver.u2ug.org] On Behalf Of Brutzman, Bill
Sent: Thursday, May 21, 2009 10:24 AM
To: u2-users@listserver.u2ug.org
Subject: RE: [U2] Opening UniBasic Source Code

I am looking to inspect the unix file for read, write, and delete
commands.

The openpath command works well.

--Bill

-Original Message-
From: owner-u2-us...@listserver.u2ug.org
[mailto:owner-u2-us...@listserver.u2ug.org] On Behalf Of Gregor Scott
Sent: Wednesday, May 20, 2009 9:36 PM
To: u2-users@listserver.u2ug.org
Subject: RE: [U2] Opening UniBasic Source Code - Tab Key

Bill,

What exactly are you trying to achieve with the unix file?

On UniVerse the openpath command will open a unix path as a database
file, from which you then read items as normal.
You either need to change to use the openseq command so you can
sequentially read the contents of the unix item, or openpath
'/u2/SOFTWARE/BP' to open the unix path as a file and then read the
BASELINE.R0 item.


Gregor
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


Re: [U2] Opening UniBasic Source Code

2009-05-21 Thread Steve Romanow

Brutzman, Bill wrote:

I am looking to inspect the unix file for read, write, and delete
commands.

The openpath command works well.

  
While you are looking for those, finding DEBUG statements left in is 
handy too.

---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Opening UniBasic Source Code - Tab Key

2009-05-21 Thread Jo Lester
BS!



CHAR(9) is a tab  ( Char (8) is a back space.) We're talking ascii, right?

 Date: Wed, 20 May 2009 19:02:32 -0600
 Subject: RE: [U2] Opening UniBasic Source Code - Tab Key
 From: ka...@ourldsfamily.com
 To: u2-users@listserver.u2ug.org

 CHAR(8) is a tab, IIRC.

 Karl

 On Wed, May 20, 2009 5:20 pm, Brutzman, Bill wrote:
  1. Nope... I did not copy them; I would rather not have to copy them.
 
  2. So far I have not have to do a fnuxi.
 
  3. What does a Tab key come over as? I have a little method to buzz out
  the blank spaces. I would like to use this
  method on the pesky Tabs.
 
  --Bill
 
 
 
  -Original Message-
  From: owner-u2-us...@listserver.u2ug.org
  [mailto:owner-u2-us...@listserver.u2ug.org] On Behalf Of Symeon Breen
  Sent: Wednesday, May 20, 2009 5:34 PM
  To: u2-users@listserver.u2ug.org
  Subject: RE: [U2] Opening UniBasic Source Code Into A UniBasic
 
  Have you copied these programs over from another host - esp another host
  with a different endian processor ? you may need to do a fnuxi or such
  thing on the code.
 
  -Original Message-
  From: owner-u2-us...@listserver.u2ug.org
  [mailto:owner-u2-us...@listserver.u2ug.org] On Behalf Of Brutzman, Bill
  Sent: 20 May 2009 21:35
  To: u2-users@listserver.u2ug.org
  Subject: [U2] Opening UniBasic Source Code Into A UniBasic
 
  I am writing on how to open a Unix file of UniBasic source code.
 
  When I try a
 
 
  openpath '/u2/SOFTWARE/BP/BASELINE.R0' to F.This then
  crt 'OK'
  end else
 
  crt 'Error'
  end
 
  *---
  ---
  The.End:
 
  crt status()
  crt
  crt ' [] ' :
 
  input Ans
 
  crt @(-1)
 
  END
 
  *---
  -
 
  02 RUN BP FILESCAN.R0
  Error
  -7
 
  []
 
  Where -7 is InValid file revision or wrong byte-ordering for the
  platform.
 
  The platform is UniVerse v10.1 on HP-Ux 11i v2.
 
  Suggestions would be appreciated.
 
  --Bill
  ---
  u2-users mailing list
  u2-users@listserver.u2ug.org
  To unsubscribe please visit http://listserver.u2ug.org/
  ---
  u2-users mailing list
  u2-users@listserver.u2ug.org
  To unsubscribe please visit http://listserver.u2ug.org/
  ---
  u2-users mailing list
  u2-users@listserver.u2ug.org
  To unsubscribe please visit http://listserver.u2ug.org/
 


 ---
 Karl Pearson
 ka...@ourldsfamily.com
 Owner/Administrator of the sites at
 http://ourldsfamily.com
 ---
 To mess up your Linux PC, you have to really work at it;
 to mess up a microsoft PC you just have to work on it.
 ---
 Democracy is two wolves and a lamb voting on what to have
 for lunch. Liberty is a well-armed lamb contesting the vote.
 --Benjamin Franklin
 ---
 ---
 u2-users mailing list
 u2-users@listserver.u2ug.org
 To unsubscribe please visit http://listserver.u2ug.org/

_
Hotmail. has ever-growing storage! Dont worry about storage limits.
http://windowslive.com/Tutorial/Hotmail/Storage?ocid=TXT_TAGLM_WL_HM_Tutorial
_Storage1_052009
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


Re: [U2] Opening UniBasic Source Code - Tab Key

2009-05-21 Thread Karl Pearson
Senility is so productive :-( And I was thinking, just as I hit the
'send' button, that I had sent a BEL . . .

Karl

On Thu, May 21, 2009 6:20 am, Anthony W. Youngman wrote:
 In message
 ae8acc132c0f1c4de288c5fa7b72a53e.squir...@webmail.ourldsfamily.com,
 Karl Pearson ka...@ourldsfamily.com writes
CHAR(8) is a tab, IIRC.

 That's a backspace, actually.

 Tab is char(9)

Karl

 Cheers,
 Wol
 --
 Anthony W. Youngman pi...@thewolery.demon.co.uk
 'Yings, yow graley yin! Suz ae rikt dheu,' said the blue man, taking the
 thimble. 'What *is* he?' said Magrat. 'They're gnomes,' said Nanny. The
 man
 lowered the thimble. 'Pictsies!' Carpe Jugulum, Terry Pratchett 1998
 Visit the MaVerick web-site - http://www.maverick-dbms.org Open Source
 Pick
 ---
 u2-users mailing list
 u2-users@listserver.u2ug.org
 To unsubscribe please visit http://listserver.u2ug.org/



---
Karl Pearson
ka...@ourldsfamily.com
Owner/Administrator of the sites at
http://ourldsfamily.com
---
To mess up your Linux PC, you have to really work at it;
 to mess up a microsoft PC you just have to work on it.
---
 Democracy is two wolves and a lamb voting on what to have
 for lunch. Liberty is a well-armed lamb contesting the vote.
 --Benjamin Franklin
---
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Opening UniBasic Source Code Into A UniBasic

2009-05-20 Thread Mark Eastwood
Is BASELINE.RO a Program? If so, then you just want to open the BP (i.e.
remove program from path), then READ program as you would any item.

Mark


-Original Message-
From: owner-u2-us...@listserver.u2ug.org
[mailto:owner-u2-us...@listserver.u2ug.org] On Behalf Of Brutzman, Bill
Sent: Wednesday, May 20, 2009 1:35 PM
To: u2-users@listserver.u2ug.org
Subject: [U2] Opening UniBasic Source Code Into A UniBasic

I am writing on how to open a Unix file of UniBasic source code.

When I try a 


  openpath '/u2/SOFTWARE/BP/BASELINE.R0'  to  F.This  then
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


Re: [U2] Opening UniBasic Source Code Into A UniBasic

2009-05-20 Thread Jeff Schasny
Make sure your bp file is a type 19 not a type 1

Brutzman, Bill wrote:
 I am writing on how to open a Unix file of UniBasic source code.

 When I try a 


   openpath '/u2/SOFTWARE/BP/BASELINE.R0'  to  F.This  then
crt 'OK'
   end else
   
 crt 'Error'
 end

 *---
 ---
 The.End:

   crt status()
   crt
   crt ' [] ' :

   input Ans

   crt @(-1)

   END 

 *---
 -

 02 RUN BP FILESCAN.R0
 Error
 -7

  []

 Where -7 is InValid file revision or wrong byte-ordering for the
 platform.

 The platform is UniVerse v10.1 on HP-Ux 11i v2.

 Suggestions would be appreciated.

 --Bill
 ---
 u2-users mailing list
 u2-users@listserver.u2ug.org
 To unsubscribe please visit http://listserver.u2ug.org/

   

-- 

Jeff Schasny - Denver, Co, USA
jschasny at gmail dot com

---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Opening UniBasic Source Code Into A UniBasic

2009-05-20 Thread Brutzman, Bill
Yes... BASELINE.R0 is a program. 

-Original Message-
From: owner-u2-us...@listserver.u2ug.org
[mailto:owner-u2-us...@listserver.u2ug.org] On Behalf Of Mark Eastwood
Sent: Wednesday, May 20, 2009 4:46 PM
To: u2-users@listserver.u2ug.org
Subject: RE: [U2] Opening UniBasic Source Code Into A UniBasic

Is BASELINE.RO a Program? If so, then you just want to open the BP (i.e.
remove program from path), then READ program as you would any item.

Mark


-Original Message-
From: owner-u2-us...@listserver.u2ug.org
[mailto:owner-u2-us...@listserver.u2ug.org] On Behalf Of Brutzman, Bill
Sent: Wednesday, May 20, 2009 1:35 PM
To: u2-users@listserver.u2ug.org
Subject: [U2] Opening UniBasic Source Code Into A UniBasic

I am writing on how to open a Unix file of UniBasic source code.

When I try a 


  openpath '/u2/SOFTWARE/BP/BASELINE.R0'  to  F.This  then
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Opening UniBasic Source Code Into A UniBasic

2009-05-20 Thread Symeon Breen
Have you copied these programs over from another host - esp another host
with a different endian processor ?   you may need to do a fnuxi or such
thing on the code.

-Original Message-
From: owner-u2-us...@listserver.u2ug.org
[mailto:owner-u2-us...@listserver.u2ug.org] On Behalf Of Brutzman, Bill
Sent: 20 May 2009 21:35
To: u2-users@listserver.u2ug.org
Subject: [U2] Opening UniBasic Source Code Into A UniBasic

I am writing on how to open a Unix file of UniBasic source code.

When I try a 


  openpath '/u2/SOFTWARE/BP/BASELINE.R0'  to  F.This  then
   crt 'OK'
  end else

crt 'Error'
  end

*---
---
The.End:

  crt status()
  crt
  crt ' [] ' :

  input Ans

  crt @(-1)

  END 

*---
-

02 RUN BP FILESCAN.R0
Error
-7

 []

Where -7 is InValid file revision or wrong byte-ordering for the
platform.

The platform is UniVerse v10.1 on HP-Ux 11i v2.

Suggestions would be appreciated.

--Bill
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Opening UniBasic Source Code - Tab Key

2009-05-20 Thread Brutzman, Bill
1. Nope... I did not copy them; I would rather not have to copy them.

2. So far I have not have to do a fnuxi. 

3. What does a Tab key come over as?  I have a little method to buzz out
the blank spaces.  I would like to use this
   method on the pesky Tabs.

--Bill



-Original Message-
From: owner-u2-us...@listserver.u2ug.org
[mailto:owner-u2-us...@listserver.u2ug.org] On Behalf Of Symeon Breen
Sent: Wednesday, May 20, 2009 5:34 PM
To: u2-users@listserver.u2ug.org
Subject: RE: [U2] Opening UniBasic Source Code Into A UniBasic

Have you copied these programs over from another host - esp another host
with a different endian processor ?   you may need to do a fnuxi or such
thing on the code.

-Original Message-
From: owner-u2-us...@listserver.u2ug.org
[mailto:owner-u2-us...@listserver.u2ug.org] On Behalf Of Brutzman, Bill
Sent: 20 May 2009 21:35
To: u2-users@listserver.u2ug.org
Subject: [U2] Opening UniBasic Source Code Into A UniBasic

I am writing on how to open a Unix file of UniBasic source code.

When I try a 


  openpath '/u2/SOFTWARE/BP/BASELINE.R0'  to  F.This  then
   crt 'OK'
  end else

crt 'Error'
  end

*---
---
The.End:

  crt status()
  crt
  crt ' [] ' :

  input Ans

  crt @(-1)

  END 

*---
-

02 RUN BP FILESCAN.R0
Error
-7

 []

Where -7 is InValid file revision or wrong byte-ordering for the
platform.

The platform is UniVerse v10.1 on HP-Ux 11i v2.

Suggestions would be appreciated.

--Bill
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Opening UniBasic Source Code - Tab Key

2009-05-20 Thread Karl Pearson
CHAR(8) is a tab, IIRC.

Karl

On Wed, May 20, 2009 5:20 pm, Brutzman, Bill wrote:
 1. Nope... I did not copy them; I would rather not have to copy them.

 2. So far I have not have to do a fnuxi.

 3. What does a Tab key come over as?  I have a little method to buzz out
 the blank spaces.  I would like to use this
method on the pesky Tabs.

 --Bill



 -Original Message-
 From: owner-u2-us...@listserver.u2ug.org
 [mailto:owner-u2-us...@listserver.u2ug.org] On Behalf Of Symeon Breen
 Sent: Wednesday, May 20, 2009 5:34 PM
 To: u2-users@listserver.u2ug.org
 Subject: RE: [U2] Opening UniBasic Source Code Into A UniBasic

 Have you copied these programs over from another host - esp another host
 with a different endian processor ?   you may need to do a fnuxi or such
 thing on the code.

 -Original Message-
 From: owner-u2-us...@listserver.u2ug.org
 [mailto:owner-u2-us...@listserver.u2ug.org] On Behalf Of Brutzman, Bill
 Sent: 20 May 2009 21:35
 To: u2-users@listserver.u2ug.org
 Subject: [U2] Opening UniBasic Source Code Into A UniBasic

 I am writing on how to open a Unix file of UniBasic source code.

 When I try a


   openpath '/u2/SOFTWARE/BP/BASELINE.R0'  to  F.This  then
crt 'OK'
   end else

 crt 'Error'
 end

 *---
 ---
 The.End:

   crt status()
   crt
   crt ' [] ' :

   input Ans

   crt @(-1)

   END

 *---
 -

 02 RUN BP FILESCAN.R0
 Error
 -7

  []

 Where -7 is InValid file revision or wrong byte-ordering for the
 platform.

 The platform is UniVerse v10.1 on HP-Ux 11i v2.

 Suggestions would be appreciated.

 --Bill
 ---
 u2-users mailing list
 u2-users@listserver.u2ug.org
 To unsubscribe please visit http://listserver.u2ug.org/
 ---
 u2-users mailing list
 u2-users@listserver.u2ug.org
 To unsubscribe please visit http://listserver.u2ug.org/
 ---
 u2-users mailing list
 u2-users@listserver.u2ug.org
 To unsubscribe please visit http://listserver.u2ug.org/



---
Karl Pearson
ka...@ourldsfamily.com
Owner/Administrator of the sites at
http://ourldsfamily.com
---
To mess up your Linux PC, you have to really work at it;
 to mess up a microsoft PC you just have to work on it.
---
 Democracy is two wolves and a lamb voting on what to have
 for lunch. Liberty is a well-armed lamb contesting the vote.
 --Benjamin Franklin
---
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Opening UniBasic Source Code - Tab Key

2009-05-20 Thread Gregor Scott
Bill,

What exactly are you trying to achieve with the unix file?

On UniVerse the openpath command will open a unix path as a database file,
from which you then read items as normal.
You either need to change to use the openseq command so you can
sequentially read the contents of the unix item, or openpath
'/u2/SOFTWARE/BP' to open the unix path as a file and then read the
BASELINE.R0 item.


Gregor

-Original Message-
From: owner-u2-us...@listserver.u2ug.org
[mailto:owner-u2-us...@listserver.u2ug.org] On Behalf Of Brutzman, Bill
Sent: Thursday, 21 May 2009 9:20 AM
To: u2-users@listserver.u2ug.org
Subject: RE: [U2] Opening UniBasic Source Code - Tab Key

1. Nope... I did not copy them; I would rather not have to copy them.

2. So far I have not have to do a fnuxi. 

3. What does a Tab key come over as?  I have a little method to buzz out
the blank spaces.  I would like to use this
   method on the pesky Tabs.

--Bill



-Original Message-
From: owner-u2-us...@listserver.u2ug.org
[mailto:owner-u2-us...@listserver.u2ug.org] On Behalf Of Symeon Breen
Sent: Wednesday, May 20, 2009 5:34 PM
To: u2-users@listserver.u2ug.org
Subject: RE: [U2] Opening UniBasic Source Code Into A UniBasic

Have you copied these programs over from another host - esp another host
with a different endian processor ?   you may need to do a fnuxi or such
thing on the code.

-Original Message-
From: owner-u2-us...@listserver.u2ug.org
[mailto:owner-u2-us...@listserver.u2ug.org] On Behalf Of Brutzman, Bill
Sent: 20 May 2009 21:35
To: u2-users@listserver.u2ug.org
Subject: [U2] Opening UniBasic Source Code Into A UniBasic

I am writing on how to open a Unix file of UniBasic source code.

When I try a 


  openpath '/u2/SOFTWARE/BP/BASELINE.R0'  to  F.This  then
   crt 'OK'
  end else

crt 'Error'
  end

*---
---
The.End:

  crt status()
  crt
  crt ' [] ' :

  input Ans

  crt @(-1)

  END 

*---
-

02 RUN BP FILESCAN.R0
Error
-7

 []

Where -7 is InValid file revision or wrong byte-ordering for the
platform.

The platform is UniVerse v10.1 on HP-Ux 11i v2.

Suggestions would be appreciated.

--Bill
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/
-- 
Message  protected by DealerGuard: e-mail anti-virus, anti-spam and content
filtering.
http://www.pentanasolutions.com

Click here to report this message as spam:
https://login.mailguard.com.au/report/1xv5n3xAdt/24cAapgssVfLPUFP8fUeWL/0



Please consider the environment before printing this email
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/