Re: [U2] Printing to a windows printer from a linux server on Universe

2012-05-14 Thread T Stokes

We are using smbclient. 

Additional information - We have determined that when windows live is
installed on the workstation the smbclient is unable to communicate with th
eLinux server.


HOW are you trying to print from Linux to Windows?

Also, what kind of printer?

-- 
View this message in context: 
http://old.nabble.com/Printing-to-a-windows-printer-from-a-linux-server-on-Universe-tp33763682p33830902.html
Sent from the U2 - Users mailing list archive at Nabble.com.

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


[U2] Printing to a windows printer from a linux server on Universe

2012-05-10 Thread T Stokes

We are having issue in printing to a windows printer from a Linux server.
When we try to print to a Windows 7 machine we are getting errors on the
windows seven machine. Has anyone has this same problem.
-- 
View this message in context: 
http://old.nabble.com/Printing-to-a-windows-printer-from-a-linux-server-on-Universe-tp33763682p33763682.html
Sent from the U2 - Users mailing list archive at Nabble.com.

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


[U2] INPUT -1 not returning the correct value

2009-11-11 Thread T Stokes

I have a situtation where the INPUT -1 is not returning the correct value.
The program 'freezes' due to this problem. Has anyone seen this situtation.

-- 
View this message in context: 
http://old.nabble.com/INPUT--1-not-returning-the-correct-value-tp26304456p26304456.html
Sent from the U2 - Users mailing list archive at Nabble.com.

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


[U2] Counting records

2008-11-18 Thread T Stokes
I am trying to remember a Universe function that returns the number of
records in a file.
Something like this.

OPEN 'SOMEFILE' TO SOMEFILE ELSE STOP 201,SOMEFILE

NUM.OF.RECORDS = UNKNOWNFUNCTION(SOMEFILE)
-- 
View this message in context: 
http://www.nabble.com/Counting-records-tp20569376p20569376.html
Sent from the U2 - Users mailing list archive at Nabble.com.
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


[U2] Change columns from 80 to 132 and from 132 to 80

2008-09-12 Thread T Stokes
I am trying to find a way to change the columns on my screen from 80 to 132
and from 132 to 80. Either by scripts or by program.

-- 
View this message in context: 
http://www.nabble.com/Change-columns-from-80-to-132-and-from-132-to-80-tp19462277p19462277.html
Sent from the U2 - Users mailing list archive at Nabble.com.
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


Re: [U2] Change columns from 80 to 132 and from 132 to 80

2008-09-12 Thread T Stokes
I need to add this is from Wintegrate.


T Stokes wrote:
 
 I am trying to find a way to change the columns on my screen from 80 to
 132 and from 132 to 80. Either by scripts or by program.
 
 

-- 
View this message in context: 
http://www.nabble.com/Change-columns-from-80-to-132-and-from-132-to-80-tp19462277p19462889.html
Sent from the U2 - Users mailing list archive at Nabble.com.
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


Re: [U2] group locks and user nbr's

2008-06-24 Thread T Stokes
This is a version of an expanded LIST.READU  EVERY.
It changes the pid for the user name. Slight modifications can be made to
use replace the inode with the file name.

  PID.ARRAY = '' ; ID.ARRAY = ''
  EXECUTE LISTU CAPTURING EXEC.LINE.OUT
  HEADER.LINE1 = TRIM(EXEC.LINE.OUT2)
  HEADER.LINE2 = EXEC.LINE.OUT4
  FOR A = 1 TO DCOUNT(EXEC.LINE.OUT,@AM)
 LINE = TRIM(EXEC.LINE.OUT )
 DISPLAY.LINE = EXEC.LINE.OUT 
 IF FIELD(LINE,' ',1) = * THEN
PID = FIELD(LINE,' ',3)
ID = FIELD(LINE,' ',4)
ID = FIELD(ID,\,2)
 END ELSE
PID = FIELD(LINE,' ',2)
ID = FIELD(LINE,' ',3)
ID = FIELD(ID,\,2)
 END
 LOCATE PID IN PID.ARRAY SETTING PID.POS ELSE
PID.ARRAY = INSERT(PID.ARRAY,PID.POS,0,0,PID)
ID.ARRAY = INSERT(ID.ARRAY,PID.POS,0,0,ID)
 END
  NEXT A
  EXECUTE LIST.READU EVERY CAPTURING EXEC.LINE.OUT
  NUM.OF.LINES = DCOUNT(EXEC.LINE.OUT,@AM)
  FOR A = 1 TO NUM.OF.LINES
 LINE = EXEC.LINE.OUT 
 TRIM.LINE = TRIM(LINE)
 IF NUM(TRIM.LINE[1,1]) THEN
