Fijar dato a un combo con ActionScript

Hola:
Alguien me puede decir con qué instrucción puedo
cambiar el valor actual de
un combo para luego leerla con .getValue()??
He buscado la instrucción pero no la encontré.
Muchas gracias.
Federico

Hola:
Alguien me puede decir con qué instrucción puedo
cambiar el valor actual de
un combo para luego leerla con .getValue()??
He buscado la instrucción pero no la encontré.
Muchas gracias.
Federico

Similar Messages

  • [FLA CS3] Cargar sonido externo con actionscript 3.0

    Hola, ¿alguien sabe como hacer un loadSound en
    ActionScript 3.0?
    Necesito cargar un *.mp3 externo y no se que codigo usar
    Gracias

    Me autorespondo:
    var snd:Sound = new Sound(new URLRequest("audio.mp3"));
    snd.play();
    "Bitxo" <[email protected]> escribió
    en el mensaje
    news:feg6op$4ph$[email protected]..
    > Hola, ¿alguien sabe como hacer un loadSound en
    ActionScript 3.0?
    > Necesito cargar un *.mp3 externo y no se que codigo usar
    >
    > Gracias
    >

  • {Flash mx 2004} Ayuda con ActionScript, eventos y componentes

    Buenos días,
    Necesito ayuda, debido a que soy aprendiz y tengo
    problemillas, os cuento:
    Tengo 2 radioButton en un formulario que indican el sexo de
    una persona
    (masculino o femenino). Dichos radio Button los tengo
    asociados mediante la
    propiedad groupName.
    Por otro lado tengo 2 textInput no visibles, y dependiendo de
    si pinchan en
    un radiobutton u otro quiero poner visible un textInput u
    otro.
    No se si hay algún evento que detecte al instante cuando
    se pincha en un
    radiobutton o en otro.
    Se que esto es fácil, pero no se como hacerlo.
    ¿Me ayudas?
    Muchas gracias.

    Buenos días,
    Necesito ayuda, debido a que soy aprendiz y tengo
    problemillas, os cuento:
    Tengo 2 radioButton en un formulario que indican el sexo de
    una persona
    (masculino o femenino). Dichos radio Button los tengo
    asociados mediante la
    propiedad groupName.
    Por otro lado tengo 2 textInput no visibles, y dependiendo de
    si pinchan en
    un radiobutton u otro quiero poner visible un textInput u
    otro.
    No se si hay algún evento que detecte al instante cuando
    se pincha en un
    radiobutton o en otro.
    Se que esto es fácil, pero no se como hacerlo.
    ¿Me ayudas?
    Muchas gracias.

  • Ayuda con ACTIONSCRIPT 3

    Hola a todos, estoy instanciando los clips usando FOR pero al hacer clic sobre los botones no abre los vinculos xfavor espero q me puedan ayudar soy nuevo en AS3 les dejo el ejemplo www.peruhostingplus.com/duda2/
    Gracias x la respuesta q me pudieran dar......

    Yo hablo espanol un poco solamente.  Habla Ingles? If so...
    change line 12 to be...
        botones.addEventListener(MouseEvent.CLICK, vinculos);
    Do not nest your vinculos function inside the loop, move it outside, and change it as follows...
    for(var...etc){
         // botones code solamente
    function vinculos(evt:MouseEvent):void {
         switch(evt.currentTarget.nombres.text){
              case "Home":
                   navigateToURL(etc....;
                   break;
              case ""About us":
                   navigateToURL(etc...;
                   break;
              case "Client":
                   navigateToURL(etc....;
                   break;
              case ""Contact":
                   navigateToURL(etc...;
                   break;

  • Insertar combo en matrix

    Hola a todos.... el problema que tengo y espero me puedan ayudar es que tengo un  matrix de sap, pero nesesito que una de las columnas de ese matrix en ves de mostrar texto me muestre un combo con informnacion de los turnos de una empresa ....alguien me puede ayudar .. este es el codigo que estoy ocupando:
       For Li_Fila = 0 To Lo_Personal.TotalFilas - 1
                Lo_Personal.Fila = Li_Fila
                Lo_UserDataSource = Mo_Forma.DataSources.UserDataSources.Item(MatrixCambiaTurnosNumero)
                Lo_UserDataSource.Value = Lo_Personal.Empleado
                Lo_UserDataSource = Mo_Forma.DataSources.UserDataSources.Item(MatrixCambiaTurnosOriginal)
                Lo_UserDataSource.Value = Lo_Personal.TurnoDescripcion
    ''En esta columna es en la que deseo mostrar el combo.....
                __Lo_UserDataSource = Mo_Forma.DataSources.UserDataSources.Item(MatrixCambiaTurnosCambio)__
                __Lo_UserDataSource.Value =Lo_cboTunos.Selected.Description__
                Lo_grdMatrixCambiaTurnos.AddRow()
            Next
    Asi como lo tengo ahora me muestra la forma de combo con un valor pero al darle click no me despliega el resto de los valores....
    alguien sabe como puedo solucionar esto
    De antemano les agradesco ....

    Jorge Luis
    Sobre el punto que mencionas te puedo decir lo siguiente:
               ' Creando los UserDataSources para la columna tipo combo
               oMyForm.DataSources.UserDataSources.Add("udsColumna", SAPbouiCOM.BoDataType.dt_SHORT_TEXT)
                oMatrix = oMyForm.Items.Item(MyMatrix).Specific
                oColumns = oMatrix.Columns
                 ' Asignando el UserDataSources a la columna tipo combo
                 oColumns.Item("c_Columna").DataBind.SetBound(True, "", "udsColumna")
                oMatrix = oMyForm.Items.Item(MyMatrix).Specific
                oColumns = oMatrix.Columns
                ' Agregando valores al combo de la columna tipo combo
                oColumns.Item("c_Columna").ValidValues.Add("M", "Mañana")
                oColumns.Item("c_Columna").ValidValues.Add("T", "Tarde")
                oColumns.Item("c_Columna").ValidValues.Add("N", "Noche")
                oColumns.Item("c_Columna").DisplayDesc = True
               oRecordSet.DoQuery("SELECT CODE, NAME FROM [@TABLE]")
                Dim index As Integer = 1
                ' Cargando valores a las filas de la matrix
                oMatrix = oMyForm.Items.Item(MyMatrix).Specific
                While Not oRecordSet.EoF
                    oMatrix.AddRow(1)
                    oMatrix.GetLineData(index)
                    oUserDataSource = oMyForm.DataSources.UserDataSources.Item("udsColumna")
                    oUserDataSource.Value = oRecordSet.Fields.Item("CODE").Value.ToString.Trim             
                    oMatrix.SetLineData(index)
                    index += 1
                    oRecordSet.MoveNext()
                End While
    Si revisas bien este codigo primero llenas la columna que es tipo combo con sus valores posibles, puedes usar un oRecordSet para llenarla si es que los datos los tienes en una tabla y pueden varias.
    Al usar UserDataSource en una matrix debes usar las funciones GetLineData(index) y SetLineData(index).
    Bueno espero que esto aclare tus dudas, si todo sale bien seria bueno que lo comentes.
    Saludos
    George

  • Flash 8 con fecha real

    Hola a todo el grupo, estoy intentando hacer con actionscript
    que me
    visualice la diferencia de dias entre el dia (o momento
    actual) y una fecha
    concreta de un evento.
    Alguien sabe que comandos hay que utilizar para saber la
    diferencia, yo se
    hacerlo en VBa pero evidentemente no me funciona en
    actionscript
    Gracias
    Saludos desde Oviedo (Asturias)
    Juan Men�ndez
    Mastercafe S.L.
    www.mastercafe.com
    [email protected]
    Si la informaci�n recibido te ha servido indicalo con
    otro post.
    En caso de resolverlo por otros medios, indica la
    soluci�n usada
    ayudaras a otros y aprenderemos todos.
    begin 666 Juan Men�ndez.vcf
    M0D5'24XZ5D-!4D0-"E9%4E-)3TXZ,BXQ#0I..DUE;NEN9&5Z.TIU86X-"D9.
    M.DIU86X@365NZ6YD97H-"DY)0TM.04U%.DUA<W1E<F-A9F4-"D]21SI-05-4
    M15)#049%(%-,#0I414P[2$]-13M63TE#13HY.#4Q,34W.# -"E1%3#M#14Q,
    M.U9/24-%.C8R-RXU,S$N-S8T#0I!1%([2$]-13H[.U!L87IA(%!U97)T82!D
    M92!%=7)O<&$@,BP@,2U$.T]V:65D;SM!<W1U<FEA<SLS,S
    Q,3M%<W!A\6$-
    M"DQ!0D5,.TA/344[14Y#3T1)3D<]455/5$5$+5!224Y404),13I0;&%Z82!0
    M=65R=&$@9&4@175R;W!A(#(L(#$M1#TP1#TP04]V:65D;RP@07-T=7)I87,@
    M,S,P,3$],$0],$%%<W!A/48Q80T*55),.TA/344Z:'1T<#HO+W=W=RYM87-T
    M97)C869E+F-O;0T*55),.U=/4DLZ:'1T<#HO+W=W=RYM87-T97)C869E+F-O
    M;0T*14U!24P[4%)%1CM)3E1%4DY%5#IJ=6%N0&UA<W1E<F-A9F4N8V]M#0I2
    @158Z,C P-C W,#=4,3,T-C S6@T*14Y$.E9#05)$#0H`
    `
    end

    El c�digo que pones en tu ejemplo si no mal recuerdo
    es de un tutorial de
    cristalab y si funciona. Me parece ser que lycos ofrece
    soporte para php,
    pero no s� si tengan activada la funci�n mail
    en su servidor para evitar las
    pr�cticas spammers.
    Saludos, Edgar
    "javiestufa" <[email protected]> escribi� en
    el mensaje
    news:e9vi7b$b6s$[email protected]..
    > Hola foro,
    > Estoy haciendo un formulario para enviar correo desde
    una web hecha en
    > Flash 8.
    > He buscado en varios tutoriales y en alg�n que
    otro libro... y el que no
    > funciona por el que da error. Sub� los archivos a
    mi servidor gratuito,
    > pero no soporta el PHP, as� que mi consulta es:
    �alguien sabe de alg�n
    > servidor gratuito que soporte PHP? o �alguien
    tiene un peque�o espacio en
    > su servidor para comprobar que el c�digo
    funciona?
    > De todas formas os dejo el c�digo que tengo
    puesto en el archivo PHP por
    > si veis alg�n error.
    >
    > <?php
    > $sendTo = "[email protected]"; //direcci�n de
    correo
    > $subject = $_POST["asunto"];
    > $headers = "From: " . "(en pruebas)";
    > $headers = "<".$_POST["email"].">\r\n";
    > $headers = "Reply-To:" . $_POST["email"];
    > $message = $_POST["cuerpo"];
    > mail ($sendTo, $subject, $message, $headers);
    > echo "estado=Mensaje enviado :D";
    > ?>
    >
    > en el archivo Flash tengo esto:
    >
    > **(en el primer fotograma)**
    > // Variables de Envio / Recibo
    > var envio_lv:LoadVars = new LoadVars();
    > var recibir_lv:LoadVars = new LoadVars();
    >
    > // Env�o de Formulario
    > enviarMail=function(){ // es correcto
    enviarMail=function() {
    > //function enviarMail(){ // es correcto function
    enviarMail() {
    > envio_lv.asunto=titulo_txt.text;
    > envio_lv.email=mail_txt.text;
    > envio_lv.cuerpo=mensaje_txt.text;
    > envio_lv.sendAndLoad("send.php", recibir._lv, "POST");
    > };
    >
    > espero que alguien me pueda echar una mano, jeje..
    >
    > saludos,
    > ::javier.
    >
    >

  • Configuracion RSP no muestra Bases de Datos

    Estimados buenos días
    Tengo problemas en la configuración del RSP, no me esta mostrando las bases de datos, siendo que el test connection sale Ok, adjunto imagen:

    El siguiente enlace se explica cómo hacer un registro de datos utilizando la base de datos Citadel, que vienen con DSC.
    http://zone.ni.com/devzone/cda/tut/p/id/12525
    Si te gusta un registro de datos utilizando cualquier base de datos que puede utilizar Database Connectivity Kit de herramientas de funciones para crear una tabla de base de datos personalizada.
    Cordiales Saludos,
    Abel
    Abel Souza
    Engenheiro de Aplicações
    National Instruments Brasil

  • Trabajando con una msc1210evm y labview

    Hola a todos...soy nuevo en esto de las tarjetas y el uso de labview..mi consulta es la siguiente..estoy trabajando con una tarjeta msc1210evm de texas instruments y esta tarjeta trae un programa hecho en labview que sirve para adquirir datos,salvarlos.etc.Ahora,mi consulta es si con el NI-DAQ puedo adquirir datos de esta tarjeta(y de esta forma poder trabajar mas con estos datos) o solo funciona con las tarjetas fabricadas por NI??...
    Desde ya
    Muchas gracias
    Manuel Meza
    Universidad de Concepcion
    Chile

    Estimado Manuel,
    No estoy muy relacionado con la tarjeta msc1210evm sin embargo puedo ver que utiliza un ejecutable escrito en LabVIEW para sus distintas tareas. El driver NI-DAQ solo soporta tarjetas de adquisición de datos de National Instruments por lo que para poder programar la tarjeta de Texas Instruments (TI) se requeriría una librería especial. Mi recomendación es contactar directamente a TI para ver si ellos cuentan con dichas funciones.
    Saludos,
    Fernando D.
    NI
    Fernando D.
    National Instruments

  • Posicionarme en fotograma con botón

    Hola:
    Hace poco comencé con ActionScript y realicé un
    primer modelo de página
    usando este lenguaje. El SWF hace lo que yo quiero, pero
    logré mi objetivo
    con un código raro y quiero saber si se puede hacer de
    otra manera. Tengo
    los botones sobre el margen izquierdo y al presionar cada uno
    de ellos me
    posiciono en fotogramas que me muestran en el centro de la
    pantalla el texto
    que quiero. Pero logré mi objetivo poniendo la
    instrucción goto (fotograma
    tal) en los botones y colocando cuatro fotogramas luego de
    aquel en el que
    me posiciona el botón el código gotoandplay
    (fotograma tal). Por ejemplo, si
    el botón 1 me dirige al fotograma 5 con goto (5), en el
    fotograma 9 puse
    gotoandplay (fotograma 5). Así consigo lo que quiero,
    pero me parece que se
    puede hacer más simple. Intenté antes de esto con
    las instrucciones
    gotoandstop en los botones y stop en los fotogramas. Pero con
    nada que diga
    stop logro mi meta. Al presionar el último botón,
    dejan de funcionar los
    anteriores.
    ¿Cómo se hace ésto?
    Muchas gracias.
    Federico

    Muchas gracias Juan, estoy utilizando tus sugerencias y la
    propiedad
    "Visible" de los clips de película.
    Un saludo.
    Federico
    "Juan Muro `8¬}" <[email protected]>
    escribió en el mensaje
    news:[email protected]...
    > Hola Federico Ezequiel:
    > Una de las cosas buenas de los 'programas de autor' -y
    Flash lo es-, es
    > que las cosas pueden hacerse de varias maneras y lo
    realmente importante
    > es el resultado: Si funciona es que está bien, si
    no, pues es que está
    > mal. Otra cosa es que lo que estás haciendo no
    esté suficientemente
    > depurado, o no tenga unos criterios de
    implementación dinámica, pues al
    > formar parte de otro ingenio más sofisticado puede
    hacer que funcione mal.
    > Para posicionar los objetos en ActionScript no hace
    falta que metamos
    > nuevos fotogramas y repitamos el objeto en diferentes
    posiciones para
    > mandar luego el cabezal reproductor a dichos fotogramas,
    ya que existe el
    > método (movieclip._x , movieclip._y) que nos lo
    posicionan donde queramos,
    > así que:
    > Lo que debes hacer es:
    > - Convertir tu texto a movieclip y darle un nombre de
    instancia, por
    > ejemplo texto1. Al hacerlo pulsando F8 en en cuenta que
    el origen del
    > movieclip debe estar centrado.
    > - Luego en el botón pones:
    > on(release){
    > texto1._x = 400;
    > texto1._y = 300;
    > }
    > Y así te colocará el texto en el centro de una
    película de 800x600.
    > Salu2
    > `8¬}
    > Juan Muro
    > "Federico Ezequiel" <[email protected]>
    escribió en el mensaje
    > news:[email protected]...
    >> Hola:
    >>
    >> Hace poco comencé con ActionScript y
    realicé un primer modelo de página
    >> usando este lenguaje. El SWF hace lo que yo quiero,
    pero logré mi
    >> objetivo con un código raro y quiero saber si
    se puede hacer de otra
    >> manera. Tengo los botones sobre el margen izquierdo
    y al presionar cada
    >> uno de ellos me posiciono en fotogramas que me
    muestran en el centro de
    >> la pantalla el texto que quiero. Pero logré mi
    objetivo poniendo la
    >> instrucción goto (fotograma tal) en los botones
    y colocando cuatro
    >> fotogramas luego de aquel en el que me posiciona el
    botón el código
    >> gotoandplay (fotograma tal). Por ejemplo, si el
    botón 1 me dirige al
    >> fotograma 5 con goto (5), en el fotograma 9 puse
    gotoandplay (fotograma
    >> 5). Así consigo lo que quiero, pero me parece
    que se puede hacer más
    >> simple. Intenté antes de esto con las
    instrucciones gotoandstop en los
    >> botones y stop en los fotogramas. Pero con nada que
    diga stop logro mi
    >> meta. Al presionar el último botón, dejan
    de funcionar los anteriores.
    >> ¿Cómo se hace ésto?
    >> Muchas gracias.
    >>
    >> Federico
    >>
    >
    >

  • [FL8] Texto rotado

    Hola foro.... aquí va la duda....
    Desde actionscript creo un clip de película, dentro de
    éste creo con
    actionscript una caja de texto... esta caja la relleno con
    datos extraídos
    de un XML... hasta aquí todo me sale correcto, pero a
    partir de aquí es la
    duda.... también mediante actionscript hago rotar -5
    grados el clip de
    película y el texto deja de aparecer.
    Una vez leí aquí en el foro que para que eso no
    ocurriese había que hacer el
    el texto fuese también un clip de película, pero no
    logro encontrar ese
    post, así que si alguien me sabría explicar como
    solucionar este tema mil
    gracias por adelantado.... o es que realmente no se puede
    hacer que el texto
    sea visible si se rota el clip de película?
    Un saludo a todos.
    ::javier.

    Piaccere, signore.
    Salu2
    `8¬}
    Juan Muro
    "javiestufa" <[email protected]> escribió en el
    mensaje
    news:[email protected]...
    > Para ser mas preciso, tuve que eliminar lo de crear las
    cajas de texto con
    > actionscript y crearlas directamente desde flash,
    así en cada una de ellas
    > hacer la importación.
    > Gracias, Mr.Juan.
    >
    > "Juan Muro `8¬}" <[email protected]>
    escribió en el mensaje
    > news:[email protected]...
    >> perdona javi: No es caracter/Todos los caracteres,
    es incorporar/todos
    >> los caracteres, o bien eliges el juego de caracteres
    de tu fuente
    >> correspondientes al idioma que quieras, que siempre
    pesará menos. Dicha
    >> propiedad está en la ventana de propiedades del
    campo de texto dinámico.
    >> Vaya, que de lo que se trata es de que incorpores
    los contornos de la
    >> fuente.
    >> Salu2
    >> `8¬}
    >> Juan Muro
    >> "javiestufa" <[email protected]>
    escribió en el mensaje
    >> news:[email protected]...
    >>> ok juan! me acabo de perder y no tengo gps.
    >>> te explico... en el archivo .fla tengo la fuente
    como un elemento en la
    >>> biblioteca si es a eso a lo que te refieres,
    pero sigo sin ver la caja
    >>> de texto al rotar....
    >>> si no es eso.... es que no sé por
    dónde encontrar lo de carácter/todos
    >>> los carácteres, porque incluso en la fuente
    en la biblioteca le doy a
    >>> propiedades y selecciono para "texto mapa de
    bits" y tampoco es eso....
    >>> lo dicho... dónde encuentro eso que me
    dices?... dónde lo compro?
    >>>
    >>> Gracias,
    >>>
    >>> ::javier.
    >>>
    >>>
    >>> "Juan Muro `8¬}" <[email protected]>
    escribió en el mensaje
    >>> news:[email protected]...
    >>>> Javi:
    >>>> Tienes que incorporar los contornos de la
    fuente que uses. Par ello
    >>>> teniendo seleccionado el texto dinámico
    le das a caracter/todos los
    >>>> caracteres.
    >>>> Tu peli pesará más.
    >>>> Salu2
    >>>> `8¬}
    >>>> Juan Muro
    >>>>
    >>>> "CMacias" <[email protected]>
    escribió en el mensaje
    >>>> news:[email protected]...
    >>>>> No sabría que contestarte, pero al
    menos me consuela saber que no soy
    >>>>> el único
    >>>>> que trabaja en domingo 8¬(
    >>>>>
    >>>>>
    >>>>> "javiestufa"
    <[email protected]> escribió en el mensaje
    >>>>>
    news:[email protected]...
    >>>>> Hola foro.... aquí va la duda....
    >>>>> Desde actionscript creo un clip de
    película, dentro de éste creo con
    >>>>> actionscript una caja de texto... esta
    caja la relleno con datos
    >>>>> extraídos
    >>>>> de un XML... hasta aquí todo me
    sale correcto, pero a partir de aquí
    >>>>> es la
    >>>>> duda.... también mediante
    actionscript hago rotar -5 grados el clip de
    >>>>> película y el texto deja de
    aparecer.
    >>>>> Una vez leí aquí en el foro
    que para que eso no ocurriese había que
    >>>>> hacer el
    >>>>> el texto fuese también un clip de
    película, pero no logro encontrar
    >>>>> ese
    >>>>> post, así que si alguien me
    sabría explicar como solucionar este tema
    >>>>> mil
    >>>>> gracias por adelantado.... o es que
    realmente no se puede hacer que el
    >>>>> texto
    >>>>> sea visible si se rota el clip de
    película?
    >>>>>
    >>>>> Un saludo a todos.
    >>>>>
    >>>>> ::javier.
    >>>>>
    >>>>>
    >>>>>
    >>>>>
    >>>>
    >>>>
    >>>
    >>>
    >>
    >>
    >
    >

  • No data from a RFC imported in a Web Dynpro project

    Hi all,
    I'm experimentig an issue in an app that calls a RFC, the RFC is returning nothing, no message, no error, no data. I tested the RFC in R3 and is doing what is supposed to do, it was tested also in the SLD content manager and it responses well to the ping and test command.
    This is what am i doing in the component controller called Rgsm_Reload_Comp
    this in the wdDoInit:
      //@@begin javadoc:wdDoInit()
      /** Hook method called to initialize controller. */
      //@@end
      public void wdDoInit()
        //@@begin wdDoInit()
         try {
                   Z_Ep_Ess_Gral_Get_Empl_Data_Input input = new Z_Ep_Ess_Gral_Get_Empl_Data_Input();     
                   input.setP_Usrid("GRAMIREZ");
                   wdContext.nodeEmpl_Data_Input().bind(input);
                   wdContext.currentEmpl_Data_InputElement().setP_Usrid("GRAMIREZ");
                   //input.setP_Usrid(wdContext.currentEmpl_Data_InputElement().getP_Usrid().trim());
              } catch (Exception e) {
                   IWDMessageManager msgMgr = wdComponentAPI.getMessageManager();
                   msgMgr.reportException("Error al inicializar la RFC de datos personales " + e.getMessage(), true);
        //@@end
    This in the execute Bapi method called from the view:
      //@@begin javadoc:executeBapGetDataEmpl()
      /** Declared method. */
      //@@end
      public void executeBapGetDataEmpl( )
        //@@begin executeBapGetDataEmpl()
        //Traemos los datos del empleado comunicandonos con la RFC Z_Ep_Ess_Gral_Get_Empl_Data
              try {
                   wdContext.currentEmpl_Data_InputElement().modelObject().execute();
                   wdContext.nodeEmpl_Data_Output().nodeHr_Personal_Out().invalidate();
              } catch (Exception e1) {
                   msgMgr = wdComponentAPI.getMessageManager();
                   msgMgr.reportException("Error al inicializar la RFC de datos personales " + e1.getMessage(), true);
        //@@end
    And last this in the Rgsm_Reload_ComView the view controller, the action to call the execute method in the component controller:
      //@@begin javadoc:onActionfindEmployee(ServerEvent)
      /** Declared validating event handler. */
      //@@end
      public void onActionfindEmployee(com.sap.tc.webdynpro.progmodel.api.IWDCustomEvent wdEvent )
        //@@begin onActionfindEmployee(ServerEvent)
        wdThis.wdGetRgsm_Reload_CompController().executeBapGetDataEmpl();
        //@@end
    I've followed all steps in online tutorials I found, but I don't know what is wrong, if somebody can help me on this I'll really appreciate it.
    Best regards,
    Ramien.-
    Message was edited by: Ramien  Rosillo

    Hi Kranthi,
    Yes I'm pretty sure of the input parameter, because P_Userid y conformed by first letter Name and followed with complete last name I.E "RROSILLO".
    Also I've found in a note how to activate log details in the Was I set it to all instead ERROR (as default shipped). On one of log files I found an exception:
    #1.5#001083FDED3400950000008900005CE9000409021814BBD4#1135804505426#com.sap.tc.webdynpro.progmodel.context.Node#sap.com/tcwddispwda#com.sap.tc.webdynpro.progmodel.context.Node.getParentElement#J2EE_GUEST#192##cssapq01.corp_I10_95141350#Guest#0325f1a077e711dabfea001083fded34#ID\#(cssapq01_I10_09)ID1950194550DB11983431035475623143End.d41a077077e611dac48e001083fded34##0#0#Debug##Java###: retrieving parent element#1#Node(Rgsm_Reload_CompView.Empl_Data_Input.Output.Hr_Personal)#
    #1.5#001083FDED3400950000008A00005CE9000409021814CB9A#1135804505430#com.sap.tc.webdynpro.serverimpl.core.localization.AbstractResourceHandler#sap.com/tcwddispwda#com.sap.tc.webdynpro.serverimpl.core.localization.AbstractResourceHandler.getString#J2EE_GUEST#192##cssapq01.corp_I10_95141350#Guest#0325f1a077e711dabfea001083fded34#ID\#(cssapq01_I10_09)ID1950194550DB11983431035475623143End.d41a077077e611dac48e001083fded34##0#0#Info##Java###resourceBundle=, locale=, key=, string=#4#java.util.PropertyResourceBundle@70086665#en#MESSAGE_AREA_ACC_DESCRIPTION#Message Area#
    #1.5#001083FDED3400950000008B00005CE9000409021814E2BA#1135804505436#com.sap.tc.webdynpro.progmodel.context.Node#sap.com/tcwddispwda#com.sap.tc.webdynpro.progmodel.context.Node.getParentElement#J2EE_GUEST#192##cssapq01.corp_I10_95141350#Guest#0325f1a077e711dabfea001083fded34#ID\#(cssapq01_I10_09)ID1950194550DB11983431035475623143End.d41a077077e611dac48e001083fded34##0#0#Debug##Java###: retrieving parent element#1#Node(Rgsm_Reload_Comp.Empl_Data_Input.Output.Hr_Personal)#
    #1.5#001083FDED3400950000008C00005CE9000409021814EACA#1135804505438#com.sap.tc.webdynpro.clientserver.cal.ClientManager#sap.com/tcwddispwda#com.sap.tc.webdynpro.clientserver.cal.ClientManager#J2EE_GUEST#192##cssapq01.corp_I10_95141350#Guest#0325f1a077e711dabfea001083fded34#SAPEngine_Application_Thread[impl:3]_53##0#0#Path##Plain###Exiting method#
    #1.5#001083FDED3400950000008D00005CE9000409021814ECDE#1135804505439#com.sap.tc.webdynpro.services.sal.util.cache.GlobalCache#sap.com/tcwddispwda#com.sap.tc.webdynpro.services.sal.util.cache.GlobalCache.releaseStringBufferCache#J2EE_GUEST#192##cssapq01.corp_I10_95141350#Guest#0325f1a077e711dabfea001083fded34#SAPEngine_Application_Thread[impl:3]_53##0#0#Debug##Plain###released#
    #1.5#001083FDED340044000000FA00005CE90004090218A54537#1135804514898#com.sap.engine.library.monitor.mapping.ccms.Trace##com.sap.engine.library.monitor.mapping.ccms.Trace######876ae77077e411da8dc1001083fded34#SAPEngine_System_Thread[impl:5]_78##0#0#Error##Plain###RegisterNode</Applications/KM Collaboration/SCF/Service Connectors>: com.sap.engine.library.monitor.mapping.ccms.CcmsConnectorException: 95141350: Invalid configuration group for node'/Applications/KM Collaboration/SCF/Service Connectors' (APP.KM.Collaboration.SCF.ConfiguredConnectors, max. 40 characters)#
    #1.5#001083FDED34007E0000000300005CE90004090219854FA9#1135804529581#com.sap.tc.webdynpro.serverimpl.wdc.locking.LockingService##com.sap.tc.webdynpro.serverimpl.wdc.locking.LockingService.lock#J2EE_GUEST#192####ce7be36077e611da9ab6001083fded34#Thread[Finalizer,8,system]##0#0#Info##Plain###Unlocked all.#
    After reducing the size of the Rgsm_Reload_Comp.Empl_Data_Input.Output.Hr_Personal node to Rgsm_Reload_Comp.Input.Output.Hr less than 40 car.
    I get this lines in the same file (defaultTrace.0.trc)
    #1.5#001083FDED34006A0000004D00001B7900040902F81A15BF#1135808263880#com.sap.tc.webdynpro.progmodel.context.Node#sap.com/tcwddispwda#com.sap.tc.webdynpro.progmodel.context.Node.exit#J2EE_GUEST#192####c4793da077ef11daa094001083fded34#ID\#(cssapq01_I10_09)ID1641170050DB10933063800664331447End.8e7544b077ef11da91b9001083fded34##0#0#Debug##Java###: exiting#1#Node(Rgsm_Reload_Comp.Input.Output)#
    #1.5#001083FDED34006A0000004E00001B7900040902F81A1790#1135808263880#com.sap.tc.webdynpro.progmodel.context.Node#sap.com/tcwddispwda#com.sap.tc.webdynpro.progmodel.context.Node.clearElements#J2EE_GUEST#192####c4793da077ef11daa094001083fded34#ID\#(cssapq01_I10_09)ID1641170050DB10933063800664331447End.8e7544b077ef11da91b9001083fded34##0#0#Debug##Plain###Node(Rgsm_Reload_Comp.Input.Output): cleared elements#
    #1.5#001083FDED34006A0000004F00001B7900040902F81A1956#1135808263881#com.sap.tc.webdynpro.progmodel.context.Node#sap.com/tcwddispwda#com.sap.tc.webdynpro.progmodel.context.Node.exit#J2EE_GUEST#192####c4793da077ef11daa094001083fded34#ID\#(cssapq01_I10_09)ID1641170050DB10933063800664331447End.8e7544b077ef11da91b9001083fded34##0#0#Debug##Java###: exiting#1#Node(Rgsm_Reload_Comp.Input.Output.Hr)#
    #1.5#001083FDED34006A0000005000001B7900040902F81A397F#1135808263889#com.sap.tc.webdynpro.modelimpl.dynamicrfc.AiiModel#sap.com/tcwddispwda#com.sap.tc.webdynpro.modelimpl.dynamicrfc.AiiModel.JcoClientManagementWDP#J2EE_GUEST#192####c4793da077ef11daa094001083fded34#ID\#(cssapq01_I10_09)ID1641170050DB10933063800664331447End.8e7544b077ef11da91b9001083fded34##0#0#Info##Plain###successfully released IWDJCOClientConnection to pool for Model: class com.cts.rgsm.wd.Rgsm_Reload_Model - ConnectionInfo: [email protected]68#
    #1.5#001083FDED34006A0000005100001B7900040902F81A3DC9#1135808263890#com.sap.tc.webdynpro.modelimpl.dynamicrfc.AiiModel#sap.com/tcwddispwda#com.sap.tc.webdynpro.modelimpl.dynamicrfc.AiiModel.JcoClientManagementWDP#J2EE_GUEST#192####c4793da077ef11daa094001083fded34#ID\#(cssapq01_I10_09)ID1641170050DB10933063800664331447End.8e7544b077ef11da91b9001083fded34##0#0#Info##Plain###successfully released IWDJCOClientConnection to pool for Model: class com.cts.rgsm.wd.Rgsm_Reload_Model - ConnectionInfo: com.sap.mw.jco.JCO$Client@4f41c0ac#
    #1.5#001083FDED34006A0000005200001B7900040902F81A4075#1135808263891#com.sap.tc.webdynpro.services.session.Monitor#sap.com/tcwddispwda#com.sap.tc.webdynpro.services.session.Monitor#J2EE_GUEST#192####c4793da077ef11daa094001083fded34#ID\#(cssapq01_I10_09)ID1641170050DB10933063800664331447End.8e7544b077ef11da91b9001083fded34##0#0#Debug##Plain###Destroying scope for Application com.cts.rgsm.app.AppGetEmployee#
    #1.5#001083FDED34006A0000005300001B7900040902F81A42DA#1135808263891#com.sap.tc.webdynpro.services.session.Monitor#sap.com/tcwddispwda#com.sap.tc.webdynpro.services.session.Monitor#J2EE_GUEST#192####c4793da077ef11daa094001083fded34#ID\#(cssapq01_I10_09)ID1641170050DB10933063800664331447End.8e7544b077ef11da91b9001083fded34##0#0#Debug##Plain###Removing Application com.cts.rgsm.app.AppGetEmployee#
    #1.5#001083FDED34006A0000005400001B7900040902F81AA07E#1135808263915#com.sap.tc.webdynpro.clientserver.cal.ClientWindow#sap.com/tcwddispwda#com.sap.tc.webdynpro.clientserver.cal.ClientWindow.removeApplicationWindow#J2EE_GUEST#192####c4793da077ef11daa094001083fded34#ID\#(cssapq01_I10_09)ID1641170050DB10933063800664331447End.8e7544b077ef11da91b9001083fded34##0#0#Debug##Java###Removed application window with ID=, status=.#2#Id8e7544b077ef11da91b9001083fded340#true#
    #1.5#001083FDED34006A0000005500001B7900040902F81AA473#1135808263916#com.sap.tc.webdynpro.sessionmanagement#sap.com/tcwddispwda#com.sap.tc.webdynpro.sessionmanagement.ApplicationWindow.destroy()#J2EE_GUEST#192####c4793da077ef11daa094001083fded34#ID\#(cssapq01_I10_09)ID1641170050DB10933063800664331447End.8e7544b077ef11da91b9001083fded34##0#0#Info##Java###Destroyed ApplicationWindow with ID=.#1#Id8e7544b077ef11da91b9001083fded340#
    #1.5#001083FDED34006A0000005600001B7900040902F81AA719#1135808263917#com.sap.tc.webdynpro.clientserver.cal.ClientApplication#sap.com/tcwddispwda#com.sap.tc.webdynpro.clientserver.cal.ClientApplication.exit#J2EE_GUEST#192####c4793da077ef11daa094001083fded34#ID\#(cssapq01_I10_09)ID1641170050DB10933063800664331447End.8e7544b077ef11da91b9001083fded34##0#0#Info##Plain###ClientApplication destroyed ID: FNOL instanceCounter: 0#
    #1.5#001083FDED34006A0000005700001B7900040902F81AAA3F#1135808263918#com.sap.tc.webdynpro.sessionmanagement#sap.com/tcwddispwda#com.sap.tc.webdynpro.sessionmanagement.ClientApplication.exit()#J2EE_GUEST#192####c4793da077ef11daa094001083fded34#ID\#(cssapq01_I10_09)ID1641170050DB10933063800664331447End.8e7544b077ef11da91b9001083fded34##0#0#Info##Java###Destroyed ClientApplication with ID= and name=. Reason was #3#FNOL#com.cts.rgsm.app.AppGetEmployee#Exception#
    #1.5#001083FDED34006A0000005800001B7900040902F81AACA2#1135808263918#com.sap.tc.webdynpro.clientserver.cal.ClientManager#sap.com/tcwddispwda#com.sap.tc.webdynpro.clientserver.cal.ClientManager#J2EE_GUEST#192####c4793da077ef11daa094001083fded34#SAPEngine_Application_Thread[impl:3]_34##0#0#Path##Plain###Exiting method#
    Could this help?
    Ramien.-

  • Best Method For Parent/Child Form Interaction

    Can anyone advise the best way to achieve the following?
    * I have two forms
    * Form1 creates an instance of Form2
    * A user action on Form2 will affect a change on Form1
    At the moment, when Form1 creates Form2, it adds an event handler to a method within Form1;
    lookupFrame = new accountLookupFrame();
    lookupFrame.lookupTable.addMouseListener(new java.awt.event.MouseAdapter() {
                public void mouseClicked(java.awt.event.MouseEvent evt) {
                    lookupTableMouseClicked(evt);
    lookupFrame.setVisible(true);For this to work, Form2 is set for public access. Is there a better way of achieving this effect?

    Check out my ParamDialog class (added below). In particular, check out the applyOnChange method. When this is switched on, any changes to the parameter fields will generate an apply() event (ParamDialog must be overridden to specify what happens on apply)
    You should also be able to find StandardDialog by searching here; I just linked someone else to it. I think that should be all you need.
    You are welcome to use and modify this code, but please do not change the package or take credit for it as your own work
    ParamDialog.java
    ==============
    package tjacobs.ui;
    import java.awt.Dialog;
    import java.awt.Frame;
    import java.awt.GraphicsConfiguration;
    import java.awt.HeadlessException;
    import javax.swing.AbstractButton;
    import javax.swing.JButton;
    import javax.swing.JCheckBox;
    import javax.swing.JComboBox;
    import javax.swing.JComponent;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    import javax.swing.JMenuBar;
    import javax.swing.JPanel;
    import javax.swing.JPasswordField;
    import javax.swing.JTextField;
    import javax.swing.text.Document;
    import tjacobs.CollectionUtils;
    //import tjacobs.OmniListener;
    import java.awt.*;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.awt.event.InputMethodEvent;
    import java.awt.event.InputMethodListener;
    import java.beans.PropertyChangeEvent;
    import java.beans.PropertyChangeListener;
    import java.beans.VetoableChangeListener;
    import java.io.File;
    import java.io.FileInputStream;
    import java.io.FileOutputStream;
    import java.io.IOException;
    import java.util.HashMap;
    import java.util.Iterator;
    import java.util.Observable;
    import java.util.Observer;
    import java.util.Properties;
    /** Usage:
    * *      ParamDialog pd = new ParamDialog(new String[] {"A", "B", "C"});
    * pd.pack();
    * pd.setVisible(true);
    * Properties p = pd.getProperties();
    public class ParamDialog extends StandardDialog {
         public static final String SECRET = "(SECRET)";
         public static final String CHECKBOX = "(CHECKBOX)";
         public static final String BUTTON = "(BUTTON)";
         public static final String BUTTON_SOLO = "(BUTTON_BOTH)";
         //public static final String BLANK = "(BLANK)";
         public static final String COMBO = "COMBO)";
         String[] fields;
         HashMap<String, GetText> mValues = new HashMap<String, GetText>();
         private boolean mShowApplyButton = false;
         //private Observable mObservable;
         //private OmniListener mOmniListener;
         private static interface GetText {
              public String getText2();
              public void setText2(String txt);
         private static class TextField extends JTextField implements GetText {
              public void setText2(String s) {
                   setText(s);
              public String getText2() {
                   return getText();
         private static class PasswordField extends JPasswordField implements GetText {
              public void setText2(String s) {
                   setText(s);
              public String getText2() {
                   return getText();
         private static class TextButton extends JButton implements GetText {
              public TextButton(String s) {
                   super(s);
              public void setText2(String s) {
                   setText(s);
              public String getText2() {
                   return getText();
         private static class TextCheckbox extends JCheckBox implements GetText {
              public void setText2(String s) {
                   setSelected("true".equals(s));
              public String getText2() {
                   return "" + isSelected();
              public void _setText(String s) {
                   super.setText(s);
              public String _getText() {
                   return super.getText();
              public String getLabel() {
                   return "";
         private static class TextCombo extends JComboBox implements GetText {
              public String getText2() {
                   return getSelectedItem().toString();
              public void setText2(String str) {
                   setSelectedItem(str);
         public ParamDialog(String[] fields) throws HeadlessException {
              this(null, fields);
         public ParamDialog(JFrame owner, String[] fields) {
              this (null, fields, null);
         public ParamDialog(JFrame owner, String[] fields, String[] initialValues) {
              super(owner);
              setModal(true);
              this.fields = fields;
              JPanel main = new JPanel();
              JPanel buttonP = null;
              UniversalChangeListener ucl = null;
              if (applyOnChange()) {
                   ucl = new UniversalChangeListener() {
                        public void apply(AWTEvent ev) {
                             ParamDialog.this.apply();
              main.setLayout(new GridLayout(fields.length, 1));
              for (int i = 0; i < fields.length; i++) {
                   JPanel con = new JPanel(new FlowLayout(FlowLayout.RIGHT));
    /*               if (fields.endsWith(BLANK)) {
                        //add space filler
                        buttonP = null;
                        con.add(new Component(){
                             public Dimension getPreferredSize() {
                                  return new Dimension(40, 15);
                        //con.add((Component)null);
                   else
                   if (fields[i].endsWith(BUTTON_SOLO)) {
                        JLabel l = new JLabel(fields[i].substring(0, fields[i].length() - BUTTON_SOLO.length()));
                        con.add(l);
                        TextButton jb = new TextButton("...");
                        //if (ucl != null) {
                        //     ucl.addComponent(jb);
                        mValues.put(fields[i], jb);
                        con.add(jb);               
                   else
                   if (fields[i].endsWith(BUTTON)) {
                        TextButton jb = new TextButton(fields[i].substring(0, fields[i].length() - BUTTON.length()));
                        //if (ucl != null) {
                        //     ucl.addComponent(jb);
                        mValues.put(fields[i], jb);
                        if (buttonP != null) {
                             buttonP.add(jb);
                             buttonP = null;
                             continue;
                        else {
                             con.add(jb);
                             buttonP = con;
                   else {
                        buttonP = null;
                        if (fields[i].endsWith(CHECKBOX)) {
                             TextCheckbox tb = new TextCheckbox();
                             if (ucl != null) {
                                  ucl.addComponent(tb);
                             con.add(new JLabel(fields[i].substring(0, fields[i].length() - CHECKBOX.length())));
                             con.add(tb);
                             //if (initialValues != null && initialValues.length > i) {
                             //     tb.setText(initialValues[i]);
                             mValues.put(fields[i], tb);
                        else if (fields[i].endsWith(COMBO)) {
                             int idx = fields[i].lastIndexOf('(');
                             if (idx == -1) {
                                  throw new IllegalArgumentException(fields[i]);
                             String[] args = fields[i].substring(idx + 1, fields[i].length() - COMBO.length()).split(" ");
                             TextCombo combo = new TextCombo();
                             for (int j = 0; j < args.length; j++) {
                                  combo.addItem(args[j]);
                             combo.setEditable(false);
                             fields[i] =fields[i].substring(0, idx);
                             JLabel l = new JLabel(fields[i].substring(0, idx));
                             if (ucl != null) {
                                  ucl.addComponent(combo);
                             con.add(l);
                             con.add(combo);
                             //mValues.put(idx == -1 ? fields[i] : fields[i].substring(0, idx), combo);
                             mValues.put(fields[i], combo);
                        else if (fields[i].endsWith(SECRET)) {
                             PasswordField tf;
                             con.add(new JLabel(fields[i].substring(0, fields[i].length() - SECRET.length())));
                             tf = new PasswordField();
                             if (ucl != null) {
                                  ucl.addComponent(tf);
                             tf.setColumns(12);
                             con.add(tf);
                             if (initialValues != null && initialValues.length > i) {
                                  tf.setText(initialValues[i]);
                             mValues.put(fields[i], tf);
                        else {
                             TextField tf;
                             con.add(new JLabel(fields[i]));
                             tf = new TextField();
                             if (ucl != null) {
                                  ucl.addComponent(tf);
                             tf.setColumns(12);
                             con.add(tf);
                             if (initialValues != null && initialValues.length > i) {
                                  tf.setText(initialValues[i]);
                             mValues.put(fields[i], tf);
                   main.add(con);               
              this.setMainContent(main);
         public Component getComponentForField(String name) {
              return (Component)mValues.get(name);
         public boolean showApplyButton() {
              return mShowApplyButton;
         public void setActionListener(String buttonName, ActionListener listener) {
              GetText gt = mValues.get(buttonName);
              if (gt instanceof AbstractButton) {
                   AbstractButton ab = (AbstractButton) gt;
                   ab.addActionListener(listener);
         public void apply() {
         private boolean mCancel = false;
         public void cancel() {
              mCancel = true;
              super.cancel();
         public void setField(String field, String value) {
              //JTextField tf = mValues.get(field);
              GetText tf = mValues.get(field);
              if (tf != null) {
                   tf.setText2(value);
         public Properties getProperties() {
              if (mCancel) return null;
              Properties p = new Properties();
              for (int i = 0; i < fields.length; i++) {
                   p.put(fields[i], mValues.get(fields[i]).getText2());
              return p;
         public void setProperties(Properties p) {
              Iterator<Object> _i= p.keySet().iterator();
              while (_i.hasNext()) {
                   String key = (String) _i.next();
                   String value = (String) p.get(key);
                   setField(key, value);
         public void enableLoadAndSave() {
              JMenuBar bar = new JMenuBar();
              FileMenu fm = new FileMenu() {
                   public void save(File f) throws IOException {
                        FileOutputStream out = new FileOutputStream(f);
                        getProperties().store(out, null);
                   public void load(File f) throws IOException {
                        FileInputStream in = new FileInputStream(f);
                        Properties p = new Properties();
                        p.load(in);
                        setProperties(p);
                   public boolean showSaveAs() {
                        return true;
              fm.setPrevSaveFile();
              bar.add(fm);
              setJMenuBar(bar);
         public static void main (String[] args) {
              //ParamDialog pd = new ParamDialog(new String[] {"A", "B", "C"});
              //WindowUtilities.visualize(pd);
              //Properties p = getProperties(new String[] {"A","B","C"});
              //String strs[] = new String[] {"A" + BUTTON, BLANK, "B" + CHECKBOX, "C" + SECRET, "D", "E"};
              String strs[] = new String[] {"A" + BUTTON, "Z" + BUTTON, "B" + CHECKBOX, "C" + SECRET, "D", "E", "F (A B C" + COMBO};
              String initial[] = new String[] {"A", "", "true", "pass", "", ""};
              ParamDialog pd = new ParamDialog(null, strs, initial);
              ActionListener al = new ActionListener() {
                   public void actionPerformed(ActionEvent ae) {
                        System.out.println(((JButton) ae.getSource()).getLabel());
              pd.setActionListener("A" + BUTTON, al);
              pd.setActionListener("Z" + BUTTON, al);
    //          pd.addObserver(new Observer() {
    //               public void update(Observable o, Object obj) {
    //                    System.out.println("got update");
              pd.enableLoadAndSave();
              WindowUtilities.visualize(pd);
              Properties p = pd.getProperties();
              //CollectionUtils.printCollection(p);
         public static Properties getProperties(String[] fields) {
              ParamDialog pd = new ParamDialog(fields);
              //pd.setModal(false);
              WindowUtilities.visualize(pd);
              return pd.getProperties();          
         public void setShowApplyButton(boolean b) {
              mShowApplyButton = b;
         public boolean getShowApplyButton() {
              return mShowApplyButton;
         public boolean applyOnChange() {
              return false;
         public void save(File f) throws IOException {
              FileOutputStream out = new FileOutputStream(f);
              getProperties().store(out, "params");
         public void load(File f) throws IOException {
              Properties p = new Properties();
              p.load(new FileInputStream(f));
              setProperties(p);
    //     public void dispose() {
    //     super.dispose();
    //     Iterator _i = mValues.values().iterator();
    //     while (_i.hasNext()) {
    //          JComponent c = ((JComponent)_i.next());
    //          //c.addPropertyChangeListener("value", listener);
    //          //c.addVetoableChangeListener(listener2);
    //          //c.addInputMethodListener(listener3);
    //          mOmniListener.remove(c);

  • Insertar una imagen en archivo pdf desde visual basic 6.0

    Hola,
    Necesito insertar una imagen (tipo bmp o jpg) desde visual basic 6.0 en un archivo pdf.
    Tengo instalado Adobe Acrobat 6.0 y Adobe Acrobat sdk
    ¿como puedo hacerlo?
    Un saludo

    Oye Vatos Locos, yo he echo pruebas al respecto. Y los Flash funcionan mejor si están salvados en una versión anterior a la actual. Recomendación Flash 5 o 6(MX).
    Yo los he colocado hasta con ACTIONSCRIPT y funcionan perfecto.
    Carlos Garro
    DESDE CR CENTROAMERICA

  • Data base "COUNTRY, DEPARTMENT and CITY"

    Somebody has a data base completes of the world with country,
    department and
    city
    Alguien tiene una base de datos completa del mundo con
    país, departamento y
    ciudad

    That just means your ISP is there. IP address is not a
    reliable way to
    detect somebody's location.
    "Anuack Luna" <[email protected]> wrote in message
    news:emilo7$6j1$[email protected]..
    > www.ip2location.com not found correct.
    >
    > Detect my ip in E.E.U.U. My country is colombia not
    E.E.U.U.
    >
    >
    > "Lionstone" <[email protected]>
    escribió en el mensaje
    > news:emgvu4$ddl$[email protected]..
    >> Nobody calls them "departments," that's why you
    can't find them.
    >> www.ip2location.com has what you need; they call the
    state/province part
    > of
    >> the location the Region.
    >>
    >> Country USA
    >> Region Arizona
    >> City Tucson
    >>
    >>
    >>
    >> "Anuack Luna" <[email protected]> wrote in
    message
    >> news:emerbs$t0k$[email protected]..
    >> > Example
    >> >
    >> > Country E.U.
    >> > Department Arizona
    >> > City XXX
    >> >
    >> > The one that but looks like is.
    >> >
    >> >
    http://www.senderos.gov.co/servicios/suscripcion.aspx
    >> > The problem of this is that it has faults. of
    code.
    >> >
    >> > It hurts Another one is
    >> >
    >> >
    http://www.laopinion.com.co/registro.asp
    >> >
    http://www.regaliasdesdecasa.com/frames_expl/index1_esp.htm
    >> >
    >> > Account with countries and cities Apparently it
    is seen very complete
    > But
    >> > it
    >> > needs the departments
    >> >
    >> >
    >> > "Lionstone"
    <[email protected]> escribió en el mensaje
    >> > news:emc1cd$goi$[email protected]..
    >> >> Department?
    >> >>
    >> >> "Anuack Luna" <[email protected]>
    wrote in message
    >> >> news:emc0h3$fjq$[email protected]..
    >> >> > Somebody has a data base completes of
    the world with country,
    >> >> > department
    >> >> > and
    >> >> > city
    >> >> >
    >> >> > Alguien tiene una base de datos
    completa del mundo con país,
    >> > departamento
    >> >> > y
    >> >> > ciudad
    >> >> >
    >> >> >
    >> >>
    >> >>
    >> >
    >> >
    >>
    >>
    >
    >

  • Lotus notes forms 5.x 6.x

    Me gustarma saber como se puede establecer una conexisn entre una base de datos de lotus notes con los formularios de forms 6.x. Desconozco lotus y busco informacisn donde empezar a tratar este problema. Ver el tratamiento vma ODBC y si el rendimiento de forms con lotus es satisfactorio.
    Gracias. agradecerma respuestas a [email protected] o [email protected]
    Martmn.
    null

    I am having the EXACT same problem.  Please post if you find a solution.

Maybe you are looking for

  • New error message :duplicate line item

    Hi, We have to add a new error message so that when we try to add a duplicate line item in our qty contract 1.     we should not be allowed 2.     we should get a error message u201Cduplicate line item not allowedu2019 How to achieve this Thanks Arun

  • What is wrong with this elapsed time counter?

    I have been using this simple counter for a while. After unbundling the timestamp - there is always a '19' in the hours indicator. At first I was simply subtracting '19' and it worked fine. Then I ran a program for about 5 hours and the hour display

  • Using a uk power cable with a us machine

    this may be a stupid question but can I buy a power cord for my US bought macbook in the uk and plug it in without any problem? obviously it would have the little transformer box in the middle which should mean it it recognizes that I'm on UK volts n

  • Can't See New Layer Styles In PS Elements V. 6 For Mac

    Can someone tell me why I cannot see new styles after I have installed them in PS Elements V6 for Mac. I have used Elements 4 for Mac for about a year, and I've just recently bought the new version. The book says you install them the same way in V. 6

  • How to factory reset iphone4

    I found a iphone 4 or 4s im not sure...but anyway i was try to unlock it but i cant unlock it because it says to log in with the apple id but it is already under some one elses apple id...how do i get their id removed?