Depoliement d'une application mobile sous oracle 9i lite

hi all
pls i will explain my problem in french.
j'ai installer oracle 9i server et oracle9i lite ( mobile server) sur le même poste correctement. j'ai aussi installé le developpment kit sans problem. ensuite j'ai créé une base de donné lyno.odb dans le, repertoire OLDB40 et une DSN lyno accedant à cette base. j'y ai créé une table TASK. j'ai publier mon application dans le referentiel du mobile server avec succès.
j'ai crée un utilisateur TOM et configurér parfaitement. le problem est le suivant: à partir d'un poste de mon intranet, je veux télécharger un client "TOM". losque la synchro commence, j'ai bien contact mobile server qui fait 100% et lorsque synchrinize application data comment, je reçoie le message d'érreur suivant:" le point d'entrée de la procedure okcreateDsnEx est introuvable dans la bobliothèque de liaisons dynamique olobj40.dll".
pouvez-vous me venir en aide en m'expliquant pourquoi cet erreur et comment rectifier??
c'est la premiere fois que je déploie une apllication mobile avec webtogo.
cher Gourou je compte sur vous.
merci d'avance.
Lyno le novisssss

Publish the VB application
Create a user
Grant ACL to the user/application
Sync the client
This will create a mobile database and download the VB files to your PPC device. See Developer Guide for Windows CE for more information