USER.ID = FIELD(TRIM.LINE, ,4)
LOCATE USER.ID IN PID.ARRAY SETTING PID.POS THEN
   NAME = ID.ARRAYPID.POS
END ELSE
   NAME = USER.ID
END
LINE = CHANGE(LINE, :USER.ID: , :FMT(NAME,'20L'): )
 END
 PRINT LINE
  NEXT A


Doug Chanco wrote:
 
 Hey all,
 Can someone please help me understand the differences between group 
 locks and record locks?  Also are high user numbers (Userno below) 
 indicative of a phantom process?
 
 
 *Active Record Locks:
 Device Inode  Netnode Userno  Lmode   Pid Login Id Item-ID.
3080194   38458010137   6 RU 32694 crumjo   61570..5
 
 Active Group Locks:Record Group 
 Group Group
 Device Inode  Netnode Userno  Lmode G-Address.  Locks ...RD 
 ...SH ...EX
30801943289350 53   1 RD935D800  0 1 
 0 0
 
3080194389951   27  63180   2 RD E17000  0 1 
 0 0
 
 *
 one last question is there an easier way than finding out the file 
 associated with the inode and then doing a fuser on that file to find 
 out what is accessing the file?  For example I would like to know 
 who/what is holding this group lock
 
 * 3080194389951   27  63180   2 RD E17000  0 1 
 0 0
 
 *yet all I have is an inode and a userno of 63180 DOING a LISTU does NOT 
 show anything with that userno
 
 any and all assistance appreciated!
 
 thanks,
 dougc
 
 
 
  *
 *
 ---
 u2-users mailing list
 u2-users@listserver.u2ug.org
 To unsubscribe please visit http://listserver.u2ug.org/
 
 

-- 
View this message in context: 
http://www.nabble.com/group-locks-and-user-nbr%27s-tp18010061p18093258.html
Sent from the U2 - Users mailing list archive at Nabble.com.
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


Re: [U2] File pointer question

2008-06-16 Thread T Stokes
With the help IBM I  was able to resolve the problem. Fixing it required
changing a pointer.

-- 
View this message in context: 
http://www.nabble.com/File-pointer-question-tp17788496p17870502.html
Sent from the U2 - Users mailing list archive at Nabble.com.
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


[U2] Dynamic Connect keyboard definitions

2008-01-22 Thread T Stokes
I am trying to save keyboard definitions from one session to the next. Mainly
the keypad. The definitions will be changed before login but lost after I
enter the user name and password. I have saved the keyboard definition and
have placed it in the post session open script.
 
-- 
View this message in context: 
http://www.nabble.com/Dynamic-Connect-keyboard-definitions-tp15022326p15022326.html
Sent from the U2 - Users mailing list archive at Nabble.com.
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Slave Printing Problem

2008-01-22 Thread T Stokes
A simple test that can be performed to see if it is Able Term or universe.
Using Hyper AND A VT100 emulation.
0001: PRINT CHAR(27):[5i
0002: FOR A = 1 TO 10
0003: PRINT A
0004: NEXT A
0005: PRINT CHAR(12):
0006: PRINT CHAR(27):[4i

This should print to your default printer.



You can use the same program modifying for the WYSE-50 on your Able Term.
If nothing prints then you are correct and Universe and AbleTerm are not
working with each other.



Bessel, Karen wrote:
 
 The terminal emulation software is Ableterm and I'm emulating a
 Wyse-50. The terminal emulation settings work fine with other clients as
 well as in-house, so I believe that this is a problem with their version
 of UV playing nicely with Ableterm. 
 
 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] On Behalf Of Tim Stokes
 Sent: Monday, January 21, 2008 4:03 PM
 To: u2-users@listserver.u2ug.org
 Subject: RE: [U2] Slave Printing Problem
 
 Is this a dumb terminal or a terminal emulator?
 
 
 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] On Behalf Of Bessel, Karen
 Sent: Monday, January 21, 2008 3:33 PM
 To: u2-users@listserver.u2ug.org
 Subject: [U2] Slave Printing Problem
 
 Turning auxiliary port on/off using CHAR(18) and (20) - I have also
 tried (24)  (20).
 
 
 
 After the CHAR(18)/(24), the slave output is turned on but it does not
 capture any of the output. This is occurring with both proc  BP type
 output. If I run the proc/BP to spooler hold, there is printed output
 so it's not an issue with selection criteria/data/etc.
 
 
 
 This is a really old version of UV (9.5.1.1).
 
 
 
 Any ideas?
 ---
 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/
 
 

