Convertir numeros a letras CR2008

Estimados Buenas tardes,
Soy nuevo en el tema de diseñar en Crystal Report 2008, actualmente estoy diseñando un reporte el cual toma un valor numerico y lo convierte en letras, esto lo hago usando la funcion ToWords. pero tengo un problema:
si el dato a convertir tiene decimales EJ:  8900,89 con la funcion ToWords convierte el valor en letras de esta manera ocho mil novecientos y 89 / 100.
No entiendo por que no convierte a letras el valor decimal, no se si falta algo en la funcion.
Muchas gracias por su colaboracion.
Anthony

[Idea place|http://www.sdn.sap.com/irj/scn/idea-place] is here, top right corner.
If you have a developer you could write a UFL that would translate it for in what ever format you want.
So I went back and tried again. Now I have it working:
Towords(truncate(8900.89), 0) + " point " + towords(abs(100 * (truncate(8900.89)- 8900.89)), 0);
result is: eight thousand nine hundred point eighty-nine
Why:
Towords(truncate(8900.89), 0)  returns 8900, the "," 0 tells the function to ignore the decimal place.
(abs(100 * (8900.89 - truncate(8900.89)) abs converts it to a positive value always just in case and multiplies the value to be non decimal.
If you have more decimal places you'll have to adjust the 100 multiplier
Thank you
Don
Edited by: Don Williams on Dec 10, 2010 2:56 PM

Similar Messages

  • Funcion para convertir numero a letra

    buenas  tardes
    alguien me podria ayudar a saber si hay una funcion para convertir numero a letra o que pasos debo realizar
    saludos y gracias

    Maybe the answer is here:
    https://discussions.apple.com//message/10469491

  • Durante o dia recebo umas mensagens com uns numeros e letras

    Esta acontecendo todo dia eu entro no menu de mensagens e tem varias mensagens com uns numeros e letras, acho que é um codigo ou coisa do tipo, são sempre iguais

    Pessoal acho que descobri o que causa esse problema é o App "Uso" do Firefox, aquele gerencia o uso da Internet, na tela inicial dele tem algumas opções uma delas é verificar o saldo, toda vez que tentarmos ou o App automaticamente tentar atualizar o saldo ele envia um código que é esse que eu postei mais acima e ai não sei porque, mas toda vez o serviço não esta disponível ai recebemos aquelas mensagens!

  • Hi, i just bought a gift card and by mistake my brother scratch it badly so now the code is illegible

    Hi i just bought a gif card an my brother accidentaly scratched badly so now i can't read the key/code is there any solution?
    Hola, recien compre una tarjeta de regalo pero mi hermano la raspo mal y ahora no se pueden leer algunos numeros o letras del codigo, ¿me podrian ayudar?

    See if this page helps, and if it doesn't then you will need to try contacting iTunes support (you will need to give them as much of the serial number and activation code from the card as you can read) : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then iTunes Cards And Codes

  • Organizar páginas de un documento PDF

    Hola estoy tratando de organizar las páginas de un archivo PDF usando javascript pero he tenido algunos problemas.
    Se trata de documentos muy grandes, de mas de 1000 páginas. Actualmente el procso se hace de forma manual, localizando las paginas en un listado y llevandolas a la posisión que le corresponde arrastrandolas en las miniaturas.
    Cada págian en el documento pdf, salvo algunas excepciones, esta formada por una cabezara que contiene sólo 4 lineas de texto y el resto de la página contiene imagenes.
    La idea es que a partir de esas cuatro lineas que se encuentran en la cabecera se pueda localizar la pagina correcta a partir de una base de datos y posteriormente colocarla en la posisión que le corresponde.
    Hasta ahora he podido implementar un codigo en javascript en adobe acrobat 9, el codigo me permite conectar con una base de datos y de forma busque cada uno de los registros a partir del nombre (la primera linea) de cada página.
    He hecho varias correcciones tratando de usar la documentación de adobe "developer_guide" y "api_reference", donde sugieren una forma de mover páginas en un documento pdf, sin embargo en cada una me encuentro con que el programa se cuelga, funciona con pocas páginas pero no cuando hago las pruebas con documentos tan grandes.
    En el codigo que anexo he logrado que no se cuelgue al menos hasta 150 registros pero tengo otro problema, el archivo crece brutalmente de tamaño de 90 M se fue a casi 5 G.
    Espero alguien me pueda ayudar.
    No soy muy limpio haciendo codigos espero no cause mucha confución, aún tiene muchos errores (espero no sean muy duros en las criticas jiji)
    Despues de todo el rolloaclaro que se me ocurrio que era una buena forma de hacer esto pero si existe otro programa o lenguje que alguien conosca y que tenga el mismo resultado es vienvenida la propuesta.
    Saludos.
    //**************  ORGANIZADOR DE PDFs  **************
    var titulo;
    var numPalabras;
    var numLetras;
    var tituloPartido;
    var numCadenaTitulo;
    var numCadenaPalabras;
    var numPaginaPdf;
    var cadenaTitulo;
    var tituloPdf;
    var pagInicioBusqueda;
    var tituloEncontrado;
    var i;
    var p;
    pagInicioBusqueda = 2;
    //Variables de la base de datos
    var stitulo
    //Función para mover hojas
    function moverPagina(p, destino){
            if (p<destino)
    destino=destino-2;
            if (p>destino)
            destino = destino - 1;
    // copiar las paginas en el documento temporal
    this.insertPages({
                    nPage: destino,
      cPath: this.path,
      nStart: p,
      nEnd: p
    // Borrar las pásginas del documento original
    this.deletePages({nStart: p+1, nEnd: p+1});
    function buscaYAcomoda(bdTitulo){
    titulo = bdTitulo;
    //Contar el numero de letras
    numLetras = titulo.length;
    //Partir titulo
    tituloPartido = titulo.split(" ");
    //Contar el numero de palabras
    numPalabras = tituloPartido.length;
    //Imprimir numero de palabras y letras
    console.println("\n" + numLetras);
    console.println("\n" + numPalabras);
    //Tratamiento de titulo
    if (numLetras > 31){
    numCadenaLetras = numLetras;
    numCadenaPalabras = numPalabras;
    while (numCadenaLetras > 31){
      numCadenaPalabras = numCadenaPalabras - 1;
      cadenaTitulo = tituloPartido[0];
      for(i = 1; i <= numCadenaPalabras; i++){
       cadenaTitulo = cadenaTitulo + " " + tituloPartido[i];
      numCadenaLetras = cadenaTitulo.length;
      console.println(cadenaTitulo);
      console.println(numCadenaPalabras);
    else{
    numCadenaLetras = numLetras;
    numCadenaPalabras = numPalabras - 1;
    //Quitamos todos los espacios al fina del titulo
    while (tituloPartido[numCadenaPalabras] == ""){
      numCadenaPalabras = numCadenaPalabras - 1;
      cadenaTitulo = tituloPartido[0];
      for(i = 1; i <= numCadenaPalabras; i++){
       cadenaTitulo = cadenaTitulo + " " + tituloPartido[i];
      numCadenaLetras = cadenaTitulo.length;
      console.println(cadenaTitulo);
      console.println(numCadenaPalabras);
    //+++++++++++++++++++++++++++++++++++++++++++
    //+++++++++++++++++++++++++++++++++++++++++++
    //Buscar titulo y devolver la pagina
    //Asignar las variables a ocupar
    tituloPdf = "";
    tituloEncontrado = 0;
    p=pagInicioBusqueda -1;//inicia en la pagina anterios porque en la primera instrucción se le suma uno
    while (p < this.numPages-1){
    while (tituloPdf != cadenaTitulo && p < this.numPages){
      p++;
      if (p != this.numPages){
       tituloPdf = this.getPageNthWord (p, 0);
       //Creamos la cadena de la hoja para comparar
       for (i=1; i<=numCadenaPalabras; i++){
        tituloPdf = tituloPdf + " " + this.getPageNthWord (p, i);
       //console.println(tituloPdf);
      if (tituloPdf != cadenaTitulo && tituloEncontrado == 1) break;
    if (tituloPdf == cadenaTitulo && p != this.numPages){
      numPaginaPdf = p;
      console.println("Esta en la página " + (numPaginaPdf+1));
      tituloEncontrado = 1;
      //Regorre las páginas
      moverPagina(numPaginaPdf, pagInicioBusqueda);
      pagInicioBusqueda++;
      tituloPdf="";
    else{
      if (tituloEncontrado == 0){
       console.println("Este titulo no exsiste en este documento: ");
       console.println(tituloPdf);
       tituloEncontrado = 0;
      else{
       p = this.numPages;
    console.println(this.numPages);
    //Incorporar la conexión a la base de datos
    // Obtain a list of accessible databases:
    var databaseList = ADBC.getDataSourceList();
    // Search the DataSourceInfo objects for the "bd_pdf" database:
    if (databaseList != null) {
         var DB = "";
         for (var i=0; i<databaseList.length; i++)
              if (databaseList[i].name == "bd_pdf") {
                   DB = databaseList[i].name;
                   break;
    if (DB != "") {
         // Connect to the database and obtain a Connection object:
         var myConnection = ADBC.newConnection(DB.name);
    // Obtain the array of TableInfo objects representing the database tables:
    var tableArray = myConnection.getTableList();
    // Print the name and description of each table to the console:
    for (var i=0; i<tableArray.length; i++) {
         console.println("Table Name: " + tableArray[i].name);
         console.println("Table Description: " + tableArray[i].description);
    // Obtain the array of ColumnInfo objects representing the Sales table:
    var columnArray = myConnection.getColumnList("Periodicos");
    myStatement = myConnection.newStatement();
    // Create the SQL statement:
    var SQLStatement = 'Select * from \"Periodicos\"';
    // Execute the SQL statement:
    myStatement.execute(SQLStatement);
    //Bucle de busqueda
    for (var bd = 1; bd <= 30; bd++){
    // Make the next row (the first row in this case) available:
    myStatement.nextRow();
    // Obtain the information contained in the first row (a Row object):
    var firstRow = myStatement.getRow();
    titulo = firstRow.Title.value
    buscaYAcomoda(titulo);
    //Cerramos la conexión
    myConnection.close();

    Nacho, si trabajas con la primera opción, de páginas enfrentadas, cuando te vas a "archivo/valores de pdf", seleccionas el que consideres, yo te recomendaría el x1a:2001, pero ten cuidado en la opción de "marcas y sangrados" debes poner o bien que tome la sangre del documento (es la que yo pongo) o bien una sangre que tú consideres. Ese es un detalle a controlar con los pdf que se generan con esta especificación y para el caso de documentos con sangre. También decirte que este perfil cambia todas las imágenes en rgb a cmyk, con lo cual, si no lo habías hecho, te puedes encontrar con "sorpresas". De todas formas es el estandar de las imprentas.
    Por lo demás, con un pdf con estas condiciones las imprentas te querrán mucho, pues lo meterán en sus programas de imposición y ellos impondrán como les venga mejor.
    Un saludo y desearos a todos feliz 2010
    desde Triana, Sevilla
    mateo sánchez

  • Olvide la contraseña de mi ipad mini

    como hago para poder desbloquear mi mini ipad, le puse una contraseña (incluye numeros y letras) y ya no puedo acceder a ella

    Bienvenido/a
    Para recuperar la contraseña de un MacBook, debe realizar algunos pasos dependiendo de la versión de OS X que use.
    Si tiene Snow Leopard, siga las instrucciones de esta página > http://support.apple.com/kb/HT1274?viewlocale=es_ES
    Si tiene Lion o Mountain Lion, puede intentar resetear la contraseña utilizando el Apple ID con los pasos de esa web de Apple. Si no funciona, siga estas instrucciones > http://discussions.apple.com/docs/DOC-4101

  • 'DATE' type in SQL converting to a 'STRING' in CR2008.

    Help!
    We have just installed the stand-alone version of CR2008 and running against a SQL db back end. The newest version of SQL consists of a data type, 'DATE' that's being recognized in CR as a 'STRING' when the stored procedures are accessed. However, I am converting it back to a 'DATE' data type inside the report and everything looks fine in the CR viewer.
    Our concern:
    Could this be an issue when the .rpt files are called via an ASP page?
    Thanks,
    Tony

    Hi Tony,
    I just checked by adding a Date field type into my 2K8 server and you are correct if you use the Native SQL Server driver. CR does see it only as a string. By default and to handle new types that DB makers can add, CR will convert any type is doesn't recognize into a string.
    However if you install SQL Server Client 10 driver and use it then you will see the Date field as a date type.
    So, if you are using MS SQL Server 2008 then simply install the Client and then you can use the SP.
    You can install it off the MS CD or use this link to their tools:
    http://www.microsoft.com/downloads/en/details.aspx?FamilyId=C6C3E9EF-BA29-4A43-8D69-A2BED18FE73C&displaylang=en
    Look for the Client install only, 32 or 64 bit.
    Thank you
    Don
    Edited by: Don Williams on Nov 20, 2010 12:39 PM

  • Quanto tento entrar em augum website aparece a fonte do sity umas letras e numeros e queia saber resouvar

    quando entro no site aparece varias letras e numeros que acho que é a fonte e nao consigo entrar ema nada por causa disso vo mandar o que aparece :
    {window['APP_LABEL_NAME'] = 'wajam';window['APP_LABEL_NAME_FULL_UC'] = 'WAJAM';window['WAJAM_APP_LABEL_NAME_UC'] = 'Wajam';window['WAJAM_PATH'] = 'http://www.fastnfreedownload.com/'; window['WAJAM_PATH_HTTPS'] = 'https://www.fastnfreedownload.com/'; window['WAJAM_PATH_ADS'] = 'http://fastnfreedownload.com/'; window['WAJAM_PATH_HTTPS_ADS'] = 'https://fastnfreedownload.com/'; window['WAJAM_PATH_STATIC_FILES_CACHE_URL'] = '//staticwajam-wajam.netdna-ssl.com'; window['WAJAM_MAP_URL'] = 'http://map.wajam.com/'; window['WAJAM_CONTAINER_HEIGHT'] = '225px'; window['WAJAM_BROWSER'] = 'p'; window['WAJAM_BROWSER_VERSION'] = '2.21.2.26'; window['WAJAM_ENV'] = '0'; window['WAJAM_PLATFORM'] = navigator.platform;window['WAJAM_SEARCH_ENGINE'] = 'google'; window['WAJAM_STATIC_FILES_CACHE_HTTPS_URL'] = 'https://staticwajam-wajam.netdna-ssl.com'; window['WAJAM_ADS_COUNT_TOP'] = 3;window['WAJAM_ADS_COUNT_SIDE'] = 2;window['WAJAM_ADS_COUNT_BOTTOM'] = 3;window['WAJAM_ADS_COUNT_AUTOCOMPLETE'] = 0;window['WAJAM_OPEN_ADS_IN_NEW_TAB'] = false;window['WAJAM_PUBLIC_PROFILE_ID'] = '332033913';window['WAJAM_WEBSITE_VERSION'] = 1.00330;window['WAJAM_UNIQUE_ID'] = '97E88521E593D015573F15EE62F246AC';window['WAJAM_AFFILIATE_ID'] = '4630';window['WAJAM_INSTALL_TIMESTAMP'] = '1419894530';if(priam_utils_loaded===undefined){var priam_utils_loaded=true;var priamAppName=window['APP_LABEL_NAME'];var priamAppNameFullUC=window['APP_LABEL_NAME_FULL_UC'];var priamAppNameUC=window[priamAppNameFullUC+'_APP_LABEL_NAME_UC'];var

    Olá,
    Muitos problemas em sites da web podem ser causados por cookies ou cache corrompidos. Para tentar resolver esses problemas, o primeiro passo é limpar tanto o cache quanto os cookies.
    Nota: ''Com essa ação, você será temporariamente desconectado de todos os sites que você se autenticou.''
    Para limpar o cache e os cookies siga os seguintes passos:
    #Clique no menu [[Image:New Fx Menu]], depois em histórico e finalmente em "Limpar histórico recente...".
    #Em "Limpar este período", selecione "Tudo".
    #Agora, clique na flecha próxima ao botão Detalhes para mostrar mais opções.
    #Na lista de detalhes, marque a opção ''Cache'' e ''Cookies'' e desmarque todas as outras opções.
    #Agora clique no botão ''Limpar Agora''.
    Mais informações podem ser encontradas no artigo [[Delete browsing, search and download history on Firefox]].
    Esse solução resolveu seus problemas? Por favor, conte-nos!
    Obrigado.

  • NO RECONOCE LOS NUMEROS CUANDO ESCRIBO CON LAS TECLAS, ME LOS IDENTIFICA COMO LETRAS UNICAMENTE

    Buenas, 
    alguno sabe como configurar el teclado dela BB Q5 para que reconozca los numeros?
    Al  principio lo hacia, y hace unos dias dejo de reconocer los numeros, cuando los tipeo me los reconoce como letras unicamente. No se que fue lo que toque. 
    Saludos y gracias.

    Hola y gracias por participar en el foro,
    Para tu comodidad, BlackBerry tiene su propio foro comunitario en español.
    http://foros.blackberry.com/t5/Foros-de-Soporte-General/ct-p/bscf_es
    Valerie878                                                                                                  New to the Community click here  
    Community Moderator

  • "Convert Null Database Values to Default" is disabled/greyed out for CR2008

    We have a new install of Crystal Reports 2008 12.0.0.683.
    I can set the Options to check "Convert Null Database Values to Default", but I created a new report on crdb_odbc.dll to SQL Server BEFORE setting this Option on.   I need to check that option on in Report Options, but it is disabled, and I have no idea why - never seen anything like that happen (and cannot find any reference to it in the Forum threads).  Another thing I noticed in the Database Expert is the indexed fields do not have a coloured identifier. Not sure if that is related.
    However, now  in Options if have checked Convert Null Database Values to Default, and when I create a new report, it remains checked in Report Options and enabled.  I just don't really want to have to create my report from scratch again.
    Any thoughts?  Thanks!
    Do I need a service pack, and if so, where do I download that from?

    Hi Angela,
    Please try the following :
    1. File menu>>Report Options.
    2. Uncheck the check box "Perform Grouping on Server".
    3. Now check whether "Convert Null Database Values to Default" is enabled or not.
    Regards
    Manish Tiwari

  • Problema conversion numero letra con los cheques

    cuando imprimo un cheque con valor 10 pesos la conversion sale dies con **** y debe ser 10 con 00/100

    Estimado si mensionas SAPScript estas hablando de SAP R/3 en el caso de SAP Business One se llama Layout de impresion PLD.
    En el PLD, propiedades del campo deberias de probar con lo siguiente
    Tipo fuente : Base de datos
    Tabla: Cheques para el pago
    Columna Total en Letra
    debes de marcar con un cheque donde dice: Traer Descripcion
    Saludos
    Rodolfo Castañeda

  • Convert PDF font ITCFranklinGothicStd-MdCd add extra characters with CR2008

    My customer has several reports that are used the ITCFranklinGothicStd-MdCd font.
    We've had some users tell us that their reports are showing extra characters - specifically, it inserts the letter "i" after every lower-case "f". For example, 'Ref.' becomes 'Refi' and 'For' becomes 'Fior' (there's no letter "i" inserted after the capital "F" - it only inserts after lower-case).
    We've determined that the problem is due to the fact that we're using the ITCFranklinGothicStd-MdCd font; if we use a different font, it works fine. Also, if the end-user copies text from the generated PDF and pastes it into another document, it renders the correct spelling. So for example if they copy "Fior" out of the PDF and paste it into Notepad, it shows "For" as it normally should.
    We cannot change the font, but we should solve the problem.
    Use Crystal Report 2008 and Adobe Acrobat 9.
    How can I solve?

    Hi Ivan,
    This seems like it's PDF issue. You said "So for example if they copy "Fior" out of the PDF and paste it into Notepad, it shows "For" as it normally should."
    This suggests to me that PDF is having problem rendering that font.
    Do they have a TTF version of that font?
    What happens if you export to Word format, do you see it correctly?
    You may want to post your question to Adobe's forum and possibly the the makers of the font also.
    Thank you
    Don

  • Converted Crystal Report Not Executing in Info View

    We are in the process of testing BOXI3.1 sp2 fix pack 2.8. The problem we are having was not occurring in BOXI rel2.
    After saving a Crystal Report developed with version 11.5.0.313 using CR2008, the report was run successfully within Crystal Reports.  I'm assumming that the report was converted to 2008 format due to saving the report.
    The report was then saved into the repository from Crystal Reports.  After logging into Info View the report was scheduled.  The report that normally returns results in less than 5 seconds from Crystal just hung in Info View.  After 4 hours the the task was cancelled.  Even though Info View presented that the report was "running", there ws NO thread started with the database.  This was confirmed by our DBA
    The report was rewritten from scratch using CR2008. This report was able to execute to import this report
    to Info View without error.
    John
    Edited by: JOHN DOMBROWSKI on Jul 6, 2010 11:18 AM

    Thanks for your response.
    Before I read your response, I tried tweaking my reports and was able to resolve the issue.
    Steps taken to solve the issue are the following:
    a. Value not showing one field of four (4) reports.
    Solution: I created new ones and integrate it in VB 6. The values are now showing. Tweaked on the line object properties, got a problem with the extended line but solved it by adjusting the height of the detail section.
    b. Value not showing in sub-report.
    Solution: My report used a shared variable so I can pass the condition to my sub-report. I used the new reports and just pass a query during runtime. The values in the subreport is still not showing. I added a formula and called the value in it. Values in the subreport is now showing.
    I'll try to update the crystal reports version as suggested at a later time.

  • Website upgraded to CR2008/VS2008, reptviewer-refresh hangs with a wait msg

    Crystal Report IX.2/VS2005 website app converted to CR2008/VS2008:  compiles clean, runs, but reportviewer-refresh hangs with  "Please wait while the document is being processed" message.  Can anybody suggest a solution or hypothesis?
    detail:
    I've converted a legacy Crystal IX.2/Visual Studio 2005 web-site application to Crystal 2007/Visual Studio 2008.  The compile is free of all errors and warnings.  The application operates correctly and the Crystal report-viewer screen comes up with the correct initial page of information.  But when I click a Next/Prev/First/ast icon, I get a stuck with a perpetual "Please wait while the document is being processed" message.  In addition, the time for the Reportviewer to appear with the first page of the report information is considerably slower (2X, 3X) than it is with the original VS2005/CR IX.2 website project.  We are using ODBC to Oracle 11g.
    I've searched for hits on the web and in this forum, and have tried various experiments with the registration, etc. - but nothing fixes this for me.  Can anybody suggest a hypothesis or solution?
    Thanks

    Re: "Need more info. Are you using ASP.NET or are you using classic ASP and the RDC report engine?
    Thanks Don,
    We're using ASP.Net.  The website project was originally written using Visual Studio 2005, Crystal Reports XI.2, and VB.Net. 
    The app is normally run on IIS 6.0, but I am executing the converted version in the Visual Studio 2008 debugger, i.e. without IIS.  The browser is IExplorer 8.0.
    I have copied and upgraded the project to Visual Studio 2008, Crystal Reports 2008, still VB.Net.  It compiles clean, without any error messages of warning.  When I run the app, the various report selection pages appear correctly, and the correct report-viewer initial page appears as well (although in  60 seconds versus 15 seconds originally.  The main problem is that the viewer does not refresh when I click the next or last icon, a wait message popup appears perpetually.  The data access is ODBC to Oracle 11g. 
    For comparion, below are the assembly sections of the web.config file from both the original and upgraded versions of the project.  If there is any more information that would be helpful, I can post or email it.  Thanks for looking into this,
    Robert Brandon, Raytheon
    1. Original assemblies from the VS2005/CR IX..2 project (works perfectly):
              <compilation debug="true" strict="false" explicit="true">
                   <assemblies>
                        <add assembly="CrystalDecisions.Enterprise, Version=11.5.3300.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304"/>
                        <add assembly="CrystalDecisions.Enterprise.Desktop.Report, Version=11.5.3300.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304"/>
                        <add assembly="CrystalDecisions.Enterprise.InfoStore, Version=11.5.3300.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304"/>
                        <add assembly="CrystalDecisions.Enterprise.Shared, Version=11.5.3300.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304"/>
                        <add assembly="CrystalDecisions.Enterprise.Viewing.ReportSource, Version=11.5.3300.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304"/>
                        <add assembly="CrystalDecisions.Shared, Version=11.5.3700.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304"/>
                        <add assembly="System.Data.OracleClient, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
                        <add assembly="System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
                        <add assembly="System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
                        <add assembly="System.Web, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
                        <add assembly="System, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
                        <add assembly="System.Web.Services, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
                        <add assembly="System.Drawing, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
                        <add assembly="System.Data, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
                        <add assembly="System.Xml, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/><add assembly="CrystalDecisions.CrystalReports.Engine, Version=11.5.3700.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/><add assembly="CrystalDecisions.ReportSource, Version=11.5.3700.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/><add assembly="CrystalDecisions.Web, Version=11.5.3700.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/><add assembly="CrystalDecisions.ReportAppServer.ClientDoc, Version=11.5.3300.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/>
                        <add assembly="System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
                        <add assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
                        <add assembly="System.Xml.Linq, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
                        <add assembly="System.Data.DataSetExtensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/></assemblies></compilation>
              <pages>
                   <namespaces>
                        <clear/>
                        <add namespace="System"/>
                        <add namespace="System.Collections"/>
                        <add namespace="System.Collections.Specialized"/>
                        <add namespace="System.Configuration"/>
                        <add namespace="System.Text"/>
                        <add namespace="System.Text.RegularExpressions"/>
                        <add namespace="System.Web"/>
                        <add namespace="System.Web.Caching"/>
                        <add namespace="System.Web.SessionState"/>
                        <add namespace="System.Web.Security"/>
                        <add namespace="System.Web.Profile"/>
                        <add namespace="System.Web.UI"/>
                        <add namespace="System.Web.UI.WebControls"/>
                        <add namespace="System.Web.UI.WebControls.WebParts"/>
                        <add namespace="System.Web.UI.HtmlControls"/>
                   </namespaces>
    2.  New assemblies from the upgraded VS2008/CR 2008 project (viewer does not refresh):
              <compilation debug="true" strict="false" explicit="true">
                   <assemblies>
                        <!add assembly="CrystalDecisions.Enterprise, Version=11.5.3300.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304"/>
                        <!add assembly="CrystalDecisions.Enterprise.Shared, Version=11.5.3300.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304"/>
                        <add assembly="CrystalDecisions.Enterprise.Viewing.ReportSource, Version=12.0.1100.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/>
                        <add assembly="System.Data.OracleClient, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
                        <add assembly="System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
                        <add assembly="System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
                        <add assembly="System.Web, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
                        <add assembly="System, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
                        <add assembly="System.Web.Services, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
                        <add assembly="System.Drawing, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
                        <add assembly="System.Data, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
                        <add assembly="System.Xml, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/><add assembly="System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
                        <add assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
                        <add assembly="System.Xml.Linq, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
                        <add assembly="System.Data.DataSetExtensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
                        <add assembly="CrystalDecisions.Web, Version=12.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/>
                        <add assembly="CrystalDecisions.Enterprise.InfoStore, Version=12.0.1100.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/>
                        <add assembly="CrystalDecisions.ReportSource, Version=12.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/>
                        <add assembly="CrystalDecisions.CrystalReports.Engine, Version=12.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/>
                        <add assembly="CrystalDecisions.Enterprise.Desktop.Report, Version=12.0.1100.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/>
                        <add assembly="CrystalDecisions.ReportAppServer.ClientDoc, Version=12.0.1100.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/>
                        <add assembly="CrystalDecisions.Shared, Version=12.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/>
                        <add assembly="CrystalDecisions.Enterprise.Framework, Version=12.0.1100.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/>
                   </assemblies></compilation>
              <pages>
                   <namespaces>
                        <clear/>
                        <add namespace="System"/>
                        <add namespace="System.Collections"/>
                        <add namespace="System.Collections.Specialized"/>
                        <add namespace="System.Configuration"/>
                        <add namespace="System.Text"/>
                        <add namespace="System.Text.RegularExpressions"/>
                        <add namespace="System.Web"/>
                        <add namespace="System.Web.Caching"/>
                        <add namespace="System.Web.SessionState"/>
                        <add namespace="System.Web.Security"/>
                        <add namespace="System.Web.Profile"/>
                        <add namespace="System.Web.UI"/>
                        <add namespace="System.Web.UI.WebControls"/>
                        <add namespace="System.Web.UI.WebControls.WebParts"/>
                        <add namespace="System.Web.UI.HtmlControls"/>
                   </namespaces>

  • How to create barcode in CR2008?

    According to following introduction of CR2008, it support barcode.
    http://www.sap.com/solutions/sapbusinessobjects/sme/reporting/crystalreports/featuresfunctions/index.epx
    Built-in barcode support u2013 Save design time and reduce your cost. Generate barcodes with only a few clicks of the mouse by using the new 'turn to barcode' function in the context menu. Easily convert fields to Code39 barcodes without any coding or extra steps. And benefit from additional barcode fonts available from third-party vendors.
    But I don't know how to create a Code39 barcode in CR2008.
    I cannot find any button or menu related with barcode creation.

    Hi
    Is this issue from CR designer? If so, please post to the Report Design [forum|SAP Crystal Reports;
    Note: that if the issue exists in the CR designer, the issue will exist at runtime also and needs to be resolved in the designer 1st.
    Sincerely,
    Amit

Maybe you are looking for

  • A used iPod Nano is not recognized by Windows XP

    I have an iPod Nano 2nd Gen, I have iTunes, that I cannot get to connect to my pc or iTunes and the iPod does charge(it acted like it). And when I connect the iPod to computer the computer says USB Device Not Reconized. Windows XP SP3. Formatted for

  • Why is my Macbook pro display text background yellow instead of white?

    Why is my Macbook pro display text background yellow instead of white? This problem is intermitten and when it occurs the yellow tint flickers.

  • Audio Levels on different tracks-How do I adjust them

    I have a series of inteviews on my edirol which come across fine into ST. I've moved into production and have recorded some fixes and patches to complete the interview. These were done directly into ST using a mic. This is where the problem occurs, I

  • Setting a session bean

    How do i set a session bean in my JSF action? I have defined this session bean in my faces-config.xml file: <managed-bean> <managed-bean-name>SelectedHistoryRecord</managed-bean-name> <managed-bean-class>com.myco.nps_history.model.NPSHistoryRecord</m

  • In nokia C7 integrated GPS option not found in pos...

    In nokia C7 integrated GPS option not found in positioning method Attachments: Scr000001.jpg ‏14 KB