Similar Messages

  • Oracle 10g Lite with ADF/BC4J Application(Offline access in Mobile )

    Hi All,
    We have the following requirement from one of our client.
    Customer Company has R12 Apps instance(which is having 10g Database APPSDB). The users will come in the morning
    and connect to the System(NEWSYSTEM) to download their daily worksheet(resides in APPSDB) to their Mobile Devices
    (Windows XP - http://www.keenzo.com/zoom.asp?zoom=3830134) and then disconnect from the system. The download of data
    should start after login into their Mobile Device Custom Application So that only their worksheet will be downloaded
    to their Mobile Device DB.
    Then they will goto their fields and review their daily worksheet in the Mobile Device application(NEW APPLICATION)
    in offline mode. And update in the application with their findings, which should be stored in the Mobile Device database(MOBILEDB).
    In the evening the uses will come and connect to the system(NEWSYSTEM) and login into their Mobile Application and
    start the upload process, then the updated data from their Mobile Database will be uploaded into APPSDB via the NEWSYSTEM.
    I checked the links, http://www.oracle.com/technology/products/lite/index.html and http://lite.us.oracle.com and I have
    got some understanding about Oracle 10g Lite. For the above requirement we are proposing the NEWSYSTEM as Oracle 10g Lite Server
    and the NEW APPLICATION as ADF/BC4J which can run in their Mobile Devices(work offline and then sync with DB).
    I have the following questions.
    1) The above proposing system is feasible?
    2) Can we develop the Mobile Application using ADF/BC4J and using that we would like to
    control the sync process from our custom application.(so that only their worksheet will come to their Mobile Device DB)
    3) If I want to have the above system,
    a) I should have Oracle 10g Lite server installed(im Unix or Windows)
    b) I should have Oracle 10g Lite client installed in a Windows PC/Laptop
    c) To get my custom application in My Mobile Device, first I have to deploy the application
    in Oracle 10g server using Oracle Mobile Server. Then I have to connect my Mobile Device to the Oracle 10g Lite server,
    and deploy the application in my Mobile Device using Oracle Mobile Manager.
    4) I would like to do a POC before start the project.
    What are all the installations I have to do in my Laptop.(Consider I am installing Oracle 10g Lite server/client, Mobile Manager in my Laptop)
    I am new to Oracle 10g Lite, correct me if any of my understanding is wrong.
    If you have any comments in the approach please add it.
    Thanks in advance.
    With Regards,
    Kali.

    1) The above proposing system is feasible?
    perfecly feasible, and actually a reasonably standard use of oracle lite
    2) Can we develop the Mobile Application using ADF/BC4J and using that we would like to
    control the sync process from our custom application.(so that only their worksheet will come to their Mobile Device DB)
    Actually two different questions here. The application code that runs on the client device can be written in any thing that will run on that type of device, and is capable of using the APIs to connect to the local database, and the other functionality like synchronisation. From the forum there look to be VB, C, java users out there (an i even believe if you wanted to, you could use forms). Main decision regarding the Platform for the application code development tends to be whatever you have the skills in.
    In terms of the sync process only downloading a particular users worksheet, this would be defined when you define the snapshots of the database tables you want to download, rather than the sync login process itself.
    For example - you have a table WORKSHEETS on the server that you want to download, it has a column EMP_NO which is the employee identifier. You would define the selection for the snapshot as
    select * from WORKSHEETS where EMP_NO=:emp_no (note the bind variable)
    when you then add users to the oracle lite application (actually the database), then you will have a parameter called EMP_NO to define with the employee number for that particular user, and this will be used automatically as the bind variable in the download.
    NOTE subsetting in this way does not need to be direct, for example things like
    select * from TASKS where id in (select task_id from user_tasks where emp_no=:emp_no) is perfectly valid
    NOTE when reading the forum and documentation, be careful of the word application. There are actually two different things to be developed, both normally called 'application'
    Within oracle lite you create an application with publication items, scripts, sequences etc. and then subscribe your users to this application. The application in this context is actually the database and synchronisation management ONLY (you can include files and code for download)
    The second application is your runtime code that has a user interface, functionality, processing and validation. This is written in some development platform, and accesses the database created above for select, insert, update etc.
    3) If I want to have the above system,
    a) I should have Oracle 10g Lite server installed(im Unix or Windows)
    YES this goes on the app server and installs a repository schema MOBILEADMIN within your database
    b) I should have Oracle 10g Lite client installed in a Windows PC/Laptop
    YES - once the server is set up, this is downloaded and set up by accessing the <server url>/webtogo/setup
    c) To get my custom application in My Mobile Device, first I have to deploy the application in Oracle 10g server using Oracle Mobile Server. Then I have to connect my Mobile Device to the Oracle 10g Lite server,
    and deploy the application in my Mobile Device using Oracle Mobile Manager.
    steps in outline are
    1) install server
    2) develop the oracle lite application (ie: database) and publish this to the mobile server (can use the development kit or java APIs for these two steps
    3) add a user with the relevant subsetting parameters
    4) set up oracle lite win32 client on the laptop from the server download
    5) synchronise using the msync utility on the client to create the databases and odbc entries
    6) develop your application code using the client database
    7) during development, then changes to database structure would be via changes and re-publish of the oracle lite application, followed by a sync to update the client database
    8) once all development is complete, the runtime application code can be bundled up into the oracle lite application if you want, and then the initial sync for live users will download the database and application code.
    4) I would like to do a POC before start the project.
    What are all the installations I have to do in my Laptop.(Consider I am installing Oracle 10g Lite server/client, Mobile Manager in my Laptop)
    You can set up a standalone server on the laptop, but better to do this on a development app server so you can use the main server development database as the data souce for the snapshot definitions (pretty easy install). there are conflicts if you try and put the oracle lite client and the mobile development kit on the same machine, but if you are familiar with java, the API development is fairly straightforward to use (i have developed applications in this, and i know only the basics of java) you do not need the MDK
    Basic for a POC i would say is to
    1) set up mobile server on development
    2) define a simple oracle ite application on two server tables. one has select * from table, and the other has select * from table where .... including bind variable. at this stage use complete refresh as the mode for simplicity
    3) publish the application, create user and define the subsetting variable
    4) set up mobile client and synchronise user. use the msql utility to interrogate the database and check the content, and do some updates 9standards SQL syntax)
    5) create simple appliaction code to conect to and read the database on the client
    6) do a sync after the updates above and check they appear in the server
    The above should be reasonably quick and proves
    a) ability to define the data you want to be sent to the users
    b) ability to create an app to manage the database running on the client device in you preferred software platform
    c) data download and upload
    after this basic POC, you can extend into defining fast refreshes to improve the efficiency of the sync process, managing the MGP process, developing a more comprehensive database and application etc. If you have complex joins between server table, you may also want to look at creating views to denormalise data and use these as the basis for the snapshots

  • Comment fermer totalement une application sous ipod touch 4g ?

    Bonjour a tous ^^ voila mon probleme :
    J'ai chercher sur internet comment arreter completement une application sous ipod touch 4g, mais je n'ai trouvé pour seule solution de laisser appuyer sur le bouton home 3 secondes. Mais cette méthodes ne marche pas pour l'ipod touch 4g (appuyer sur ce bouton 3sec ouvre le controle vocale et ne ferme pas l'application). Je voudrais donc savoir si quelqu'un a une méthode pour m'aider.
    Merci d'avance :-)

    Devil1802 wrote:
    Merci beaucoup a toi !! j'ai fais cette manip' que tu ma dit, et j'ai pu voir que j'avais enormement d'application en meme temps en tache de fond appareil photo, appstore... est-ce normal ? puis-je désactiver le fait que les applications se lances d'elles même ? et derniere question, ces applications en taches de fond utilise beaucoup de batteries ? parceque jusque aujourd'hui j'ai trouvé que mon ipod perd vite de sa batterie :s
    Je te remercis d'avance une fois encore .
    « est-ce normal ?» Oui
    « puis-je désactiver le fait que les applications se lances d'elles même ?» Non. Pas par défaut
    «et derniere question, ces applications en taches de fond utilise beaucoup de batteries ?» en générale, non.
    «parceque jusque aujourd'hui j'ai trouvé que mon ipod perd vite de sa batterie :s» Malheureusement, beaucoup de monde a cette problème de batterie, surtout avec iOS 5.0.1.  On espère qu'Apple va l'améliorer par une nouvelle version de iOS, mais c'est seulement un espoir.

  • Sending an SMS or Mail to mobiles  through Oracle

    hi,
    We have created a proc through which we can send a mail to our MailId. but my requirement is we need to send this mail as an SMS to mobiles through oracle.
    Our code goes some thing like this:
    CREATE OR REPLACE PROCEDURE "EMAIL_ALERT" (v_From VARCHAR2,
    v_Recipient VARCHAR2,
                   v_Subject VARCHAR2,
    v_Mail_Host VARCHAR2,
    v_message VARCHAR2) AS
    v_Mail_Conn utl_smtp.Connection;
    crlf VARCHAR2(2) := CHR(13)||CHR(10);
    v_Recipient1 VARCHAR2(50):='[email protected]';
    v_Recipient2 VARCHAR2(50):='[email protected]';
    v_Recipient3 VARCHAR2(50):='[email protected]';
    BEGIN
    v_Mail_Conn := utl_smtp.Open_Connection(v_Mail_Host,25);
    utl_smtp.helo(v_Mail_Conn,v_Mail_Host);
    utl_smtp.Mail(v_Mail_Conn, v_From);
    utl_smtp.Rcpt(v_Mail_Conn, v_Recipient);
    utl_smtp.Rcpt(v_Mail_Conn, v_Recipient1);
    utl_smtp.Rcpt(v_Mail_Conn, v_Recipient2);
    utl_smtp.Rcpt(v_Mail_Conn, v_Recipient3);
    utl_smtp.DATA(v_Mail_Conn,
    'Date: ' || TO_CHAR(SYSDATE, 'Dy, DD Mon YYYY hh24:mi:ss') || crlf ||
    'From: ' || v_From || crlf ||
    'Cc:' ||v_Recipient1|| crlf ||
    'Cc:' ||v_Recipient2|| crlf ||
    'Cc:' ||v_Recipient3|| crlf ||
    'Subject: '|| v_Subject || crlf ||
    'To: ' || v_Recipient || crlf || crlf ||
    'Hi,'|| utl_tcp.crlf
    ||' '||CHR(13)||
    v_message|| utl_tcp.crlf
    ||' '||CHR(13)||
    'Thanks and Regards'|| utl_tcp.crlf||
    utl_tcp.crlf
    utl_smtp.Quit(v_mail_conn);
    EXCEPTION
    WHEN utl_smtp.Transient_Error OR utl_smtp.Permanent_Error THEN
    RAISE_APPLICATION_ERROR(-20000, 'Unable To Send Mail: '||SQLERRM);
    END Email_Alert;
    Assuming the mobile number to be 9197016944444 where 91 represent the country code . please advice.
    Regards
    Edited by: vine on Apr 16, 2010 5:24 AM

    vine wrote:
    EXCEPTION
    WHEN utl_smtp.Transient_Error OR utl_smtp.Permanent_Error THEN
    RAISE_APPLICATION_ERROR(-20000, 'Unable To Send Mail: '||SQLERRM);
    END Email_Alert;Ugly. What you are doing here is taking a meaningful exception and making it meaningless. The caller knows that the send mail fail. It is after all getting a raised exception in response.
    What is important for the caller is to evaluate the error. Determine a) what happened and then b) determine what to do about it.
    The what happened is determined from the exception error code. Only, you now went and changed the meaningful application error code to -20000.
    Do not make exceptions meaningless!
    >
    Assuming the mobile number to be 9197016944444 where 91 represent the country code . please advice.Advice exactly what? You cannot send a SMS via e-mail.
    What you can do is send a specially formatted e-mail (specific recipient/subject) to a mail server, where this mail server has special code/plug-ins/processes that can reformat the e-mail as a SMS and then forward it to a SMS gateway server that can pass it to the cellular provider's network for processing and delivery.
    Do you have such a mail server? Does it interface with a SMS Gateway (or similar) server?

  • Oracle 10g Lite Mobile Devices

    Hi,
    1. Does Oracle 10g lite Support Arabic?
    2. Does Oracle 10g lite Support Windows Mobile 5.0, PPC 2005?
    3. On a PPC 2003 OS the sync worked well but after it finished the device manager started to register the device on the mobile server, there is an error raised that has invalid error code and as description 'Insufficient information to proceed',
    Help Me In That Please?

    Hi,
    ad 1: Oracle Lite should support all the charsets the "big" Oracle server supports - even unicode afaik.
    ad 2: yes, OLite supports WM5 (you have to install a patchset from metalink to enable WM5 support - try to search previous threads)
    ad 3: what is the regional settings of your device? if it's some arabic culture which is not present in default OLite installation, you'll have to make some changes into Oracle Lite system tables to support your platform. In OL10g the "platform" is defined as a combination of OS type, CPU type and current OS culture settings - for example something like "WM5 + XScale CPU + czech culture". I used something like this to replace all the japanese platforms with our language to enable support for devices wit czech locale settings:
    UPDATE mobileadmin.dm$all_platforms
    SET NAME = REPLACE(NAME, ';JA', ';CS'),
    TYPE = REPLACE(TYPE, '_JA_', '_CS_')
    WHERE NAME LIKE '%;JA';
    INSERT INTO mobileadmin.DM$LANG_MAP
    (LANG_ID, LANG_NAME, LANG_CODE, LANG_REG, CODE_PAGE)
    VALUES
    ('CS', 'Czech', 'CS', 'CZ', '1250');
    you'll than probably also need to copy some files from default US locale to your new locale directory:
    {ora10gLiteR2}\mobile_oc4j\j2ee\mobileserver\applications\mobileserver\setup\us => {ora10gLiteR2}\mobile_oc4j\j2ee\mobileserver\applications\mobileserver\setup\{your_locale}
    than the device should be able to get registered...

  • Forms 6i based application compatibility with Oracle Lite 10g

    My client is currently using an Oracle Forms 6i based application (together with a Jinitiator)
    in an application deployed to 50 countries using Oracle Lite 9i as the Mobile Application Server and Oracle 8i as the database.
    We are considering an update to Oracle 10g database and 10g Rel 3 mobile application server.
    Can anyone advise on the impact of such an application on the Forms 6i application and if there is a recommended process for the upgrade of the forms application?

    do you mean the OAS 10g Rel. 3 ? That application server has no forms-component. Only the Rel.2
    Your Forms 6i is certified against 10g databases with patch 17 and 18. Download them from the metalink.oracle.com

  • ADF Mobile on Oracle Cloud

    Hi,
    according to the unsupported features list on http://docs.oracle.com/cloud/CSJSU/feat_implement.htm#CEGBGCCE
    it states that
    - ADF Mobile
    is unsupported and there is no applicable alternative.
    What does it actually mean ? I don't see a direct relation from ADF Mobile to cloud computing.
    Does it mean that
    - ADF Mobile Apps are not allowed to consume WebServices on Oracle Cloud?
    - Oracle Cloud does not allow to deploy WebServices which could be consumed by ADF Mobile Apps?
    - Since ADF Mobile works from Version 11.1.2.3+ and Oracle Cloud is on 11.1.1.6 ADF Mobile is not supported?
    - Or is it just a documentation bug?
    Thanks for any hints,
    Andreas Koop
    PS: Also posted on ADF Forum: ADF Mobile on Oracle Cloud
    Edited by: Andreas Koop on Jan 9, 2013 10:59 PM

    Hi Andreas, thanks for raising this.
    ADFmobile as you know is a framework to built applications that run on phone/tablet devices. They can absolutely invoke/consume web services running on Oracle Cloud including web services hosted on ADF applications running in Oracle Java Cloud Service. There is a section on just this in ADFMobile documentation: http://docs.oracle.com/cd/E35521_01/doc.111230/e24475/cloud.htm#CHDEGCIF
    We will update the documentation you pointed to so we remove the confusion.
    thanks,
    Gangadhar

  • Executable d'une application à plusieurs vi

    Bonjour,
    J'ai une application à trois VIs : le programme principale qui va lancer les deux autres et les piloter (main), le vi qui fait les acquisitions (ACQ), et un autre qui les enregistre (LOG).
    Mon application fonctionne très bien en mode édition mais j'ai un problème lorque je construit le .EXE, j'ai mon vi acquisition qui ne se lance pas et je comprend vraiment pas pourquoi, j'ai pourtant bien placé mes VIs ACQ et LOG dans la catégorie "toujours inclus" ...
    Je suis un peu perdu là, es ce que quelqu'un a déjà eu ce problème ?
    Merci d'avance
    Résolu !
    Accéder à la solution.

    Bonjour David,
    Je comprends mieux votre problème.
    Je vous invite à essayer la solution de Michael.
    Si cela ne fonctionne pas:
    Je souhaiterai vous poser quelques questions:
    - Avez-vous fait tout votre développent sous LabVIEW 2012 ou avez-vous utilisé une version antérieur à un moment.
    - Est-ce que un SubVI (sur 2) se lance ou aucun des deux ?
    - Comment faites-vous l'appel de vos fonctions ? Pouvez vous joindre le main à votre post?
    Ce qu'on peut essayer:
    -Pouvez vous inclure vos subVI dans un répertoire lors de votre développement (dans l’explorateur de projet, utiliser le même répertoire), vous assurer que cela fonctionne, et ajouter tout le répertoire dans "Toujours inclus" et non que les .vi.
    Pouvez-vous lire ces documents: Il y a des infos sur les appels dynamiques, comment imposer un chemin pour les SubVIs à son exécutable et comment créer un .LIB en incluant tous les VIs utilisés.
    http://www.ni.com/tutorial/3929/en/
    http://digital.ni.com/public.nsf/websearch/3F27220C34DDA65386256F9000771289?OpenDocument
    http://digital.ni.com/public.nsf/allkb/B48DF302E7A89E6686256DB1005AF97E?OpenDocument
    Cordialement,
    Jovan N. - Application Engineering

  • Programmer une carte arduino sous labview h

    j'ai la carte arduino pour l'acquisition des données je veux lire la valeur du Pin 7 et cette valeur c'est elle qui  va contrôler le event structure ç a d suite a cette valeur je veux soit lancer le GET Time on soit le Get Time off
    la newVal que j'ai doit se référer sur la valeur lue dans le Pin 7
    j'ai ci_joint une image pour bien comprendre 
    merci de vérifer et de m'apporter votre aide
    Pièces jointes :
    fgv_elapsedtime_format.vi ‏17 KB
    essai3.vi ‏33 KB
    sans lifa.vi ‏27 KB

    Bonjour habibahamri,
    Merci de ne pas prendre les gens pour des columbidés. 6 posts pour le même sujet c'est (vraiment) beaucoup. C'est de plus complètement contreproductif dans la mesure ou tout le monde ne lis pas tous les posts et les réponses peuvent se superposer.
    Les sujets incriminés sont:
    http://forums.ni.com/t5/Discussions-au-sujet-des-autres/programme-labview/td-p/2415808
    http://forums.ni.com/t5/Discussions-au-sujet-des-autres/labview/td-p/2414336
    http://forums.ni.com/t5/Discussions-au-sujet-des-autres/labview/td-p/2414328
    http://forums.ni.com/t5/Discussions-au-sujet-des-autres/Re-programmer-une-carte-arduino-sous-labview...
    http://forums.ni.com/t5/Discussions-au-sujet-des-autres/Programmer-une-carte-arduino-sous-labview/td...
    De plus, quand on demande de l'aide, on essaie de se montrer poli: on dit bonjour dans son premier post et on remercie les participants qui prennent de leur temps pour aider (je fais notemment références aux réponses presque rudes formulés à Bastauss qui a essayé de vous aider en vous programment un VI d'exemple).
    Cordialement
    (signé le redresseur de tort)
    Florian Abry
    Application Engineer Group Leader
    NI Germany

  • Execution d'une tache NIDAQmx issue de Max dans une application c++

    Bonjour,
    Je cherche à exécuter des taches NIDAQmx définies dans l'utilitaire Measurement & Automation Explorer dans une application développée avec VisualStudio 2010, en C++ MFC.
    La tache crée, qui génère un sinus à 50Hz, utilise le port OI1 d'une carte NI6221.
    Quand je l'execute sous MAX, mon signal est bien généré.
    Pour gérer les tache dans mon application, j'utilise les fonctions suivantes :
    DAQmxLoadTask : je récupère bien un handle de la tache MAX
    DAQmxStartTask : la fonction s'execute sans erreur mais en fait n'est pas démarrer car je n'ai aucun signal sur ma sortie
    Est-ce que quelqu'un a déja fait ce genre de chose et peut m'expliquer mon erreur ?
    Merci d'avance pour vos réponse.

    Bonsoir,
    Est-ce que votre programme fait appel à un DAQmxWrite? La tâche peut tout à fait être active sans pour autant que vous ne lui ayez envoyé de données à génerer.
    Par ailleurs, de quel type de génération s'agit-il? Software timed, c'est votre logiciel qui est en charge de fournir "a temps" les échantillons à écrire en sortie. Hardware timed, votre logiciel doit fournir régulièrement de quoi alimenter le driver en échantillons à générer, mais c'est la carte qui cadence le boulot.
    Cordialement,
    .mrLeft{float:left} .mrInfo{border-left:solid 1px #989898;font-size:x-small;color:#989898}
    Mathieu R.  
      CTD - Certified TestStand Developer / Développeur TestStand Certifié  
      CLAD - Certified LabVIEW Associate Developer  

  • Bonjour mon iPhone me mais tout en petit sur la gauche de l'écrans des que j'ouvre une application coment faire pour retourné a la normale sent faire une restauration

    bonjour mon iPhone me mais tout en petit sur la gauche de l'écrans des que j'ouvre une application coment faire pour retourné a la normale sent faire une restauration

    Merci jmlevy de te pencher sur mon problème.
    Voilà une photo de mon panneau page :
    Puis une autre d'une page qui ne ressemble plus à rien après changement de pagination:
    Voici une ancienne page 28 devenue page 29. Fantastique, non ?
    On peut voir :
    Que mes blocs sont décalés par rapport à la maquette
    que le bloc noir de la page 28 déborde sur la page 29.
    Que mon bloc de texte est perturbé par l'ajout sous-jacent d'une page de maquette
    que ma pagination a conservé les attributs d'une page pair (numérotation à gauche) alors qu'elle est passée impaire.
    J'aurai considéré comme normal que mon ancienne p.28 se soit déplacée en page impaire avec le bloc texte bien placé ET avec les attributs de page (liés au gabarit, tels que pagination, filets, bas de page roulants) modifiés automatiquement. Or il n'en est rien.
    Tu me demandais des éclaircissements par rapport à "J'importe mes gabarits dans le document au fur et à mesure de la construction du livre et je libère les éléments de gabarit afin de pouvoir couler le texte et disposer l'icono. Lorsque c'est fait, je ne retourne pas dans le mode page d'InDesign. J'attaque la page suivante." Voici, plus en détails ce que je fais au moment où je monte une nouvelle page. Mes gabarits ont été  préparé en amont.
    J'ajoute une page au document (ex : une page de texte)
    je lui confère le gabarit qui va avec (ex : C-présentation ch1, cf plus haut)
    je libère les éléments de gabarits pour pouvoir couler le texte et disposer les images.
    quand ma page est finie je recommence l'étape 1.
    Est-ce que c'est à l'étape 3 que je me plante ?
    Est-ce qu'il y aurait d'autres explications à ce malheureux schmilblick ?
    Merci d'avance.

  • Probleme de resolution d'écran sous oracle form

    salut
    j'ai une application oracle dev6i mais mon problème que je n'arrive pas a changer la resolution des ecran en fonction de la machine sur laquelle le programme tourne.
    merci de me venir en aide.

    Hello,
    What do you mean by "change the resolution" ?
    Do you know any application that allows you to change the resolution ?
    Don't you meen, adapt the size of the Forms screen to the current resolution ?
    if yes, you can use the following code:
    Declare
      LN$width pls_integer ;
      LN$height pls_integer ;     
    Begin
      LN$width := Get_Application_Property( DISPLAY_WIDTH ) ;
      LN$height := Get_Application_Property( DISPLAY_HEIGHT ) ;     
      Set_Window_Property( FORMS_MDI_WINDOW, width, LN$width ) ;
      Set_Window_Property( FORMS_MDI_WINDOW, height, LN$height ) ;
    end;Francois

  • HT1925 When I try to uninstall my itunes I go to my control panel to remove the Apple "Application, Mobile Device, software support" then i get a pop up saying that "the feature you are trying to use is on a network resource that is unavailable" I cant fi

    When I try to uninstall my itunes I go to my control panel to remove the Apple "Application, Mobile Device, software support" then i get a pop up saying that "the feature you are trying to use is on a network resource that is unavailable" I cant find it. Its preventing me from re installing the new itunes.

    (1) Download the Windows Installer CleanUp utility installer file (msicuu2.exe) from the following Major Geeks page (use one of the links under the "DOWNLOAD LOCATIONS" thingy on the Major Geeks page):
    http://majorgeeks.com/download.php?det=4459
    (2) Doubleclick the msicuu2.exe file and follow the prompts to install the Windows Installer CleanUp utility. (If you're on a Windows Vista or Windows 7 system and you get a Code 800A0046 error message when doubleclicking the msicuu2.exe file, try instead right-clicking on the msicuu2.exe file and selecting "Run as administrator".)
    (3) In your Start menu click All Programs and then click Windows Install Clean Up. The Windows Installer CleanUp utility window appears, listing software that is currently installed on your computer.
    (4) In the list of programs that appears in CleanUp, select any Apple Software Update entries and click "Remove", as per the following screenshot:
    (5) Quit out of CleanUp, restart the PC and try another iTunes install using an iTunesSetup.exe (or iTunes64Setup.exe) downloaded from the Apple Website:
    http://www.apple.com/itunes/download/
    Does it go through properly this time?

  • Je souhaite convertir une application Flash écrite en Action Script 2.0 en 2007 ! par une application Flash plus récente sans ré-écrire le code. Merci pour votre aide

    Bonjour, Voilà une question classique déjà posée. Je viens de sortir une application rangée dans mes tiroirs écrites de code  il y a plus de 8 ans, très coûteuse à réécrire (en temps et en coût) !
    Merci pour votre aide.

    What do you want to convert the file to?  If it is an AS2 file and you want it to remain an AS2 file then there is no need to convert it since it is what you want it to be. (It is possible the translator did a terrible job with translating your posting to English).

  • Running an application developed in Oracle Forms and reports

    Hi Folks,
    Does anyone know or have an opinion on whether an application developed in Oracle Forms/Reports can run on Oracle Cloud as it is a supported product?
    It is also possible to 'mix' adf and forms , but on the cloud.....?
    Thanks
    Alex

    Hi,
    Oracle supports three types of cloud deployments
    (Private) where by applications runs on premises fully controlled by customers.
    (Public) where by applications runs at oracle data centers and managed by dedicated team of experts.
    (Hybrid) partial applications runs on premises "Customer Site" and rest on oracle public cloud.
    in your scenario of using forms/reports and ADF , i personally recommend to have your private cloud as the forms / reports are the previous generation of oracle development tools , everything in oracle public cloud is now based on Oracle fusions and fusion middle ware where the development tools are Jdeveloper , XML , etc...
    Regards,
    Awad El-Sidiq.
    Edited by: user5314604 on Mar 31, 2013 2:15 PM

Maybe you are looking for

  • Setting Quota zero

    Hi, Sorry for this question, I want to investigate something, but don't have the required system privileges to do so. Maybe you could help me out? select * from v$version where rownum = 1; BANNER                                                       

  • Cannot burn DVD in Premier Elements 10 longer than 1 hour in Length

    I cannot figure out why I have to limit my DVD projects to no more than 1 hour in PE 10.  As long as I keep the timeline to 1 hour or less, the DVD burns just fine.  If I try a project over 1 hour - 1 hour, 10 minutes for example - it compiles everyt

  • Why do you always have to hold onto MENU AND PAUSE??

    Every single problem takes menu and pause... but in the instruction everything that relates to a problem in the ipod is just simple answer not like go to your local apple store and return it becasue menu and pause things never seems to work...

  • Version D and Version A  In Business Content

    This was an Error I got ... You wanted to generate an object with the name '0FI_AA_11                     NW1CLNT000' (in transport request 0FI_AA_11                     NW1CLNT000) of type 'Transfer Rules' (TLOGO). This is, however, not available in

  • Pavilion s3240.sc TV tuner!

    I have a HP Pavilion Slimline s3240.sc, with integrated: ASUSTeK LNA Tiger Hybrid TV Tuner. - Combined with a MAXIMUM DA 1200 Indoor TV antenna "For DVB-T, VHF and UHF". -> The antenna works great when I tested with a television. But I am not able to