Sponsored Content
Full Discussion: ICFB ERROR
Special Forums UNIX and Linux Applications Virtualization and Cloud Computing ICFB ERROR Post 302557818 by mspatil0037 on Thursday 22nd of September 2011 07:05:39 AM
Old 09-22-2011
ICFB ERROR

Hi All,

We are using Citrix MFU 4.
When users try to launch ICFB (Cadence)tool, They get the below error:

Using Cadence version ic5141_isr141
*ERROR* Failed to find either 24-bit TrueColor or 8-bit PseudoColor Visual.
*WARNING* Failed to find either 24-bit TrueColor or 8-pbit PseudoColor Visual.


OS is Solaris 10 9/10 and using CDE.

Please give me suggestions on this.
 

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Error: Internal system error: Unable to initialize standard output file

Hey guys, need some help. Running AIX Version 5.2 and one of our cron jobs is writing errors to a log file. Any ideas on the following error message. Error: Internal system error: Unable to initialize standard output file I'm guessing more info might be needed, so let me know. Thanks (2 Replies)
Discussion started by: firkus
2 Replies

2. UNIX for Dummies Questions & Answers

awk Shell Script error : "Syntax Error : `Split' unexpected

hi there i write one awk script file in shell programing the code is related to dd/mm/yy to month, day year format but i get an error please can anybody help me out in this problem ?????? i give my code here including error awk ` # date-month -- convert mm/dd/yy to month day,... (2 Replies)
Discussion started by: Herry
2 Replies

3. UNIX for Advanced & Expert Users

VSI-FAX error - Cannot login to server and Connecto error to host

I encounters a VSIFAX related error: vfxstat: Cannot login to server on rsac3: Connect error to host 172.16.1.45: Invalid argument It started happening last night with a core dump. Then we can't start VSIFAX again. I am runing VSI-FAX 4.2 on AIX box (0 Replies)
Discussion started by: b_jin
0 Replies

4. AIX

nim mksysb error :/usr/bin/savevg[33]: 1016,07: syntax error

-------------------------------------------------------------------------------- Hello, help me please. I am trying to create a mksysb bakup using nim. I am geting this error, how to correct it ? : Command : failed stdout: yes stderr: no... (9 Replies)
Discussion started by: astjen
9 Replies

5. UNIX for Advanced & Expert Users

ssh error: Error reading response length from authentication socket

Hi - I am getting the error `Error reading response length from authentication socket' when I ssh from my cluster to another cluster, and then back to my cluster. It doesn't seem to affect anything, but it's just annoying that it always pops up and tends to confuse new users of the cluster. I... (1 Reply)
Discussion started by: cpp6f
1 Replies

6. UNIX for Dummies Questions & Answers

> 5 ")syntax error: operand expected (error token is " error

im kinda new to shell scripting so i need some help i try to run this script and get the error code > 5 ")syntax error: operand expected (error token is " the code for the script is #!/bin/sh # # script to see if the given value is correct # # Define errors ER_AF=86 # Var is... (4 Replies)
Discussion started by: metal005
4 Replies

7. Shell Programming and Scripting

What is this error log = hda: irq timeout: error=0x00 and how to solve?

what is this error log = hda: irq timeout: error=0x00 and how to solve? every day upon checking the logs i see this error. hda: irq timeout: error=0x00 hda: irq timeout: error=0x00 hda: irq timeout: error=0x00 hda: irq timeout: error=0x00 hw_client: segfault at 0000000000000046 rip... (3 Replies)
Discussion started by: avtalan
3 Replies

8. Solaris

Rpcinfo: can't contact portmapper: RPC: Authentication error; why = Failed (unspecified error)

I have two servers with a fresh install of Solaris 11, and having problems when doing rpcinfo between them. There is no firewall involved, so everything should theoretically be getting through. Does anyone have any ideas? I did a lot of Google searches, and haven't found a working solution yet. ... (2 Replies)
Discussion started by: christr
2 Replies

9. UNIX for Beginners Questions & Answers

Print Error in Console and both Error & Output in Log file - UNIX

I am writing a shell script with 2 run time arguments. During the execution if i got any error, then it needs to redirected to a error file and in console. Also both error and output to be redirected to a log file. But i am facing the below error. #! /bin/sh errExit () { errMsg=`cat... (1 Reply)
Discussion started by: sarathy_a35
1 Replies
QGLColormap(3qt)														  QGLColormap(3qt)