-- 
View this message in context: 
http://www.nabble.com/Slave-Printing-Problem-tp15007599p15026211.html
Sent from the U2 - Users mailing list archive at Nabble.com.
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


[U2] Change columns from 80 to 132 and from 132 to 80

-- Thread T Stokes
->











  
  Re: [U2] Change columns from 80 to 132 and from 132 to 80
  
  
  
  
  
  








	

	u2-users 

	
		
			-- Thread --
			-- Date --
			





			
		
	



	
	
	




 




<!--
google_ad_client = "pub-7266757337600734";
google_alternate_ad_url = "http://www.mail-archive.com/blank.png";
google_ad_width = 160;
google_ad_height = 600;
google_ad_format = "160x600_as";
google_ad_channel = "8427791634";
google_color_border = "FF";
google_color_bg = "FF";
google_color_link = "006792";
google_color_url = "006792";
google_color_text = "00";
//-->







[U2] Change columns from 80 to 132 and from 132 to 80
T Stokes


Re: [U2] Change columns from 80 to 132 and from 132 to 80
T Stokes


Re: [U2] Change columns from 80 to 132 and from 132 to 80
Ed Clark


Re: [U2] Change columns from 80 to 132 and from 132 to 80
Ed Clark


Re: [U2] Change columns from 80 to 132 and from 132 to 80
Anthony W. Youngman


RE: [U2] Change columns from 80 to 132 and from 132 to 80
lappies


RE: [U2] Change columns from 80 to 132 and from 132 to 80
Anthony Youngman


RE: [U2] Change columns from 80 to 132 and from 132 to 80
John Bullard


RE: [U2] Change columns from 80 to 132 and from 132 to 80
John Bullard


RE: [U2] Change columns from 80 to 132 and from 132 to 80
Tim Stokes









Re: [U2] Change columns from 80 to 132 and from 132 to 80
MAJ Programming
 


Re: [U2] Change columns from 80 to 132 and from 132 to 80
Scott Ballinger






Re: [U2] Change columns from 80 to 132 and from 132 to 80
Kevin King


RE: [U2] Change columns from 80 to 132 and from 132 to 80
Tim Stokes


RE: [U2] Change columns from 80 to 132 and from 132 to 80
Marvin R. Fisher


RE: [U2] Change columns from 80 to 132 and from 132 to 80
Bill Haskett











 






  
  





Reply via email to



  
  





 
 







[U2] Change columns from 80 to 132 and from 132 to 80

-- Thread T Stokes
->











  
  RE: [U2] Change columns from 80 to 132 and from 132 to 80
  
  
  
  
  
  








	

	u2-users 

	
		
			-- Thread --
			-- Date --
			





			
		
	



	
	
	




 




<!--
google_ad_client = "pub-7266757337600734";
google_alternate_ad_url = "http://www.mail-archive.com/blank.png";
google_ad_width = 160;
google_ad_height = 600;
google_ad_format = "160x600_as";
google_ad_channel = "8427791634";
google_color_border = "FF";
google_color_bg = "FF";
google_color_link = "006792";
google_color_url = "006792";
google_color_text = "00";
//-->







[U2] Change columns from 80 to 132 and from 132 to 80
T Stokes


Re: [U2] Change columns from 80 to 132 and from 132 to 80
T Stokes


Re: [U2] Change columns from 80 to 132 and from 132 to 80
Ed Clark


Re: [U2] Change columns from 80 to 132 and from 132 to 80
Ed Clark


Re: [U2] Change columns from 80 to 132 and from 132 to 80
Anthony W. Youngman


RE: [U2] Change columns from 80 to 132 and from 132 to 80
lappies



RE: [U2] Change columns from 80 to 132 and from 132 to 80
Anthony Youngman
 


RE: [U2] Change columns from 80 to 132 and from 132 to 80
John Bullard


RE: [U2] Change columns from 80 to 132 and from 132 to 80
John Bullard


RE: [U2] Change columns from 80 to 132 and from 132 to 80
Tim Stokes








Re: [U2] Change columns from 80 to 132 and from 132 to 80
MAJ Programming


Re: [U2] Change columns from 80 to 132 and from 132 to 80
Scott Ballinger






Re: [U2] Change columns from 80 to 132 and from 132 to 80
Kevin King


RE: [U2] Change columns from 80 to 132 and from 132 to 80
Tim Stokes


RE: [U2] Change columns from 80 to 132 and from 132 to 80
Marvin R. Fisher


