HPUX 10.2 number pad


 
Thread Tools Search this Thread
Special Forums UNIX Desktop Questions & Answers HPUX 10.2 number pad
# 1  
Old 06-06-2005
Data HPUX 10.2 number pad

I have a keyboard that the number pad will not work. I cannot find the location of the configuration file to get it to work. I have to say, I have not tried another keyboard as my location is remote. Any suggestions?
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Pad 0 to the right

I need to pad 0 to a number on the right. to make it 9 digit in total. My number is 2457 output should be 245700000 Please do wrap your samples/codes into CODE TAGS as per forum rules. (3 Replies)
Discussion started by: varun22486
3 Replies

2. Shell Programming and Scripting

Request: How to Parse dynamic SQL query to pad extra columns to match the fixed number of columns

Hello All, I have a requirement in which i will be given a sql query as input in a file with dynamic number of columns. For example some times i will get 5 columns, some times 8 columns etc up to 20 columns. So my requirement is to generate a output query which will have 20 columns all the... (7 Replies)
Discussion started by: vikas_trl
7 Replies

3. HP-UX

pwage-hpux-T for Trusted HPUX servers

I'm sharing this in case anybody needs it. Modified from the original solaris pwage script. This modified hpux script will check /etc/password file on hpux trusted systems search /tcb and grep the required u_succhg field. Calculate days to expiry and notify users via email. original solaris... (2 Replies)
Discussion started by: sparcguy
2 Replies

4. HP-UX

Set the Serial Number in HPUX?

Hi, I have a refurbished HP C3750 workstation that my company recently bought. We have a need to be able to retrieve its serial number through software, and I found instructions at HP's Website on how to do this. Unfortunately, the machine does not return a serial number using any of the... (16 Replies)
Discussion started by: irinotecan
16 Replies

5. Shell Programming and Scripting

Need Script to Use CPUs on a HPUX server to simulate Workload Manager on HPUX.

I am running HPUX and using WLM (workload manager). I want to write a script to fork CPUs to basically take CPUs from other servers to show that the communication is working and CPU licensing is working. Basically, I want to build a script that will use up CPU on a server. Any ideas? (2 Replies)
Discussion started by: cpolikowsky
2 Replies

6. Shell Programming and Scripting

Pad zeros to a number

Pad zeros to a number and assign it to a variable like i get 1 in $i ,i want it to be $i as 01 (6 Replies)
Discussion started by: anumkoshy
6 Replies

7. Solaris

number pad in vi

Hi, I'm on a sunos SVR4.0 box, my number pad works on the command line but does not work in vi any ideas how to enable it under vi? Thanks (5 Replies)
Discussion started by: c19h28O2
5 Replies

8. HP-UX

ping Port number of HPUX machine

I have 2 HPUX machines. Let say machine A and B. In HPUX machine A, I would like to ping the port number of machine B. Is there any command or any HPUX freeware available? In windows, I can use some freeware to ping port to any type of machines (e.g. HPUX, Windows and etc). See URL below. ... (1 Reply)
Discussion started by: Teh Tiack Ein
1 Replies

9. UNIX for Dummies Questions & Answers

number pad?

Is there anyway to use the fr*$%& number pad in VI? Anyway? Anyway at all? All it does now random movements and inserts of characters (2 Replies)
Discussion started by: nelsonenzo
2 Replies
Login or Register to Ask a Question
prefresh(3cur)															    prefresh(3cur)

Name
       prefresh, pnoutrefresh - refresh pad

Syntax
       #include <cursesX.h>

       int prefresh(pad, pminrow, pmincol, sminrow, smincol, smaxrow, smaxcol)
       WINDOW *pad;
       int pminrow, pmincol, sminrow, smincol, smaxrow, smaxcol;

       int pnoutrefresh(pad, pminrow, pmincol, sminrow, smincol, smaxrow, smaxcol)
       WINDOW *pad;
       int pminrow, pmincol, sminrow, smincol, smaxrow, smaxcol;

Description
       The routine copies the specified pad to the physical terminal screen.  It takes account of what is already displayed on the screen to opti-
       mize cursor movement.

       The routine copies the named pad to the virtual screen.	It then compares the virtual screen with the  physical	screen	and  performs  the
       actual update.

       These routines are analogous to the routines and except that pads, instead of windows, are involved.  Additional parameters are also needed
       to indicate what part of the pad and screen are involved.  The upper left corner of the part of the pad to be displayed is specified by and
       The co-ordinates and specify the edges of the screen rectangle that will contain the selected part of the pad.

       The  lower right corner of the pad rectangle to be displayed is calculated from the screen co-ordinates.  This ensures that the screen rec-
       tangle and the pad rectangle are the same size.

       Both rectangles must be entirely contained within their respective structures.

Return Values
       The and functions return OK on success and ERR on error.

See Also
       wnoutrefresh(3cur), wrefresh(3cur)

																    prefresh(3cur)