NAME
QGLColormap - Used for installing custom colormaps into QGLWidgets SYNOPSIS
#include <qglcolormap.h> Public Members QGLColormap () QGLColormap ( const QGLColormap & map ) ~QGLColormap () QGLColormap & operator= ( const QGLColormap & map ) bool isEmpty () const int size () const void detach () void setEntries ( int count, const QRgb * colors, int base = 0 ) void setEntry ( int idx, QRgb color ) void setEntry ( int idx, const QColor & color ) QRgb entryRgb ( int idx ) const QColor entryColor ( int idx ) const int find ( QRgb color ) const int findNearest ( QRgb color ) const DESCRIPTION
The QGLColormap class is used for installing custom colormaps into QGLWidgets. QGLColormap provides a platform independent way of specifying and installing indexed colormaps into QGLWidgets. QGLColormap is especially useful when using the OpenGL color-index mode. Under X11 you must use an X server that supports either a PseudoColor or DirectColor visual class. If your X server currently only provides a GrayScale, TrueColor, StaticColor or StaticGray visual, you will not be able to allocate colorcells for writing. If this is the case, try setting your X server to 8 bit mode. It should then provide you with at least a PseudoColor visual. Note that you may experience colormap flashing if your X server is running in 8 bit mode. Under Windows the size of the colormap is always set to 256 colors. Note that under Windows you can also install colormaps in child widgets. This class uses explicit sharing (see Shared Classes). Example of use: #include <qapplication.h> #include <qglcolormap.h> int main() { QApplication a( argc, argv ); MySuperGLWidget widget( 0 ); // A QGLWidget in color-index mode QGLColormap colormap; // This will fill the colormap with colors ranging from // black to white. for ( int i = 0; i < colormap.size(); i++ ) colormap.setEntry( i, qRgb( i, i, i ) ); widget.setColormap( colormap ); widget.show(); return a.exec(); } See also QGLWidget::setColormap(), QGLWidget::colormap(), Graphics Classes, and Image Processing Classes. MEMBER FUNCTION DOCUMENTATION
QGLColormap::QGLColormap () Construct a QGLColormap. QGLColormap::QGLColormap ( const QGLColormap & map ) Construct a shallow copy of map. QGLColormap::~QGLColormap () Dereferences the QGLColormap and deletes it if this was the last reference to it. void QGLColormap::detach () Detaches this QGLColormap from the shared block. QColor QGLColormap::entryColor ( int idx ) const Returns the QRgb value in the colorcell with index idx. QRgb QGLColormap::entryRgb ( int idx ) const Returns the QRgb value in the colorcell with index idx. int QGLColormap::find ( QRgb color ) const Returns the index of the color color. If color is not in the map, -1 is returned. int QGLColormap::findNearest ( QRgb color ) const Returns the index of the color that is the closest match to color color. bool QGLColormap::isEmpty () const Returns TRUE if the colormap is empty; otherwise returns FALSE. A colormap with no color values set is considered to be empty. QGLColormap &; QGLColormap::operator= ( const QGLColormap & map ) Assign a shallow copy of map to this QGLColormap. void QGLColormap::setEntries ( int count, const QRgb * colors, int base = 0 ) Set an array of cells in this colormap. count is the number of colors that should be set, colors is the array of colors, and base is the starting index. void QGLColormap::setEntry ( int idx, QRgb color ) Set cell at index idx in the colormap to color color. void QGLColormap::setEntry ( int idx, const QColor & color ) This is an overloaded member function, provided for convenience. It behaves essentially like the above function. Set the cell with index idx in the colormap to color color. int QGLColormap::size () const Returns the number of colorcells in the colormap. SEE ALSO
http://doc.trolltech.com/qglcolormap.html http://www.trolltech.com/faq/tech.html COPYRIGHT
Copyright 1992-2001 Trolltech AS, http://www.trolltech.com. See the license file included in the distribution for a complete license statement. AUTHOR
Generated automatically from the source code. BUGS
If you find a bug in Qt, please report it as described in http://doc.trolltech.com/bughowto.html. Good bug reports help us to help you. Thank you. The definitive Qt documentation is provided in HTML format; it is located at $QTDIR/doc/html and can be read using Qt Assistant or with a web browser. This man page is provided as a convenience for those users who prefer man pages, although this format is not officially supported by Trolltech. If you find errors in this manual page, please report them to qt-bugs@trolltech.com. Please include the name of the manual page (qglcolormap.3qt) and the Qt version (3.1.1). Trolltech AS 9 December 2002 QGLColormap(3qt)
All times are GMT -4. The time now is 10:32 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy