How to obtain CMYK code from a pattern swatch?

Anyone know how this can be done? when I click on a pattern swatch it says its cmyk is black (regarldess of the color it actually is).

WHich version?
If CS3 and above, apply the pattern to some object and then use Edit > Edit colors > Recolor art.
or drag the pattern out of the swtches panel and then select the black objects.

Similar Messages

  • How to obtain error codes from LDAP exceptions

    Is there a way to obtain the error codes returned by LDAP services. In our application, we want to give more understandable messages and solution to rectify the issues, for the exception thrown while accessing LDAP. The NamingException does not contain error codes. Is there a way to obtain the error codes? If not, is there a neat way to handle this?
    Thanks in advance
    Sankar
    Edited by: sansun08 on Nov 14, 2009 9:40 AM

    Huh?
    If it says ignore duplicate keys then that would suggest to me that it isn't an error. If there is no error, then you won't get an error.
    So if you want an error then either remove the ignore or explicitly do a query first and create your own error if the id is already there.

  • How to obtain source code of weka and enable to modify it

    hello,
    how to obtain source code of weka and enable to modify it such i want to extract code of some process that I make

    Hi ENG,
    Since the issue regards to Weka. It is out of the support boundaries of our forum, I suggesT you post the question in the following forum:http://forums.pentaho.com/forumdisplay.php?81-Pentaho-Data-Mining-WEKA.
    It is appropriate and more experts will assist you.
    Regards,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • How to migrate source code from TFS 2010 to a new TFS 2010

    Hi,
    Please help me, How to migrate source code from TFS 2010 to a new TFS 2010. we are using SQL 2008 R2 for DB storage and we have Backup of TFS DB. First TFS 2010 is live environment and second TFS 2010 is test environment both OS and SQL version is same. 

    Hi Pankaj0439,
    In general, to move TFS from a hardware to another, you can follow the steps as below:
    1. Check your permissions
    2. Back up databases and install software
    3. Restore TFS databases to the new hardware
    4. Update the configuration of the new application-tier server
    5. Verify permissions, notify users, and configure backups
    And you can also refer to this
    article in MSDN for more details.
    Best regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How to obtain a URL from a path in a class' method?

    Hey everyone!
    Newbie here needing to convert the following method from a jsp page into a class for one of our applications.
    I have a method in a class which takes a path (as a string). However, I can't seem to figure out how to have java output the corresponding URL in a jsp page.
    For example, in the jsp file, I would provide something like:
    "./../../../../../../temp/gfx/" as the path.
    The "getRealPath()" method converts it nicely to a URL. However, I can't seem to figure out how to use this method within a class file. Is there a way to obtain the URL from a class' method? If so, how?
    --- old code below ---
    ServletContext application = getServletConfig().getServletContext();
    String msg = "";//#Either the IMG tag or message to be returned.
    File dir = new File(application.getRealPath(IMAGE_DIRECTORY));

    Thanks for that hint!
    Also, we're using Websphere... is there an easy way to take a partial url passed as a string and find the full path for it?
    Example:
    /images/today/
    and have it automatically converted to:
    F:/Inetpub/wwwroot/images/today/
    automatically in java?
    Or is this something where both a full system path and URL need to be passed?
    Thanks!

  • How to get MDX code from Smartview query

    Hello everybody:
    I would like to know how to obtain the MDX code when I am performing a query from Smartview. How can I find out what sentence the Provider Service sends to Essbase when doing any operation in Smartview?
    Thank you
    Regards
    Javier

    you might want to use the HypQueryMembers vba call with it you can query the outline directly for a lot of things including User defined attributes
    Here is the code sample from the VBA reference (it is available in Excel by going to the add-ins menu and selecting Hyperion Help
    Description
    HypQueryMembers() executes the member selection query.
    Syntax
    HypQueryMembers (vtSheetName, vtMemberName, vtPredicate, vtOption, vtDimensionName, vtInput1, vtInput2, vtMemberArray)
    ByVal vtSheetName As Variant
    ByVal vtMemberName As Variant
    ByVal vtPredicate As Variant
    ByVal vtOption As Variant
    ByVal vtDimensionName As Variant
    ByVal vtInput1 As Variant
    ByVal vtInput2 As Variant
    ByRef vtMemberArray As Variant
    Parameters
    vtSheetName: (string) Text name of worksheet to operate on. vtSheetName is of the form "[Book.xls]Sheet". If vtSheetName is null, empty, or invalid (nonexistent or name does not match exactly), the active sheet is used.
    vtMemberName: (string) The member name on which to perform the query.
    vtPredicate: (integer) Member selection criteria:
    1 HYP_CHILDREN
    2 HYP_DESCENDANTS
    3 HYP_BOTTOMLEVEL
    4 HYP_SIBLINGS
    5 HYP_SAMELEVEL
    6 HYP_SAMEGENERATION
    7 HYP_PARENT
    8 HYP_DIMENSION
    9 HYP_NAMEDGENERATION
    10 HYP_NAMEDLEVEL
    11 HYP_SEARCH
    12 HYP_WILDSEARCH
    13 HYP_USERATTRIBUTE
    14 HYP_ANCESTORS
    15 HYP_DTSMEMBER
    16 HYP_DIMUSERATTRIBUTES
    vtOption: (integer) Options are dependent on the predicate:
    For the predicate values, HYP_SEARCH and HYP_WILDSEARCH, specify query options: HYP_MEMBERSONLY
    HYP_ALIASESONLY
    HYP_MEMBERSANDALIASES
    vtDimensionName: (string) Dimension to limit the scope of the query. It is used with the following query options and ignored otherwise: HYP_NAMEDGENERATION, HYP_NAMEDLEVEL, HYP_USERATTRIBUTE HYP_SEARCH (set to Null to search through all dimensions), HYP_WILDSEARCH (set to Null to search through all dimensions).
    vtInput1: (string) Input string that is determined by the option. It is used with the following query options and ignored otherwise:
    HYP_NAMEDGENERATION (The name of the generation)
    HYP_NAMEDLEVEL (The name of the level)
    HYP_SEARCH (The string to search for. The string is defined as an exact)
    HYP_WILDSEARCH (The string to search for. The string is defined as an exact search string with an optional '*' at the end to mean any set of characters)
    HYP_USERATTRIBUTE (The user-defined attribute)
    vtInput2: (string) Input string that is determined by the option. It is used with the following query options and ignored otherwise:
    HYP_USERATTRIBUTE (The user-defined attribute)
    HYP_SEARCH, HYP_WILDSEARCH (If the options are set to search in the alias tables, this string specifies which alias table to search. If the string is Null, all alias tables will be searched).
    vtMemberArray: Output that contains the result of the query. If unsuccessful, its contents are unknown.
    Return Value
    Returns a zero if successful; otherwise, returns the appropriate error code.
    Example
    Declare Function HypQueryMembers Lib "HsAddin.dll" (ByVal vtSheetName As Variant, ByVal vtMemberName As Variant, ByVal vtPredicate As Variant, ByVal vtOption As Variant, ByVal vtDimensionName As Variant, ByVal vtInput1 As Variant, ByVal vtInput2 As Variant, ByRef vtMemberArray As Variant) As Long
    Sub QueryMembersEmptyValues()
    vtRet = HypQueryMembers(Empty, Null, HYP_WILDSEARCH,
         HYP_MEMBERSONLY, "Year", "J*", "", vt)
    If IsArray(vt) Then
    cbItems = UBound(vt) + 1
         MsgBox ("Number of elements = " + Str(cbItems))
    For i = 0 To UBound(vt)
         MsgBox ("Member = " + vt(i))
    Next
    Else
    MsgBox ("Return Value = " + Str(vt))
    End If
    End Sub

  • How to obtain public key from a .crt file

    Hi
    I am new to cryptography Please correct me if my understanding regarding the digital signature is correct and i need help to get the public key.
    I have a x.crt file which contains following fields
    1) x
    2)y
    3) Certificate
    this certificate contains following fields
    certificate version
    owner id
    name
    public key
    signature (which is obtained by signing from start of x.crt till public key with private key)
    now i need to verify whether the signature for that i need to get the public key & signature from this .crt file. Is it how i need to verify the certificate ?? please help me as I am a newbie in cryptography

    Hi all
    Thanks for the reply
    So to get the public key now i used the following code
    byte[] dataPub = new byte[256]; // size of the public key
    try {
                        byteArrayInputStream.read(dataPub);
                   } catch (IOException e1) {
                        // TODO Auto-generated catch block
                        e1.printStackTrace();
              BigInteger modulus = new BigInteger(dataPub);
         BigInteger exponent = new BigInteger("65537"); // specified in the document
         RSAPublicKeySpec rpks = new RSAPublicKeySpec(modulus, exponent);
         KeyFactory kf = null;
                   try {
                        kf = KeyFactory.getInstance("RSA");
                   } catch (NoSuchAlgorithmException e1) {
                        // TODO Auto-generated catch block
                        e1.printStackTrace();
         try {
                        pk = kf.generatePublic(rpks);
                        System.out.println("Pb Key----------------:"+pk.toString());
                   } catch (InvalidKeySpecException e) {
                        // TODO Auto-generated catch block
                        e.printStackTrace();
    When I convert the pk.toString I am getting a negative modulus value . Can the modulus value be negative ??
    Edited by: 800317 on Oct 8, 2010 5:51 AM

  • How to get exit code from C code when calling java method via JNI?

    Hi, All
    in my project, i need to call a java method from C code using JNI, yet I do
    not know how to
    retrieve the exit code of java program. the java code is like below
    public static void main(....)
    if(error){
    System.exit(-77);// the exit code is -77
    and the JNI c code may like below
    /* Invoke main method. */
        (*env)->CallStaticVoidMethod(env, mainClass, mainID, mainArgs);
    //here I want to retrieve the exit code from java to check if there is an
    error
    any suggestions? thanks

    Hi Liang Zhang,
    In your C code add:
    void (JNICALL y_exit)(jint code) {
    and when you are initialazing JVM options add:
    JavaVMOption options[...];
    options[...].optionString = "exit";
    options[...].extraInfo    = y_exit;
    See http://java.sun.com/j2se/1.3/docs/guide/jni/jni-12.html
    Best regards, Maksim Rashchynski.

  • How can obtain a row from an attribute

    Hi, i´m doing a smart project and i need only one row, how can obtain it?
    The row i want obtain it from an attribute.
    Thanks,

    Finally i do it with this method:
         public Vector getFile(MeIterator syncBos, int fromIndex, int count, String id) {
              // We want usually all items in the MEIterator because the SmartSync API already delivered
              // the correct part of items we want to display.
              // the fromIndex and count variable are only there in case we need a single entry.          
              Vector retVec = new Vector();
              int i = 0;
              if (syncBos != null) {
                   syncBos.reset();
                   // Fill table header with Field Names of Top Row
                   while (syncBos.hasNext()) {
                        /*                    SyncBo sb = (SyncBo) syncBos.next();
                                            if (i >= fromIndex) {
                                                 Vector rowData = new Vector();
                                                 for (int col = 0; col < getColumns(); col++) {
                                                      rowData.addElement(getHeaderFieldValue(sb, tableHeaderNames[col]));
                                                 retVec.addElement(rowData);
                        Row row = (Row) syncBos.next();
                        if (i >= fromIndex) {
                             Vector rowData = new Vector();
                             if ((getHeaderFieldValue(row, tableHeaderNames[1])).equals(id)) {
                                  for (int col = 0; col < getColumns(); col++) {
                                       rowData.addElement(getHeaderFieldValue(row, tableHeaderNames[col]));
                                  retVec.addElement(rowData);                              
                        i++;
                        // return when count has been reached, when count is greater 0.
                        // if count less 0 we get all records.
                        if (count > 0) {
                             if (i >= (fromIndex + count))
                                  return retVec;
              return retVec;
    Thanks,

  • How to run Java codes from ABAP

    Hi Gurus,
    I have .JAVA & .CLASS files which connect to the website through HTTPS connection and generates the TEXT file at C:\ by obtaining some data from WEB Site. This java files needs SSL certificate Which has been imported in SAP. How can i run the Java files from SAP R/3, Please help me.
    Thanks
    Ganesh

    hiii
    refer to following link..
    Java from ABAP?
    Re: Calling Java API from ABAP using JCo
    i hope it will solve your problem
    regards
    twinkal

  • How to obtain Frequency values from Agilent E8361 VNA LV8

    I am migrating code from an Agilent 8722ET VNA to the newer E8361A
    model network analyzer.  The new E8361X library does not have any
    VI that i have found that will actually collect the frequency spectrum
    from this instrument. 
    The save data VI only collects the measurement values and not the x-axis.
    I have tried the method the 87XX vi uses which uses a "OUTPLIML"
    function to obtain the values for a frequency list or log sweep. 
    It does not appear there is a command that is equivalent to this on the E8361. 
    I have attached the code which works for a linear sweep but not for a log one.
    Any help would be appreciated.
    Bryan
    Attachments:
    Read Stimulus Values.vi ‏33 KB

    I have attached a piece of code to do the job. 
    Bryan
    Attachments:
    Read Stimulus Values.vi ‏32 KB

  • How to convert the code from 8.2 to 7.1

    Hello friends
                   I have to convert the one vi from 8.2 to 7.1 Version.How to convert this code.
    Jayavel

    Hello Friends
                  i attached the code in 8.2 version.Convert this code into 7.1
    Jayavel
    Attachments:
    FreenrunTest.vi ‏1456 KB

  • How to Know Transaction Code from whcih the Document is Created?

    Hi,
    How to know which T Code is used to create documents. For few documents say material document (MBLNR), I can find the T code from MKPF table from which it is created as T Code field is available.
    If the table doesn't contain a T Code field, then how to find the T Code from which document is created?
    Regards,
    Hari.

    CDHDR, if change documents are written. DBTABLOG, if table logging is active.
    Otherwise...some knowledge of the SAP application components required.
    Thomas

  • How to get company code from Shipment

    Hi,
    I am working on a user exit on shipment (VT01N). I have shipment data. I have to get the value of KVERMfield from LFB1 table. There are multiple entries in LFB1 table with same Vendor with different company codes. How should i find the correct "Company Code" from shipment?
    Please help.
    Thanks,
    Mohammed Ibrahim

    Hello,
      in table VTTK  you have field "TransportPlanningPt" VTTK-TPLST. Get this value then enter in the customizing table TTDS, where the TransportPlanningP is assigned to the Company code.
    Hope to be useful.
    Best regards,
    Andrea

  • How to find Transaction code from Report/program name ?

    Dear all,
    How to find Transaction code if i know Report/program name ?

    Hi,
    In se 38 when u open ur program,in the application toolbar u have a button beside the where-used list button as display object list.on clicking this button,a window will be opened at the left most corner for repository browser,in this u can find any tranasctions,fileds,screens,dictionary structures defined for the program.
    if any transaction is created for the program u can find it under the transaction folder.
    revert back for further queries.
    Regards,
    Sravanthi

Maybe you are looking for

  • Date field performance

    hi The query below works well giving me a few 1000 records in 10-14 secs. SELECT p1.A AS "Service Number", p.1B AS "Status", C AS "Suspended Date", D AS "Reason for suspension" FROM inst_prod p1, reason p2 WHERE p1.b = 'SUS' AND p1.reaon_id = p2.reas

  • Strange menu when I select File Open, etc.

    (ARGH! Can't get Skitch to work here) how do I post a screen shot??.... I have noticed recently that when in Photoshop (and InDesign), when I select File>Open, I get a strange screen that is not the normal menu...  it looks like this: [url=http://ski

  • Binding ADF Components in Task Form

    Hi! I am using: Oracle Fusion Middleware 11.1.1.5.0, Oracle JDeveloper 11g. I posted this thread in the SOA section because of the type of project I am working in (SOA Application). But until now my question remained unanswered so I now I post in thi

  • Disk Image security

    I have a Disk Image that has been used as a backup for business files. Unfortunately the password is lost and I can no longer get access. Is there any way to get into these files or am I up-a-creek. Thanks, Dicoll

  • Navigating through a tree

    I have the following situation: A user navigates through a tree. - at some point the issue a command to add a new entry to the tree. - The back end responds with a new set of data (with the new item added) - I replace the trees data provider - I want