Error log runtime directory forms 11g

Hi does anyone know where 11 GR 2 error log is located in c:\oracle runtime error log directory

There are a lot of newspapers in the environment.  You must be more precise.

With a typical configuration, an incoming request forms will hit OSH then the forms Servlet (which in WLS_FORMS) then hit the Forms Runtime (frmweb) then if go to the db it will hit the DB client layer.  Here are a few of the many places for the main components in the path that I have just described:

OSH

C:\Oracle\Middleware\asinst_1\diagnostics\logs\OHS\ohs1

WLS_FORMS and forms Servlet

C:\Oracle\Middleware\user_projects\domains\ClassicDomain\servers\WLS_FORMS\logs

Track of forms and dump

C:\Oracle\Middleware\asinst_1\FormsComponent\forms\trace

Tags: Oracle Development

Similar Questions

  • shared files Windows server 2008 when I try to access the logged error shows try 704 form again later.

    shared files Windows server 2008 when I try to access the logged error shows try 704 form again later. While it uses this file from the last three months

    Hi Maury,

    Your question is more complex than what is generally answered in the Microsoft Answers forums. It is better suited for Windows Server on TechNet forum. Please post your question in the TechNet Windows Server 2008 R2 Networking - read only forum.

  • Oracle Forms 11g - ORA-12154: TNS error

    Well, until I post my info, I searched and searched all over Google, OTN, Experts-Exchange, etc... to try and figure this one out and I am puzzled. So here goes. I get the dreaded ' * ORA-12154: TNS: could not resolve the connect identifier specified * "error. This is my environment:

    ----------------------------------------------------------------------------------------------
    Server: Red Hat Enterprise Linux 5 version performs the following:
    Oracle Database 11g (Rel 1): 11.2.0.10
    Oracle Fusion Middleware 11g (rel. 11.1.1.2.0) Forms Server

    I can connect via SQL + no problem
    ----------------------------------------------------------------------------------------------
    Client: My Windows XP Professional PC.

    I can't TNSPING the SID of the database, no problem.
    I can connect via SQL + no problem
    I can connect via TOAD to the db without problem
    I can connect to Oracle Enterprise Manager through the web interface, no problem

    I have 2 houses Oracle (Oracle 8.0.6, Oracle 11.1.0.1) on my PC. The current House is currently the 11g one. I have my background on my PC Setup very well.

    The problem is when I try to run an example of form through the web, I created, the login prompt appears and I get my name in username/password / database SID and it is, I get the error. Of the clues as to what I should look for? Ultimately it is an application that all users will access and they should not have to worry about anything whatsoever to have installed on their PC.

    Thank you

    Keep in mind that file tnsnames.ora forms 11g is under $ORACLE_INSTANCE/config

  • Error SMTPSendFailedException: 530 authentication required when I try to send logs odi post odi 11g?

    Hello

    I used jython code below, to send mail from odi. because I created the procedure in odi called as emailodi

    I have put this code in the command on the target. Technology of jython code.

    "import smtplib

    import string

    BODY = string.join (())

    « De : %s » % ' [email protected] ',

    “To: %s” % ‘ [email protected] ',

    "Subject: %s ' % 'ODI Mail."

    “”,

    "This is a letter from ODi Studio. Thank you. Keep visiting www.DwTeam.in. "

    ), “\r\n”)

    sender = smtplib. SMTP('smtp.gmail.com',587)

    sender.set_debuglevel (1)

    sender. EHLO()

    sender. STARTTLS()

    sender. EHLO()

    sender. Login ('GMAIL_USER_NAME', 'PASSWORD')

    sender.sendmail ("[email protected]', [' [email protected]'], BODY ')

    sender. Close() '.»


    Using this code. I am able to send mail however odi what I wrote in the subject.

    My requirement is I want to send the logs odi to mail...

    for this, I tried,

    I took odiexportlog tool & this procedure above placed in the package.


    After execution of this package.

    I get the error like...


    ODI-1226: OdiSendMail step 3 fails after 1 attempt.

    ODI-1241: Oracle Data Integrator tool execution fails.

    Caused by: com.sun.mail.smtp.SMTPSendFailedException: 530 authentication required.



    Thank you and best regards,

    A.Kavya.



    Hello

    To send a that odi saves the file in Mail,

    I did like.

    1. I created a procedure (named log_data_success) to load data from oracle database (like snp_session error log table) to the text file,

    for this I used the odisqlunload tool in commnad Panel. technology tools odi.

    "OdiSqlUnload «-FILE=D:\TEXT\sucess_log.txt" "-DRIVER = oracle.jdbc.OracleDriver" «-URL=jdbc:oracle:thin:@192.0.0.0:1521:odi ' '-USER = odi ""-PASS = hpfHiT7Ql0Hd79KUseSWYAVIA ' "-FILE_FORMAT = VARIABLE" "-FIELD_SEP = |  ""-ROW_SEP = \r\n "" "-DATE_FORMAT = YYYY/MM/DD hh: mm:" "-CHARSET_ENCODING = ISO8859_1" "-XML_CHARSET_ENCODING = ISO-8859-1".

    SELECT * from snp_session

    2. After performing the procedure described above. I got the log file in the file.



    2. then, I created another procedure (named success_mail) to attach the log file above to mail.

    path of the file to log for this i have used code in jython, to this we must add the smtp address, the port, the credentials of mail, the code below

    Import smtplib, os

    enamel. MIMEMultipart MIMEMultipart import

    enamel. MIMEBase import MIMEBase

    enamel. MIMEText MIMEText import

    enamel. Utils import COMMASPACE, format

    E-mail import encoders

    FROM = ' [email protected]'

    = ' [email protected]' # must be a list

    SUBJECT = "today_odi_sucess_log_status."

    TEXT = "this is a message that is automated; "Please do not respond to this message"

    SERVER ='smtp. XXX XXXX.'

    PORT = 25

    USERNAME = "abd_cheuan".

    PASSWORD = "xxxxxxx".

    message = MIMEMultipart()

    message ["Subject"] = OBJECT

    message ['From'] = FROM

    ["message"] = to

    message. Attach (MIMEText (TEXT))

    part = MIMEBase ("application", "octet-stream")

    part.set_payload (open('D:\TEXT\sucess_log.txt', 'rb') .read ())

    Encoders.encode_base64 (part)

    part.add_header ('Content-Disposition", 'attachment; filename =' +'sucess_log.txt')

    message. Attach (share)

    s = smtplib. SMTP (SERVER, PORT)

    s.Login (username, PASSWORD)

    s.sendmail ('[email protected]','[email protected]', message.as_string ())

    s.Quit ().

    3. after that, I created a single package. I added above two procedures in the package diagram.

    4. after the execution of this package, I received the email from odi.

    its working fine.

    to resolve this problem, I used this link

    Send mail to ODI using Gmail CredentialsDW team

    Thanks & regrads,

    A.Kavya

  • Adding a new font in Web Forms 11G on UNIX

    Hello. In a piece of text in my form (forms 11g on UNIX), I need to refer to a barcode font named 39251.TTF.  On the property sheet for the item I entered 39251 font name in the font name property.  It is a font file we downloaded to UNIX in the following location /apps/oracle/product/middleware/dev_inst/reports/fonts/39251.TTF.  However when you run the web form, the police does not appear as barcode fonts. Instead, it just displays the numerical values of the issue.

    When you use fonts are not available by default on Forms 11 G (UNIX), is there something we can do from a point of view of configuration to make the fonts available for the forms to be used?

    In an Oracle Forms application, essentially for every font in your application must be a mapping for the police on the application server to a compatible Java police. If there is no mapping, Java uses a mapping 'default' - usually a constant spacing police.

    For example: If you use a non-standard TT developing - assuming that your development platform is Windows - if you want that this font used when the application is running, you will need to find a compatible font for the OS of your App Server (AS). If your ACE is Windows, simply install the font, and change the file registry.dat if the AS and Java know how to map the police during execution. If you as is UNIX or another OS, you will have to find (and likely purchase) a suitable font for this OS special until you can map the police in the registry.dat.

    You will need to do some trial and error testing to ensure that the mapping of fonts work and look the way you expect in the runtime.

    References:

    http://docs.Oracle.com/CD/E24269_01/doc.11120/e24477/configure.htm#FSDEP200

    4.7 deployment fonts, icons and Images used by Forms Services

  • Problem with forms 11g

    Hi all
    I installed 11g on Win2003 R2 Forms and the facility is clean and everything works fine. The WLS_FORMS starts without a problem on port 9001 and when I asked his status through the http://localhost:9001 / forms he answers forms listener is running. My problem is that when I try to run my simple form I created by form 11g, the browser page comes with nothing in it. It shows no error message or anything that might be useful, and it does not show the form either!
    The URL that has been set in the forms preferences > DURATION is
    http://[machine_name]:9001/forms/frmservlet?config=other
    'Other' is a section of configuration in formsweb.cfg that I created to be able to run my forms from inside the form builder
    and it contains the following:

    [others]
    separateFrame = False
    LookAndFeel = generic
    UserID = scott/TIGER
    form = module1.fmx

    Does anyone have an idea?

    My best,
    Alireza Vali

    There are many ways in which you can host the plug-in on your own server. The easiest way would be to store the installable in the same Oracle home, in a directory that is already set up with a virtual path. For example, the directory of java forms. Then simply set up your formsweb.cfg to point to your own file rather than the distance.

    Thus, for example in 11 forms, follow these steps:

    1. download the JRE 32 bit on the Java website (http://www.oracle.com/technetwork/java/javase/downloads). For example, 1.6.0_24 is as follows: jre-6u24-windows - i586.exe

    2. copy this file to: C:\Oracle\Middleware\as_1\forms\java

    3. change the configuration of your web (formsweb.cfg) to reflect the change. So, something like this:

    jpi_classid=clsid:CAFEEFAC-0016-0000-0024-ABCDEFFEDCBA
    jpi_codebase=/forms/java/jre-6u24-windows-i586.exe#Version=1,6,0,24
    jpi_mimetype=application/x-java-applet;jpi-version=1.6.0_24
    #
    # YOU NEED TO CREATE A DOWNLOAD PAGE AND STORE IT INTERNALLY FOR NON-IE USERS
    # THE SAME METHOD COULD BE USED - STORE YOUR HTML PAGE IN THE JAVA DIR OR OTHER VIRTUALLY MAPPED LOCATION
    jpi_download_page=/forms/java/myJREdownloads.htm
    

    For anyone interested to download from a remote server, here are the necessary details for other versions:

    http://www.Oracle.com/technetwork/Java/JavaSE/AutoDownload-140472.html

    All the information above applies to earlier versions of forms too.

  • Opatch error: the patch directory field must be a number.

    Hello Sir,

    I try to upgrade EBS 11i to R12, I come to this place of the document

    ·          SQL> shutdown immediate;

    · 27 apply additional 11.2.0.4 RDBMS patches

    when I apply patch 17468141 ,

    I had this error patch area directory must be a number, but I apply patches a lot before I do not had this error.

    So please help me out in this matter.

    Thank you

    Ahmed.

    Hello

    If you want to upgrade the database 11g and the application of R12 in the same window of downtime, then do not follow the document ID 881505.1 and rather follow Doc ID 1058763.1.

    If you want to upgrade to 11g and stay on 11i for awhile, you can then follow the document 881505.1. Patching must be performed while the application is down.

    The examples CD is in 6 of the fix 13390677file. When you click Download, you will get a list of 7 files.

    Download files 1,2 and 6 only.

    Download OPatch step by step:

    1. Go to the download of patches
    2. Type the patch # 6880880
    3. Enter your platform (x 86 Linux, for example)
    4. Look for a patch with the description "hotfix version 11.2.0.3.10 of Oracle software OPatch publishes 11.2.0.x (April 2015).
    5. Download the patch
    6. Unzip the file into the 11.2.0.4 oracle home (unzip qo - p6880880_112000_LINUX.zip d $ORACLE_HOME)
    7. Check the version (version opatch)

    Kind regards

    Bashar

  • Forms 11g, WebLogic and NodeManager

    Hello

    I'm relatively new to form 11g. I am doing an installation in development mode, and all works well.

    In my setup, I have to run little web - app (servlet). With iDS10g, I use Tomcat for this. Now, I try to use WebLogic. If in the WebLogic Console, I create a new 'server', listening on port 8080.

    First question, so I want to run this server, I start Node Manager (I've never used before...). Why?

    I deploy my war files and works very well.

    Now I restart WebLogic and my new 'server' stay stopped. I must launch NodeManager to run it...

    Is second question, possible that my "Server" runs automatically at startup of WebLogic? And if possible, without having to run NodeManager?

    Thank you!

    Olof wrote:

    Hello

    If in the WebLogic Console, I create a new 'server', listening on port 8080.

    First question, so I want to run this server, I start Node Manager (I've never used before...). Why?

    I deploy my war files and works very well.

    I guess here that you have created a new server managed your installation of development? Technically speaking there is not much difference between the AdminServer and the managed server; for a development environment, I would save me the hassle of 2 developing weblogic servers so I don't know what you're trying to achieve? (to be honest I really don't get the point of having 2 managed servers for execution of the Servlets 3 in production either, but that's another story)

    You can deploy your war on the AdminServer files as well - in forms 11.1.2 Oracle who done with servlets forms and reports both in development mode so there is nothing wrong with that. Instead to access your Application via Port 8080, you simply access it via port 7001 (or whatever port you used for AdminServer). No need to NodeManager – just start the AdminServer.

    If you really want to use a server managed, with that you could start it upward the script startManagedWeblogic.cmd in the same directory that the startWeblogic.cmd is located (just pass the name of the managed server). But still - I don't see why it is not necessary to use a server here.

    In production, you can choose to deploy your war AdminServer, WLS_FORMS or WLS_REPORTS file. If you configure OHS respectively it shouldn't matter much.

    see you soon

  • "a regular basis" to run a report form 11g

    I'm migration 6i c/s to 11g web app.

    I will have some difficulty in understanding how reports work now:

    In 6i, I used to code calls with run_report_object or even run_product built-ins, and the report went straight to the user's screen or printer.

    (Now I have seen that you can not send it directly to the printer, but we can live with that).

    Now I use the solutions I've read discussions like this:

    https://community.Oracle.com/thread/2184172

    My work is as follows:

    PROCEDURE Pf_Run_Report_Object (p_report_id REPORT_OBJECT) IS
    
      l_report_server varchar2(100);
      l_rep_out   VARCHAR2(100); 
      l_report_job_id VARCHAR2(100);
      l_report_status varchar2(100);
      l_wait date := sysdate + (5/1440);
      Begin
       tool_env.getvar('REPORTS_SERVER_NAME', l_report_server);
       IF l_report_server IS NULL THEN
        Raise Form_Trigger_Failure;
       END IF;
    
    
       Set_report_object_property(p_report_id, REPORT_SERVER, l_report_server);
    
      Set_Application_Property(CURSOR_STYLE, 'BUSY');
      l_rep_out := RUN_REPORT_OBJECT(p_report_id); 
    
      l_report_job_id := Substr(l_rep_out, instr(l_rep_out,'_',-1)+1);
    
      l_report_status := REPORT_OBJECT_STATUS(l_rep_out);
    
      WHILE sysdate < l_wait AND l_report_status IN ('RUNNING','OPENING_REPORT','ENQUEUED') 
      LOOP
           l_report_status := REPORT_OBJECT_STATUS(l_rep_out);
      END LOOP;
    
    
      IF l_report_status = 'FINISHED' THEN
      WEB.SHOW_DOCUMENT('/reports/rwservlet/getjobid='||l_report_job_id||'?server='|| l_report_server,'_blank');
      ELSE
      MESSAGE('Report error: '||l_report_status);
      END IF;
    
      Set_Application_Property(CURSOR_STYLE, 'DEFAULT');
    
      End Pf_Run_Report_Object;
    

    All hardcoded that names of statutes and the property url... seem like a bug ticking. Also the loop 5 min... Don't like.

    It works... but it seems so crappy that I can't believe this is the usual way to simply run a report:

    How do you call a report in form 11g?

    I would recommend that you start here:

    http://www.Oracle.com/technetwork/Developer-Tools/Forms/documentation/integrating-forms11g-and-reports11g-1905204.PDF

    Here's what happens:

    1. your forms application requests that a report (rdf, rep, etc.) is executed. (Running is not identical to present)

    2. once the report is run and the data has been retrieved, the output is stored on the file system of the server in the format that you define (html, pdf, etc.)

    3. your Forms application can now retrieve the complete report when desired using the JobID reports.  WEB. SHOW_DOCUMENT is most often used, but other extraction methods are possible.

    As to why you coded a timer in the code, I can't speak for it, but you don't need.  Yet once again, refer to the doc above and it will explain how to launch and retrieve a report.

  • Characters in numeric columns and dml error logging

    Hello

    Sometimes we get the data from the erp system which has the wrong data type for example number of year issue 99.99% of the digital time - character from time to time

    While mandatory record integrity constraints can be used and what Paris way to handle errors. dml - recipient data must have this column in the numeric form


    We could filter these records.


    With the help of 11.2.0.3


    Just wondering if any new features would allow it - don't think that put a shadow dml error logging table would work.


    Thank you

    Nordine:

    Not a sure grip.

    SQL > WITH test_data LIKE)
    2. SELECT "100" val FROM dual UNION ALL
    3. SELECT "101" val FROM dual UNION ALL
    4. SELECT '10' a2 dual UNION ALL val
    5. SELECT "1 b 03" dual UNION ALL val
    6. SELECT "a" dual UNION ALL val
    7. SELECT val '104' UNION double all the
    8 select ' #$% @* "( double val).
    9 select * from test_data
    10 where UPPER (val)! = LOWER (val);

    VAL
    -----
    10A 2
    1 b 03
    one

    @OP

    Why don't you use record to deal with incorrect data errors.  It is simple and reliable and allows you to easily connect the lines 'bad' for analysis or to beat people in the source over the head with.

    John

  • ADF_FACES-60097: for more information, see the error log of the server for an entry beginning with: ADF_FACES - Exception during the PPR, #2 60096:Server

    Hi all, I had a problem when using popup to create a new table row.

    I do like in this http://andrejusb.blogspot.com/2009/11/crud-operations-in-oracle-adf-11g-table.html

    but when I click on insert, an error stating:

    java.lang.NullpointerExeption

    ADF_FACES-60097: for more information, see the error log of the server for an entry beginning with: ADF_FACES - Exception during the PPR, #2 60096:Server

    In other cases, when showing Popup, when I clicked on cancel (popup), the display of the error as above. I don't know why?

    Can someone explain to me why. Thank you

    Check your page links if the createInsert operation is present.

    Then check that the getBindings() method returns a value and not null.

    Timo

  • How to set the default database selection forms 11g

    Hello

    In the past (Forms 10g), we could define the default database by defining userid=@dbname in formsweb.cfg.

    We migrated to form 11g.
    When we set this setting, we have the message ORA-01017 invalid username but the dbname is located in the windows of connection.
    Unfortunately, it generates an error message.

    How can we set the default database 11g-shaped?

    Thanks in advance for your answer.

    If the intermediate platform is Windows LOCAL value the name of db in default.env forms. If the platform is Unix, set TWO_TASK on db name in the default.env. This is not pre-fill the db name field, but in this place, this field may be left blank. Otherwise, you must create your own custom logon dialog box.

    Example:

    LOCAL = dbname

    Or UNIX

    TWO_TASK = dbname

    .

    Published by: Ferrante Michael (Oracle) on August 7, 2012 12:05

  • (Main) HTTP Server error log

    Hello

    I have an error as follows in the application server log

    [Mon Jul 16 05:33:05 2012] [error] [client xxx.xxx.x.xx] [ecid: 0, 1342398785:xxx.xxx.x.xx:1408:2452:537] File does not exist: c:/oracle/frhome_1/forms/java/java/awt/KeyboardFocusManager.class
    [Mon Jul 16 05:33:06 2012] [error] [client xxx.xxx.x.xx] [ecid: 0, 1342398786:xxx.xxx.x.xx:1408:2500:824] File does not exist: c:/oracle/frhome_1/forms/java/java/awt/event/MouseWheelListener.class

    Server applications (forms and Services report)_
    Version 10.1.2.0.2
    Component server HTTP of Type (Main)

    _ Windows
    Windows Server 2003

    PL. help me how to remove this error or where I can get this class file?

    I will be very thank full to you

    Kind regards
    Zafar Iqbal

    Hi zak,.

    Please check out the forum post [url https://forums.oracle.com/forums/thread.jspa?threadID=888257] Apache error log for more information on this error message.

    Thank you
    EJ

  • DML Error Logging guard MOM

    SQL> select * from v$version;
    
    BANNER
    ----------------------------------------------------------------------------
    
    Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production
    PL/SQL Release 11.2.0.2.0 - Production
    CORE    11.2.0.2.0      Production
    TNS for Solaris: Version 11.2.0.2.0 - Production
    NLSRTL Version 11.2.0.2.0 - Production
    Problem: Trying to insert into mytable and implement DML error logging. But the logging of errors never comes into play instead process fails
    with
    ORA-01843: not a valid month
    Why is this happening? I thought that can be direct-path insert is the reason behind it. But Tom Kite itself uses DPI.
    http://tkyte.blogspot.com/2005/07/how-cool-is-this.html

    Any advice?
    INSERT /*+ APPEND */  INTO mytable
    SELECT   A,
             TO_DATE(TRIM(SUBSTR(str,1, INSTR(str, ' to ') - 1)), 'Mon DD YYYY')   csd,
             TO_DATE(TRIM(SUBSTR(str, INSTR(str, ' to ') + 4, INSTR(str, '-') - (INSTR(str, ' to ') + 5))), 'Mon DD YYYY')   ced,
             B,
             C,
             D
             
      FROM   (SELECT   DISTINCT 
                       p1,
                       p2,
                       p3
              
                FROM P
                
             ) pc1 
             INNER JOIN tbl1 ON (...)
             INNER JOIN tbl2 ON (...)
             INNER JOIN tbl3 ON (...)
               
    ORDER BY A, B, C
    
    LOG ERRORS ('my errors') REJECT LIMIT UNLIMITED;

    Logging of DML errors will record errors that occur on the LMD. It is in this case on the insert.

    Your error occurs on the execution of the query (which you try to insert the result).
    The query must be valid... And apparently this isn't: for some lines the to_date seems to fail.

  • I get this error with my login form, I did, but I'm not sure if this is a problem with my php code or

    I get this error with my login form when I try to log in, but I'm not sure if this is a problem with my php code or my flex code!

    ReferenceError: Error #1069: loginsuccess property not found on string and there is no default value.
    CBC::main/checkLogin()
    CBC::main/__login_user_result()
    to flash. events::EventDispatcher / dispatchEv...
    to flash. events::EventDispatcher / dispatchEv...
    to HTTPOperation / http://www.Adobe.com/2006/Flex/MX/internal:dispatchRpcEvent ()
    to mx.rpc::AbstractInvoker / http://www.Adobe.com/2006/Flex/MX/internal:resultHandler ()
    at mx.rpc::Responder/result()
    at mx.rpc::AsyncRequest/acknowledge()
    to the DirectHTTPMessageResponder/completeHandl...
    to flash. events::EventDispatcher / dispatchEv...
    to flash. events::EventDispatcher / dispatchEv...
    at flash.net::URLLoader/onComplete()


    my php code is:


    [php] <? PHP

    define ("DATABASE_SERVER", "localhost");

    define ('DATABASE_USERNAME","f4r");

    define ('DATABASE_PASSWORD', 'cool23');

    define ('database_name', 'bignixs1');

    connect to the database

    $mysql = mysql_connect (DATABASE_SERVER, DATABASE_USERNAME, DATABASE_PASSWORD) or die (mysql_error ());

    Select the database

    @mysql_select_db (DATABASE_NAME);

    re-branded the data passed from Flex to variables

    $username = mysql_real_escape_string ($_POST ["usernam...)

    $password = mysql_real_escape_string ($_POST ["passwor...)

    Ask the database to see if the combination of username/password given name is valid.

    $query = "SELECT * from users WHERE username = 'username' AND password = 'password" ";

    $result = mysql_fetch_array (mysql_query ($query));

    start generating XML

    $output = "< loginsuccess > ';

    If the query returned true, exit < loginsuccess > Yes < / loginsuccess > other output < loginsuccess > not < / loginsuccess >

    if(!$result)

    {

    $output. = « no » ;

    } else {}

    $output. = "yes";

    }

    $output. = "< / loginsuccess > ';

    all the XML for output

    print ($output);

    ? > [/php]

    $query = "SELECT * from users WHERE username = 'username' AND password = 'password" ";

    should be

    $query = "SELECT * FROM users WHERE username = '$username' AND password =  '$password'";
    

    example of a system of working with the correct connection code flex & php to ensure:

    http://www.mattlefevre.com/viewExample.php?tut=flexPHP&proj=simple%20Login%20Application

Maybe you are looking for

  • How can I delete an e-mail personality that I no longer use

    I was the access to several different addresses that I no longer use. How can I remove these email Thunderbird personalities

  • start screen

    When I run Apple music on my iPhone 6, the start screen displays only the image of the woman with headphones.  There is nothing under the logo Apple music... it is quite dark.  I can't access anything whatsoever.  I check all my settings, and I think

  • Multiple time resets

    This photo shows the ability to reset the time spent with a button. I tried to use a loop for several buttons, but the time does not work. Is the problem with the Subvi sync? Would it not be better to subtract get time in seconds Subvi?

  • I have a problem when I turn on my computer...

    I have a problem when I turn on my computer. An error that says: "We apologize for the inconvenience, but Windows did not start successfully. A recent hardware or software change might have caused this. "And there are 3 options: start windows in safe

  • Loss of the internet

    I keep losing my internet connectivity. I use a modem and router and they work.  Almost every other day I lose the connection. Reset of the router and the modem does not work. I have to restart.  My other computer with windows 7 is connected and work