Using form causes slight shift in firefox

Hi, a page with a form on it seems to shift slightly to the left in firefox but not in ie. http://www.goldenumber.co.uk/john_carter/contact.html if you click between home and contact you will see what I mean. Any ideas? Some of the other pages shift slightly as well.
Many thanks, Matt.

Thanks for that. I have converted the pages to use the layout grid and that seems to work. I have one more question which I will post in a separate thread, but... Is there a way when I am viewing the site to force it to display in a particular font? i.e. I have made a font family headed by Franklin Gothic Demi but would like to know what it looks like for visitors who don't have that font.
Thanks again, Matt.

Similar Messages

  • After closing Firefox, at times I have to use task manger to shut down firefox.exe*32 at times,

    As my title says, after closing Firefox, at times I have to use task manger to shut down firefox.exe*32 at times. I've left it running for up to 5 minutes to see if it shuts down/closes and it doesn't. I've also reloaded Firefox. My system is a Lenovo H210 with 3 gig of Ram and no added video card, the OS is Windows 7 Ultimate 64 bit SP1. I realize the memory is on the small side. I did try to update VLC player this morning to V 2.1.2 but it fails to run after instal due to file errors.
    Bill

    Hello,
    '''Try Firefox Safe Mode''' to see if the problem goes away. Safe Mode is a troubleshooting mode, which disables most add-ons.
    ''(If you're not using it, switch to the Default theme.)''
    * On Windows you can open Firefox 4.0+ in Safe Mode by holding the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * On Mac you can open Firefox 4.0+ in Safe Mode by holding the '''option''' key while starting Firefox.
    * On Linux you can open Firefox 4.0+ in Safe Mode by quitting Firefox and then going to your Terminal and running: firefox -safe-mode (you may need to specify the Firefox installation path e.g. /usr/lib/firefox)
    * Or open the Help menu and click on the '''Restart with Add-ons Disabled...''' menu item while Firefox is running.
    [[Image:FirefoxSafeMode|width=520]]
    ''Once you get the pop-up, just select "'Start in Safe Mode"''
    [[Image:Safe Mode Fx 15 - Win]]
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one. Please follow the [[Troubleshooting extensions and themes]] article for that.
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    ''When you figure out what's causing your issues, please let us know. It might help other users who have the same problem.''
    Thank you.

  • How to FTP a file from client machine to database server using forms 10g

    Hi
    I want to ftp a file from a client machine to the database server machine using forms 10G (or PL/SQL).
    could you please tell me how can I do this
    Regards

    hi
    How to get up and running with WebUtil 1.06 included with Oracle Developer Suite 10.1.2.0.2 on a win32 platform
    Solution
    Assuming a fresh "Complete" install of Oracle Developer Suite 10.1.2.0.2,
    here are steps to get a small test form running, using WebUtil 1.06.
    Note: Oracle_Home is used as an alias for your real oDS ORACLE_HOME.
    Feel free to copy this note to a text editor, and do a global find/replace on
    Oracle_Home with your actual value (no trailing slash). Then it is easy to
    copy/paste actual commands to be executed from the note copy.
    1) Download http://prdownloads.sourceforge.net/jacob-project/jacob_18.zip
    and extract to a temporary staging area. Do not attempt to use 1.7 or 1.9.
    2) Copy or move jacob.jar and jacob.dll
    C:\webutile is the folder where you extracted Jacob, and will end in ...\jacob_18
    cd C:\webutile
    copy jacob.jar Oracle_Home\forms\java\.
    copy jacob.dll Oracle_Home\forms\webutil\.
    The Jacob staging area is no longer needed, and may be deleted.
    3) Sign frmwebutil.jar and jacob.jar
    Open a DOS command prompt.
    Add Oracle_Home\jdk\bin to the PATH:
    set PATH=Oracle_Home\jdk\bin;%PATH%
    Sign the files, and check the output for success:
    Oracle_Home\forms\webutil\sign_webutil Oracle_Home\forms\java\frmwebutil.jar
    Oracle_Home\forms\webutil\sign_webutil Oracle_Home\forms\java\jacob.jar
    4) If you already have a schema in your RDBMS which contains the WebUtil stored code,
    you may skip this step. Otherwise,
    Create a schema to hold the WebUtil stored code, and privileges needed to
    connect and create a stored package. Schema name "WEBUTIL" is recommended
    for no reason other than consistency over the user base.
    Open Oracle_Home\forms\create_webutil_db.sql in a text editor, and delete or comment
    out the EXIT statement, to be able to see whether the objects were created witout
    errors.
    Start SQL*Plus as SYSTEM, and issue:
    CREATE USER webutil IDENTIFIED BY [password]
    DEFAULT TABLESPACE users
    TEMPORARY TABLESPACE temp;
    GRANT CONNECT, CREATE PROCEDURE, CREATE PUBLIC SYNONYM TO webutil;
    CONNECT webutil/webutil@rcci
    @Oracle_Home\forms\create_webutil_db.sql
    -- Inspect SQL*Plus output for errors, and then
    CREATE PUBLIC SYNONYM webutil_db FOR webutil.webutil_db;
    Reconnect as SYSTEM, and issue:
    grant execute on webutil_db to public;
    5) Modify Oracle_Home\forms\server\default.env, and append Oracle_Home\jdk\jre\lib\rt.jar
    to the CLASSPATH entry.
    6) Modify Oracle_Home\forms\server\formsweb.cfg insde [default] add :
    archive_jini=frmall_jinit.jar,frmwebutil.jar,jacob.jar
    archive=frmall.jar
    also add :
    [webutil]
    WebUtilLogging=off
    WebUtilLoggingDetail=normal
    WebUtilErrorMode=Alert
    WebUtilDispatchMonitorInterval=5
    WebUtilTrustInternal=true
    WebUtilMaxTransferSize=16384
    baseHTMLjinitiator=webutiljini.htm
    baseHTMLjpi=webutiljpi.htm
    baseHTML=webutilbase.htm
    archive_jini=frmall_jinit.jar
    WebUtilArchive=frmwebutil.jar,jacob.jar,f90all.jar
    archive=frmwebutil.jar,f90all.jar
    lookAndFeel=oracle
    7) Modify Oracle_Home\forms\server\webutil.cfg and add :
    transfer.database.enabled=TRUE
    transfer.appsrv.enabled=TRUE
    8) Start the OC4J instance
    9) Start Forms Builder and connect to a schema in the RDBMS used in step (4).
    Open webutil.pll, do a "Compile ALL" (shift-Control-K), and generate to PLX (Control-T).
    It is important to generate the PLX, to avoid the FRM-40039 discussed in Note 303682.1
    If the PLX is not generated, the Webutil.pll library would have to be attached with
    full path information to all forms wishing to use WebUtil. This is NOT recommended.
    10) Create a new FMB.
    Open webutil.olb, and Subclass (not Copy) the Webutil object to the form.
    There is no need to Subclass the WebutilConfig object.
    Attach the Webutil.pll Library, and remove the path.
    Add an ON-LOGON trigger with the code
    NULL;
    to avoid having to connect to an RDBMS (optional).
    Create a new button on a new canvas, with the code
    show_webutil_information (TRUE);
    in a WHEN-BUTTON-PRESSED trigger.
    Compile the FMB to FMX, after doing a Compile-All (Shift-Control-K).
    11) Under Edit->Preferences->Runtime in Forms Builder, click on "Reset to Default" if
    the "Application Server URL" is empty.
    Then append "?config=webutil" at the end, so you end up with a URL of the form
    http://server:port/forms/frmservlet?config=webutil
    12) Run your form.

  • Occasional ora-6502 using forms 6i and 10g

    Hi all.
    We have been experiencing some weird and unexpected ora-6502 errors in some of our forms 6i modules running against 10g (rel 1 or 2).
    Forms modules are correctly functioning and for some reason, one day an ora-6502 error suddenly pops up.
    Now the weirdest thing is that after you put some messages on the trigger, so you can track down where the error is coming from, it disappears.
    I know that this may sound hard to believe, but it has happened several times. All we do is put some message built in, recompile all, and the error is gone (for a while).
    So my questions are:
    - Is this a known issue beween forms 6i and 10g Db?.
    - Is there a patch on Metalink ( we use Forms [32 bits] Versión 6.0.8.26.0 (Producción))
    - A workaround?
    and most important
    - Have anyone been exposed to a similar situation?
    Regards, Luis ...!

    Now the weirdest thing is that after you put some messages on the trigger, so you can track down where the error is coming from, it disappears.Sounds like the form has not been "clean compiled" against the server on which it is running. Try a "Compile All", which causes all previously compiled program units to be compiled fresh.
    Or even better, clean out all the compiled code from your fmb before compiling the fmb on the server where it runs.
    See this topic:   Re: Why does this happen - find ';', replace with ';'?

  • The sharepoint my company uses no longer works properly with firefox, only a blank page appears, is there a fix for this?

    Hello,
    We currently use Microsoft SharePoint Server 2010 and it doesn't seem to be compatible with the latest version of Firefox (33). When I try to open a sharepoint page, only a blank page appears. I do not get any error messages. The sharepoint works with other browsers, such as Chrome.
    Is there a work around available so that we may continue to use Firefox?
    Thank you!

    Do either of these typical troubleshooting steps make any difference?
    When you have a problem with one particular site, a good "first thing to try" is clearing your Firefox cache and deleting your saved cookies for the site.
    (1) Bypass Firefox's Cache
    Use Command+Shift+r to reload the page fresh from the server.
    Alternately, you also can clear Firefox's cache completely using:
    "3-bar" menu button (or Firefox menu) > Preferences > Advanced
    On the Network mini-tab > Cached Web Content : "Clear Now"
    If you have a large hard drive, this might take a few minutes.
    (2) Remove the site's cookies (save any pending work first). While viewing a page on the site, try either:
    * right-click and choose View Page Info > Security > "View Cookies"
    * (menu bar) Tools > Page Info > Security > "View Cookies"
    * click the globe or padlock to the left of the address in the address bar > More Information > "View Cookies"
    In the dialog that opens, you can remove the site's cookies individually.
    Then try reloading the page. Does that help?
    In case one of your extensions is involved, could you test the page in Firefox's Safe Mode? That's a standard diagnostic tool to deactivate extensions and some advanced features of Firefox. More info: [[Troubleshoot Firefox issues using Safe Mode]].
    You can restart Firefox in Safe Mode using either:
    * "3-bar" menu button > "?" button > Restart with Add-ons Disabled
    * Help menu > Restart with Add-ons Disabled
    Not all add-ons are disabled: Flash and other plugins still run
    After Firefox shuts down, a small dialog should appear. Click "Start in Safe Mode" (''not'' Reset).
    Any difference?

  • Combining PDF Form causes fields to disappar, Acrobat to crash when trying to edit combined PDF

    I have a 10 page PDF form that I can edit normally.  I combine it using the Combine Files wizard.  The resulting PDF has several fields disappear upon saving, and causes Acrobat to crash every time if I try to edit the form.  I can combine the original PDF form with no other document, and the error still occurs.  I have several similarly named fields, such as Name#1 and Name#2, and it seems that all those fields disappear after going through the Combine Files process.  I can open the resulting PDF, and fill in the remaining fields, but attempting to edit the form causes Acrobat to crash each and every time.
    I have used this process before, with no problems, but it fails every time on this form.
    This is the error in the Event Viewer: Faulting application Acrobat.exe, version 10.0.0.396, time stamp 0x4cc5ebc0, faulting module AcroForm.api, version 10.0.0.396, time stamp 0x4cc5f5cc, exception code 0xc0000005, fault offset 0x0012d905
    This is using Acrobat X Standard and Pro on XP Pro and Vista.
    If I open the original PDF, and insert a new PDF as new pages, that works fine.
    I updated Acrobat to the latest patch, problem remains.  I don't know how to resolve this.

    Did a little more testing and this is what I found. If I use the "Insert from file" feature to combine a cover sheet plus 3 AcroForms (inserting each file one by one), eveyrthing appears to work.  However, if I use the "Combine via Acrobat" feature I run into the issue of fields disappearing once combined.
    I shoudl also add that perhaps the issue had something to do with the fact that I initally produced the cover page pdf via Photoshop "save as PDF". Perhaps that contirbutted to the structure issue despite it being a PDF...maybe under the hood things are structured differently.  Who knows.
    Just FYI for others: What appears to be working is using the "Insert from file" option vs "Combing via Acrobat". Also, if you are including a non-AcroForm PDF, be sure it a traditional vs. saving as a PDF from Photoshop.
    Alot of this may be a fluke, but it seems to fix my issue - for now.

  • Store and Display doc/pdf files in the database using Forms

    Hi all,
    How can i store and display doc/pdf files in the database using Forms 10g?.
    Arif

    How to get up and running with WebUtil 1.06 included with Oracle Developer Suite 10.1.2.0.2 on a win32 platform
    Solution
    Assuming a fresh "Complete" install of Oracle Developer Suite 10.1.2.0.2,
    here are steps to get a small test form running, using WebUtil 1.06.
    Note: [OraHome] is used as an alias for your real oDS ORACLE_HOME.
    Feel free to copy this note to a text editor, and do a global find/replace on
    [OraHome] with your actual value (no trailing slash). Then it is easy to
    copy/paste actual commands to be executed from the note copy.
    1) Download http://prdownloads.sourceforge.net/jacob-project/jacob_18.zip
      and extract to a temporary staging area. Do not attempt to use 1.7 or 1.9.
    2) Copy or move jacob.jar and jacob.dll
      [JacobStage] is the folder where you extracted Jacob, and will end in ...\jacob_18
         cd [JacobStage]
         copy jacob.jar [OraHome]\forms\java\.
         copy jacob.dll [OraHome]\forms\webutil\.
      The Jacob staging area is no longer needed, and may be deleted.
    3) Sign frmwebutil.jar and jacob.jar
      Open a DOS command prompt.
      Add [OraHome]\jdk\bin to the PATH:
         set PATH=[OraHome]\jdk\bin;%PATH%
      Sign the files, and check the output for success:
         [OraHome]\forms\webutil\sign_webutil [OraHome]\forms\java\frmwebutil.jar
         [OraHome]\forms\webutil\sign_webutil [OraHome]\forms\java\jacob.jar
    4) If you already have a schema in your RDBMS which contains the WebUtil stored code,
      you may skip this step. Otherwise,
      Create a schema to hold the WebUtil stored code, and privileges needed to
      connect and create a stored package. Schema name "WEBUTIL" is recommended
      for no reason other than consistency over the user base.
      Open [OraHome]\forms\create_webutil_db.sql in a text editor, and delete or comment
      out the EXIT statement, to be able to see whether the objects were created witout
      errors.
      Start SQL*Plus as SYSTEM, and issue:
         CREATE USER webutil IDENTIFIED BY [password]
         DEFAULT TABLESPACE users
         TEMPORARY TABLESPACE temp;
         GRANT CONNECT, CREATE PROCEDURE, CREATE PUBLIC SYNONYM TO webutil;
         CONNECT webutil/[password]@[connectstring]
         @[OraHome]\forms\create_webutil_db.sql
         -- Inspect SQL*Plus output for errors, and then
         CREATE PUBLIC SYNONYM webutil_db FOR webutil.webutil_db;
      Reconnect as SYSTEM, and issue:
         grant execute on webutil_db to public;
    5) Modify [OraHome]\forms\server\default.env, and append [OraHome]\jdk\jre\lib\rt.jar
      to the CLASSPATH entry.
    6) Start the OC4J instance
    7) Start Forms Builder and connect to a schema in the RDBMS used in step (4).
      Open webutil.pll, do a "Compile ALL" (shift-Control-K), and generate to PLX (Control-T).
      It is important to generate the PLX, to avoid the FRM-40039 discussed in
      Note 303682.1
      If the PLX is not generated, the Webutil.pll library would have to be attached with
      full path information to all forms wishing to use WebUtil. This is NOT recommended.
    8) Create a new FMB.
      Open webutil.olb, and Subclass (not Copy) the Webutil object to the form.
      There is no need to Subclass the WebutilConfig object.
      Attach the Webutil.pll Library, and remove the path.
      Add an ON-LOGON trigger with the code
             NULL;
      to avoid having to connect to an RDBMS (optional).
      Create a new button on a new canvas, with the code
             show_webutil_information (TRUE);
      in a WHEN-BUTTON-PRESSED trigger.
      Compile the FMB to FMX, after doing a Compile-All (Shift-Control-K).
    9) Under Edit->Preferences->Runtime in Forms Builder, click on "Reset to Default" if
      the "Application Server URL" is empty.
      Then append "?config=webutil" at the end, so you end up with a URL of the form
          http://server:port/forms/frmservlet?config=webutil
    10) Run your form.sarah

  • Using Forms in Numbers for iPad

    Although Forms for the iPad may seem to be a great interface between the user and the spreadsheet, it has a few significant drawbacks under it's present design.
    When using predefined records and catagories to prompt a user for input, one runs into problems when the user inadvertantly presses the delete key (within the form). This would delete a predefined record and thus rendering it usesless for any further input, and subsequent deletions would eventually delete all the predefined records.
    As a workaround I re-arranged the input table to have one record only, using the categories (table columns) to input the relevant information via Pop-up Menus. Although this single record remains after pushing the delete button, the information within the record is somehow corupted, causing reference problems down the line. For instance, using the content of these records with the VLOOKUP function to find data within other tables, a #REF! error is caused because the relevant record was corrupted.
    How could I disable the delete key within Forms, or alternatively save the data from deletion within the records?
    Is there perhaps a way of error trapping within VLOOKUP ?
    As an alternative, I tried a normal table to input the user information, and where I used Pop-up Menus it's was fine, but when inputing numeric values it would be a pain for the user to have to double tap with every numeric input. I would prefer to use Forms if possible.
    Any help would be appreciated, thanks
    André

    I have submitted an enhancement request via Apple's iPad feedback and hoping that future versions of Numbers for iPad would have the ability to password protect table cells, and also have the abilty to disable the delete function within Forms.
    Would appreciate any further halp on a possble workaround in the mean time.
    Thanks

  • Hitting submit on th eparameter form causes the requested url was not found

    Hi,
    I'm using reports 6i patch 10 on a Oracle 8.1.7.4 , all of it is installed on a windows xp system.
    When I try to run one of my own reports through the web (still staying on the local machine) this works well for displaying the parameter form.
    Hitting the submit button on the parameter form causes
    Error: the requested url was not found, or cannot be served at this time
    Oracle Reports Server CGI- reports server name is not specified
    But the server name is in the command line
    When I run the same report with paramform = no and specifying the required parameters in the command line everything runs well.
    When running the supplied test report everything runs ok, with and without the parameter form.
    Any idea what's going on?
    Do I need to give more detailed info?
    regards, Piet

    Running it the way you specified it works well, also with keymap everything is ok then.
    The environment settings are
    RWCGI Environment
    Oracle Reports Server CGI60 version 6.0, a Win32 executable.
    HTTP Environment Variables (server):SERVER_NAME pdb-laptop
    SERVER_PORT 80
    SERVER_PORT_SECURE undefined
    SERVER_SOFTWARE Oracle WebDb Listener 2.1
    SERVER_PROTOCOL HTTP/1.0
    GATEWAY_INTERFACE CGI/1.1
    SCRIPT_NAME /dev60cgi/rwcgi60.exe/
    HTTP_ACCEPT image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, application/vnd.ms-excel, application/vnd.ms-powerpoint, application/msword, */*
    HTTP Environment Variables (request):HTTP_USER_AGENT Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)
    REQUEST_METHOD GET
    QUERY_STRING server=Rep60_PDB-LAPTOP-OraDevHome
    CONTENT_LENGTH undefined
    CONTENT_TYPE undefined
    REMOTE_HOST 127.0.0.1
    REMOTE_ADDR 127.0.0.1
    REMOTE_USER undefined
    REMOTE_IDENT undefined
    HTTP_REFERER undefined
    HTTP_COOKIE databaseid=bd2Ng49PxTNWh9Ks03Ga4AnAhXnC4SwGCtOXkzqe8NSDLcoIaZU=; lastuserid=bd2Ng49PxVwN3dWo3XGH8g==
    AUTH_TYPE undefined
    HTTP_AUTHORIZATION undefined
    PATH_INFO showenv
    PATH_TRANSLATED undefined
    Oracle Reports Server CGI60 Environment Variables:PATH C:\OraDevHome\bin;C:\OraHome\bin;C:\OraHome\Apache\Perl\5.00503\bin\mswin32-x86;C:\Program Files\Oracle\jre\1.1.7\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\Common Files\Ulead Systems\MPEG;C:\PROGRA~1\UTILIT~1\ULTRAE~1;"C:\Program Files\Symantec\Norton Ghost 2003\";C:\Program Files\Executive Software\DiskeeperWorkstation\
    ORACLE_HOME C:\OraDevHome
    RW60 C:\OraDevHome\REPORT60
    ORACLE_PATH undefined
    REPORTS60_PATH C:\OraDevHome\REPORT60\ADMIN\TEMPLATE\US;C:\OraDevHome\REPORT60
    REPORTS60_TMP C:\OraDevHome\REPORT60\TMP
    REPORTS60_CGIMAP undefined
    REPORTS60_CGIHELP undefined
    REPORTS60_CGIDIAGBODYTAGS undefined
    REPORTS60_CGIDIAGHEADTAGS undefined
    REPORTS60_CGINODIAG undefined
    USER_NLS_LANG undefined
    NLS_LANG AMERICAN_AMERICA.WE8ISO8859P1
    Stdin is empty.
    CGI Command Line is used
    main.argv[0] C:\OraDevHome\tools\web60\cgi\rwcgi60.exe

  • Hello everyone, my website text appears slightly bigger in firefox than all other browsers.

    I have tested my website on my laptop using web-kit browsers, IE and Firefox but Firefox alone displays text to be slightly bigger than the rest of the browsers. It has same rendering effects when it comes to images. I tried defining these elements using %, em, px etc but all in vain.
    I have test "bare bone" html code like:
    <body>
    <p>pleaseeeeeeeeeeeeeeeeeeeee help</p>
    </body>
    with css:
    p{font-size: 11px; font-family: Verdana, Geneva, Arial, Helvetica, Sans-Serif;} yet the results is as mentioned above. Other sites however render the same font-size on my laptop even in different browsers.

    Identical in Firefox 31 as in IE8.
    Try resetting the Zoom level while viewing that page.
    '''{ Ctrl + 0 }'''
    [Ctrl plus the '''zero''' keys]

  • How to use forms trace file for performance tuning

    I am trying to use forms trace file in order to find cause of forms application performance problem.
    I have read the document B14032-03 where is described how to turn on tracing and how to convert binary trace file to xml or html format. However these xml/html files are useless because they only contain series of forms events, without possibility for grouping or sorting. Actually, they are like to database raw trace file. I need some tool, like tkprof for database trace, that will process xml/html file and generate some more useful format.
    Further, I have tried to load forms trace file into relational database tables in order to use SQL for performance problem investigation. I have followed procedure described in document A92175-01, but without success.
    Is there any way to process xml/html file with grouping, orderering or summing event duration or way to load either binary, xml or html trace file into structured data in database.

    Al-Salamu Alikum user630033
    It's not : elegant at all to thank people 4 No help,it's not their problem that u don't search enough, or u don't have access to db.
    We should always say thank ,or 'Jazak Allah Khiern' on both cases even they could or couldn't help u.
    Finally,i expect ' an appologize or even a thankful word ' and the kindness i am sure u had to publish the solution u found in order to share it with people who had same problem or at least to give them the info to get the appreciation or the thanksful word u deserve.
    Rem.Never give a bad feedback to people who tried to help u.
    Regards,
    Abdetu..

  • ^FORM causing blank page

    We are using ^FORM in our datastream to change the form type mid-print. This causes a blank form to print followed by the form correctly populated. How can I prevent this?
    Dave Hall

    Talking about using ^FORM in the datastream seems to me an Output Server problem, not the designer software. You might get a better response on that forum (but, like me, I would think most people monitoring that forum also monitor this one).
    Have you checked the Print Agent manual to see if there is something about your scenario that might provide an explanation?
    I assume your datastream looks something like the following:
    ^form X.mdf
    ^field a
    aaaaa
    ^field b
    bbbb
    ^form Y.mdf
    ^field c
    cccc
    ^field d
    dddd
    Is it form "X" or form "Y" that is printing blank?
    As long as field "c" is on form "Y" then I would think it should work. If it is not, then that might be causing the blank form.
    I'm not familiar with your problem because our datastreams are mostly like:
    ^global a
    aaaaa
    ^global b
    bbbb
    ^global c
    cccc
    ^global d
    dddd
    ^form X.mdf
    ^form Y.mdf
    With this setup the fields can be used in any order on the forms and we definately don't experience what you are.
    We do use the
    b -afxon
    parameter to "discard unknown fields". It is possible this might help you if you are not already using it.

  • Slightly shift between pages is driving me nuts.

    Hello,
    I've been building my site and I noticed that there is a slight shift in between all of the pages and the contact page, I have copy and paste several times the coding from one page to the other one... sometimes it shifts up and down, when navigating between pages. I was wondering if someone can figure this out. Here is the coding for you to look. The first one si the index which is the correct position for the spry menu, title to be in, the second one is the contact one which is the one that shifts.
    index:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>Works</title>
    <style type="text/css">
    img {
              background-color: #FFF;
              top: 10px;
              right: 10px;
    #pix p img {
              vertical-align: middle;
    #pix div #MenuBar1 {
              font-family: Trebuchet MS, Arial, Helvetica, sans-serif;
    #footer div p {
              font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
              font-size: x-small;
    p {
              font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
              font-size: 14px;
    #about p {
              font-size: 9px;
    #about p {
              font-size: 12px;
    #about p {
              text-align: center;
    #about p {
              text-align: left;
    #pic01 {
              font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
              font-size: 10px;
              background-color: #FFF;
              letter-spacing: 0%;
              clear: none;
              float: none;
              height: auto;
              width: 500px;
              border-top-width: thin;
              border-right-width: thin;
              border-bottom-width: thin;
              border-left-width: thin;
              border-top-style: none;
              border-right-style: none;
              border-bottom-style: none;
              border-left-style: none;
              left: auto;
              clip: rect(auto,auto,auto,400px);
              padding-left: 0px;
              top: auto;
              right: auto;
              bottom: auto;
              margin-right: auto;
              margin-left: auto;
    #header .center {
              font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
              font-size: 36px;
    </style>
    <link href="SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
    <script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <link href="SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
    <style type="text/css">
    body {
        font: "Trebuchet MS", Arial, Helvetica, sans-serif;
        width: 1000px;
        margin: 0 auto;
        font-size: 100%;
        background: #FFF;
    h1 {font-size: 36px;}
    #pix01 {
              width: 600px;
              border: 1px dotted white;
              margin-top: 0;
              margin-right: auto;
              margin-bottom: 0;
              margin-left: 260px;
              height: 595px;
    #pix01 img {
              height: 595px;
              width: 600px;
              vertical-align: middle;
    #pix01 p {
        font-size:12px;
    #footer {
        font-size:12px;
    /**re-usable classes**/
    .center {text-align:center}
    .right {text-align:right}
    /**clear floats**/
    .clearLt {clear:left; display:block; height:1px; visibility:hidden;}
    </style>
    </head>
    <body>
    <div id="header">
      <h1 align="center" class="center">Arturo Herrera</h1>
      <ul id="MenuBar1" class="MenuBarHorizontal">
        <li><a href="index.html">Home</a></li>
        <li><a href="Works.html">Works</a></li>
        <li><a href="#">About</a></li>
        <li><a href="#">Dossier</a></li>
        <li><a href="Contact.html">Contact</a></li>
        <li><a href="#">Links</a></li>
        <li><a href="#">New Exhibitions</a></li>
        <li><a href="#">Video</a></li>
      </ul>
      <p>
        <!--clear floats in menu-->
      </p>
      <hr class="clearLt" />
      <p><!--end header--></p>
    </div>
    <div id="pix01"><img src="background2.jpg" name="main" width="600" height="595" id="main" /></div>
    <p align="center"> </p>
    <div id="pic01">
      <p align="left" class="text">Background # 2 Cut &amp; Paste 2/5</p>
      <p align="left" class="text">Mixed Media: magazine collage, glue, wood, photographic paper, matt board, nails,</p>
      <p align="left" class="text">plywood, wire, sylicon</p>
      <p align="left" class="text">tags: identity, citizenship, illegal immigrant, immigration, racial profile, status, canada,</p>
      <p align="left" class="text">usa, latino, home sexuality</p>
      <p align="left" class="text">2012</p>
    </div>
    <p align="center"> </p>
    <p align="center"><a href="https://www.facebook.com/arteisfoto" target="new" class="facebook">Facebook</a></p>
    <p align="center"><a href="http:/www.arteisfoto.com" target="new">Arte is Foto</a></p>
    <p align="center"> </p>
    <div id="footer">
      <div align="center">
        <p> </p>
        <p>Copyright 2002-2013 © Arturo Herrera. This is site is contantly changing.</p>
      </div>
    </div>
    <p> </p>
    <script type="text/javascript">
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    </script>
    </body>
    </html>
    Contact:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>Works</title>
    <link href="images.css" rel="stylesheet" type="text/css" />
    </head>
    <body><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>Works</title>
    <script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <link href="SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
    <style type="text/css">
    body {
        font: "Trebuchet MS", Arial, Helvetica, sans-serif;
        width: 1000px;
        margin: 0 auto;
        font-size: 100%;
        background: #FFF;
    h1 {font-size: 36px;}
    #pix01 {
    width: 480px;
    border: 1px dotted white;
    margin: 0 auto;
    #pix01 img {
        height: 130px;
        width: 130px;
        vertical-align:middle;
    #pix01 p {
        font-size:12px;
    #footer {
        font-size:12px;
    /**re-usable classes**/
    .center {text-align:center}
    .right {text-align:right}
    /**clear floats**/
    .clearLt {clear:left; display:block; height:1px; visibility:hidden;}
    </style>
    </head>
    <body>
    <div id="header">
    <h1 class="center">Arturo Herrera</h1>
    <ul id="MenuBar1" class="MenuBarHorizontal">
    <li><a href="index.html">Home</a></li>
      <li><a href="Works.html">Works</a></li>
      <li><a href="#">About</a></li>
      <li><a href="#">Dossier</a> </li>
      <li><a href="Contact.html">Contact</a></li>
      <li><a href="#">Links</a></li>
      <li><a href="#">New Exhibitions</a></li>
      <li><a href="#">Video</a></li>
    </ul>
    <!--clear floats in menu-->
    <hr class="clearLt" />
    <!--end header-->
    </div>
    <p align="left" class="text"> </p>
    <p align="left"> </p>
    <p align="center" class="contact">If you would like to contact me please send me an email at: <a href="mailto:[email protected]">[email protected]</a></p>
    <p align="center" class="contact"> </p>
    <p align="center" class="contact"> </p>
    <p align="center" class="contact"> </p>
    <p align="center" class="contact"> </p>
    <p align="center" class="contact"> </p>
    <p align="center" class="contact"> </p>
    <p align="center" class="contact"> </p>
    <p align="center" class="contact"> </p>
    <p align="center" class="contact"> </p>
    <p align="center" class="contact"> </p>
    <p align="center" class="contact"> </p>
    <p align="center" class="contact"> </p>
    <p align="center" class="contact"> </p>
    <p align="center" class="contact"> </p>
    <div id="footer">
      <div align="center">
        <p> </p>
        <p>Copyright 2002-2013 © Arturo Herrera. This is site is contantly changing.</p>
      </div>
    </div>
    <p align="center" class="contact"> </p>
    <p align="center" class="contact"> </p>
    <script type="text/javascript">
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
      </script>
    </body>
    </html>
    I hope this is something easy to fix, Thanks!! this is the website too : www.arturoherrera.ca

    arteisfoto wrote:
    John, I duplicated the rule pix01 to pix02 and assigned it to the next image and its working, would you say that is ok?
    It works but it's high maintenance using unnecessary, repetitive IDs for repeating page elements with the same CSS rules defined for each ID. There's lots of redundant CSS and you need a new ID defined for every image. That's creating a rod for your back.
    Convert to a class - that's what they're for - and you're done.
    Change
    #pix01 {
              width: 600px;
              margin-top: 0;
              margin-right: auto;
              margin-bottom: 0;
              margin-left: 260px;
              height: 450px;
    to
    .pix01 {
              width: 600px;
              margin-top: 0;
              margin-right: auto;
              margin-bottom: 0;
              margin-left: 260px;
              height: 450px;
    Change all
    <div id="pix01">
    to
    <div class="pix01">
    and you're done.
    Note: there's even a school of thought which says IDs in CSS can be avoided altogether.
    http://screwlewse.com/2010/07/dont-use-id-selectors-in-css/

  • How can we disable Block Level Trigge using Form Personalization

    Hi,
    I want to disable block level trigger(WHEN-NEW-RECORD-INSTANCE) using forms personalization at responsibility level.
    Can any one please give me the answer.
    it's urgent
    Thanks and Regards,
    Dhana

    No, Firefox is user choice rules over the "wants" of individual websites as far as disabling contextual menus and the keyboard commands.
    Placing a transparent image over the image will keep the less technical user from saving the main image. If they do try to save it all they'll get is the transparent image overlay.

  • Slight shift in stills after fade in and fade out? Ever seen this?

    Howdy..
    I'm editing on a MacPro, Quadr4000, CS5.5, OS 10.6.8.
    Exporting a project as ProRes 720p MRQ.
    I notice when dissolving in or out on a still, there is a slight shift in the graphic as it dissolves in (ie. during the cross dissolve) and after it's fully in (ie. after the cross dissolve has finished). This isn't apparent on the timeline or when I playback the video in Premiere, but is there after I export. It's just a slight, 1pixel movement of the graphic that is barely noticeable by annoying nonetheless..
    Any ideas as to what could be causing this? Greatly appreciated!
    Best,
    Ben

    I am starting to see something similar on my 24" 2.8Ghz Aluminum. Not as bad as you are seeing...but random artifacts. It is getting annoying, especially because my warranty just ran out.

Maybe you are looking for

  • My time capsule does not see external hard drive

    I just got a new time capsule and am hoping to use it as a wireless bridge and NAS.  I've got it set up as a bridge and that seems to be working correctly, but when I plug my external hard drive into the time capsule, I can't see that external drive

  • Creating file in the client machine

    Hello All, In my jsp page, am writing data from database to an excel file and I want this excel file to be created in the client machine. I checked in the forums but could not find an apt reply. ie, when i click on submit button, i get the data from

  • Removal of payment block "R"

    Hi, We are encountering an issue while removing the payment block for the invoices. When the payment block "R" is removed manually,  we are finding that the number of days for payment are getting enhanced automatically in the document. Please let me

  • State Sales Tax setup documentation

    Hi All, Is there any documentation on the subject for release 11i and up? Thanks in advance A/A

  • J2EE engine does not start correctly

    hi, after the installation of sap was v6.40 abap & j2ee, i cannot logon to the j2ee engine as described in the documentation. when i will access the engine by using a web browser, i get the following error message: "503: Service Unavailable" i had a