RE: [U2] Change columns from 80 to 132 and from 132 to 80
Bill Haskett











 






  
  





Reply via email to



  
  





 
 







[U2] Change columns from 80 to 132 and from 132 to 80

-- Thread T Stokes
->











  
  RE: [U2] Change columns from 80 to 132 and from 132 to 80
  
  
  
  
  
  








	

	u2-users 

	
		
			-- Thread --
			-- Date --
			





			
		
	



	
	
	




 




<!--
google_ad_client = "pub-7266757337600734";
google_alternate_ad_url = "http://www.mail-archive.com/blank.png";
google_ad_width = 160;
google_ad_height = 600;
google_ad_format = "160x600_as";
google_ad_channel = "8427791634";
google_color_border = "FF";
google_color_bg = "FF";
google_color_link = "006792";
google_color_url = "006792";
google_color_text = "00";
//-->







[U2] Change columns from 80 to 132 and from 132 to 80
T Stokes


Re: [U2] Change columns from 80 to 132 and from 132 to 80
T Stokes


Re: [U2] Change columns from 80 to 132 and from 132 to 80
Ed Clark


Re: [U2] Change columns from 80 to 132 and from 132 to 80
Ed Clark


Re: [U2] Change columns from 80 to 132 and from 132 to 80
Anthony W. Youngman


RE: [U2] Change columns from 80 to 132 and from 132 to 80
lappies


RE: [U2] Change columns from 80 to 132 and from 132 to 80
Anthony Youngman



RE: [U2] Change columns from 80 to 132 and from 132 to 80
John Bullard
 


RE: [U2] Change columns from 80 to 132 and from 132 to 80
John Bullard


RE: [U2] Change columns from 80 to 132 and from 132 to 80
Tim Stokes








Re: [U2] Change columns from 80 to 132 and from 132 to 80
MAJ Programming


Re: [U2] Change columns from 80 to 132 and from 132 to 80
Scott Ballinger






Re: [U2] Change columns from 80 to 132 and from 132 to 80
Kevin King


RE: [U2] Change columns from 80 to 132 and from 132 to 80
Tim Stokes


RE: [U2] Change columns from 80 to 132 and from 132 to 80
Marvin R. Fisher


RE: [U2] Change columns from 80 to 132 and from 132 to 80
Bill Haskett











 






  
  





Reply via email to



  
  





 
 







[U2] Change columns from 80 to 132 and from 132 to 80

-- Thread T Stokes
->











  
  RE: [U2] Change columns from 80 to 132 and from 132 to 80
  
  
  
  
  
  








	

	u2-users 

	
		
			-- Thread --
			-- Date --
			





			
		
	



	
	
	




 




<!--
google_ad_client = "pub-7266757337600734";
google_alternate_ad_url = "http://www.mail-archive.com/blank.png";
google_ad_width = 160;
google_ad_height = 600;
google_ad_format = "160x600_as";
google_ad_channel = "8427791634";
google_color_border = "FF";
google_color_bg = "FF";
google_color_link = "006792";
google_color_url = "006792";
google_color_text = "00";
//-->







[U2] Change columns from 80 to 132 and from 132 to 80
T Stokes


Re: [U2] Change columns from 80 to 132 and from 132 to 80
T Stokes


Re: [U2] Change columns from 80 to 132 and from 132 to 80
Ed Clark


Re: [U2] Change columns from 80 to 132 and from 132 to 80
Ed Clark


Re: [U2] Change columns from 80 to 132 and from 132 to 80
Anthony W. Youngman


RE: [U2] Change columns from 80 to 132 and from 132 to 80
lappies


RE: [U2] Change columns from 80 to 132 and from 132 to 80
Anthony Youngman


RE: [U2] Change columns from 80 to 132 and from 132 to 80
John Bullard



RE: [U2] Change columns from 80 to 132 and from 132 to 80
John Bullard
 


RE: [U2] Change columns from 80 to 132 and from 132 to 80
Tim Stokes








Re: [U2] Change columns from 80 to 132 and from 132 to 80
MAJ Programming


Re: [U2] Change columns from 80 to 132 and from 132 to 80
Scott Ballinger






Re: [U2] Change columns from 80 to 132 and from 132 to 80
Kevin King


RE: [U2] Change columns from 80 to 132 and from 132 to 80
Tim Stokes


RE: [U2] Change columns from 80 to 132 and from 132 to 80
Marvin R. Fisher


RE: [U2] Change columns from 80 to 132 and from 132 to 80
Bill Haskett











 






  
  





Reply via email to