[svn:fx-4.0.0] 13531: * Fixed invalid property reference error reporting by postponing the

Revision: 13531
Revision: 13531
Author:   [email protected]
Date:     2010-01-15 12:50:59 -0800 (Fri, 15 Jan 2010)
Log Message:
Fixed invalid property reference error reporting by postponing the
  validation until prelink when the MxmlDocument's type is available.
QE notes:
Doc notes:
Bugs: SDK-22995, SDK-24738
Reviewer: Gaurav, Darrell
Tests run: checkintests, mxmlcunit
Is noteworthy for integration: no
Code-level description of changes:
  modules/compiler/src/java/flex2/compiler_en.properties
    Renamed css.StyleDef.InvalidPropertyReference to
    css.StylesContainer.InvalidPropertyReference.
  modules/compiler/src/java/flex2/compiler/css/StyleDef.java
    Removed InvalidPropertyReference checking from processReference().
  modules/compiler/src/java/flex2/compiler/css/StylesContainer.java
    Modified setMxmlDocument() to store a reference to it's QName.
    Modified validate() to iterate over all style properties and to
    call validatePropertyReferences() if mxmlDocumentQName is not
    null.
Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-22995
    http://bugs.adobe.com/jira/browse/SDK-24738
Modified Paths:
    flex/sdk/branches/4.0.0/modules/compiler/src/java/flex2/compiler/css/StyleDef.java
    flex/sdk/branches/4.0.0/modules/compiler/src/java/flex2/compiler/css/StylesContainer.java
    flex/sdk/branches/4.0.0/modules/compiler/src/java/flex2/compiler_en.properties

Hi
yes, I had the same issue and I found a solution.
You need to request a patch for BUG 9212862 (already corrected in WLS 10.3.3) and do the follwing:
javax.xml.ws.BindingProvider provider = (javax.xml.ws.BindingProvider)port;
java.util.Map context = provider.getRequestContext();
context.put(weblogic.wsee.jaxrpc.WLStub.POLICY_COMPATIBILITY_PREFERENCE, weblogic.wsee.jaxrpc.WLStub.POLICY_COMPATIBILITY_MSFT);      
This will cause the SecurityMessageArchitect class of WLS to not send the SecurityTokenReference in the Soap security header.
Please note that is evidently a non-comformity to the specs of microsoft:
Please give a look at
http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-soap-message-security-1.0.pdf (8.3 Signing Tokens)
and also at:
http://www.oasis-open.org/committees/download.php/16768/wss-v1.1-spec-os-SAMLTokenProfile.pdf
(3.4 Identifying and Referencing Security Tokens)
A SAML key identifier reference MUST be used for all (local and remote) references to SAML 1.1
assertions. [...]
All conformant implementations MUST be able to process SAML assertion references occurring in a
<wsse:Security> header or in a header element other than a signature to acquire the corresponding
assertion. A conformant implementation MUST be able to process any such reference independent of the
confirmation method of the referenced assertion.
It follows that the .NET 3.5 is a non conformat implementation: I would gladly know which is the position of Microsoft on that.
ciao
carlo

Similar Messages

  • "The movie contains an invalid data reference" error in subscribed albums

    I'm subscribed to a MobileMe album that contains movies (m4v). Just a few of these movies work well and some other will not play. I get the following error message: "The movie contains an invalid data reference". It seems that these movies are not downloaded since I can't find the original file in my iPhoto Library. For those movies without this problem I can find the original file in the iPhoto Library. It's needed to say that this problems shows up only in iPhoto since I can see all movies at the Gallery app in iPhone/iPod/iPad and also online. Any ideas?

    Your profile shows you at 10.5.7. If that's correct download and run the Mac OS X 10.5.8 Combo Update. It wouldn't hurt to reapply it even if you're at 10.5.8.
    Also reapply QuickTime 7.5 for Leopard and Compatibility Update for QuickTime 7.5.5.

  • [svn:fx-trunk] 12294: * Fix for error reporting bug.

    Revision: 12294
    Revision: 12294
    Author:   [email protected]
    Date:     2009-11-30 13:25:28 -0800 (Mon, 30 Nov 2009)
    Log Message:
    Fix for error reporting bug.  The bug was caused by a warning being
      reported during one compilation and then an error being reported in
      a following compilation.  Due to the warning, the Source's logger
      was disconnected instead of being nulled out during the first
      compilation.  Then in the second compilation, we weren't reassigning
      the logger, so the disconnected logger was being left in place.  As
      a result, it was throwing off expected error counts and caused an
      assert to fire.
    QE notes: There is probably an easier way to reproduce the assertion
              that George hit without having to create multiple projects
              and without having to manually copy SWC's around.  I didn't
              realize this until I had a fix, though.  One key aspect that
              George didn't note and might not have realized, is that the
              variable needs to cause a warning, so leaving off a
              namespace works, but making it public, private, etc doesn't.
    Doc notes:
    Bugs: SDK-24314
    Reviewer: Corey
    Tests run: checkintests
    Is noteworthy for integration: fixes FB issue
    Code-level description of changes:
      Modified setLogger() to always reassign logger.
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-24314
    Modified Paths:
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/Source.java

  • Oracle Invalid Column Name Error in JSP

    I was wondering if anyone could provide some help. I am new to JSP, Beans and Oracle and I am getting a java.sql.SQLException: ORA-00904: invalid column name error when I run the JSP below. The Java Bean's code it is referencing is also included and this bean is just storing information from the server from a previous login page.
    Eventually I need to display more columns from the database using this JSP, but since I can even get this one working, I am at a loss!
    PLEASE HELP!!!!
    I have even tried to replace the beans reference in the sql with just a login and password I know exists in the database! Same error... Help!
    I am running Tomcat and Oracle 9i!
    <!--
    Assign-->
    <html>
    <head>
    <title>Student Signon on page</title>
    </head>
    <body bgcolor="#FDF5E6">
    <h1 align="center">>Student Signon on page</h1>
    <%@ page import="java.sql.*" %>
    <%@ page import="BeanAs2.Bean5b" %>
    <%
    String driverClassString = "oracle.jdbc.driver.OracleDriver";
    String driverConnectString;
    driverConnectString = "jdbc:oracle:thin:@midas2:1521:globaldb";
    String user = "system";
    String passwd = "manager";
    %>
    <jsp:useBean id="Bean5b" class="BeanAs2.Bean5b" />
    <jsp getProperty id = "Bean5b" property = "login" />
    <jsp getProperty id = "Bean5b" property = "pswd" />
    <%
    Connection connection = null;
    try {
    Class.forName(driverClassString);
    connection = DriverManager.getConnection(driverConnectString, user, passwd);
    catch (Exception e) {
    out.println("Cannot close connect to database!"+e);
    if (connection != null) {
    String login =Bean5b.getpassword();
    String pswd =Bean5b.getStudentlogin();
    String sql = "SELECT studentinfo.familyname FROM STUDENTINFO WHERE studentinfo.username='login' AND studentinfo.password='pswd';";
    try { // execute the query
    //SELECT studentinfo.familyname FROM STUDENTINFO WHERE studentinfo.username='s40079703' AND studentinfo.password='p4007swd'
    Statement stmt = connection.createStatement();
    ResultSet rst;
    rst = stmt.executeQuery(sql);
    // Fetch the query result, and dispaly them in a table
    while (rst.next()) {
    %>
    <tr>
    <td> <%= rst.getString("system.teaching.code") %> </td>
    </tr>
    <%
    stmt.close();
    connection.close();
    } catch(Exception e) {
         out.println("Cannot fetch data from database!"+e);
    %>
    </body></html>
    package BeanAs2;
    import java.util.*;
    public class Bean5b {
         // all variables must not be public in a bean
    private String Studentlogin;
    private String password;
    public String getStudentlogin() {
    return this.Studentlogin;
    public String getpassword() {
    return this.password;
         public void setStudentlogin(String login) {
              this.Studentlogin = login;
         public void setpassword(String pswd) {
              this.password = pswd;

    Hi
    Thanks for your reply, I should of looked at my code before I copied over. The field should of been "studentinfo.familyname" which I was calling, I have just been changing so much code in this to try and see what the problem is, I didnt fix this before I copied this over.... trust me, I have tried everything........ Hence when I correctly called the "concatination the login name and password to the query properly" as you pointed out, I got rid of the error, BUT now it returning NO DATA????? (the table is populated - I have checked this!!!!)
    The table I am trying to get information from sits under a schema called system. It has the following columns;
    STUDENTID NUMBER 8
    FAMILYNAME VARHCAR 60
    GIVENNAME VARCHAR 60
    USERNAME VARCHAR 9
    PASSWORD VHARCHAR 60
    The database is called globaldb. My computer is called Midas2
    Whats more, the query works in Oracle sql*plus!!! Returning the relevent data!!!
    Actually here is the code for the JSP, with all the changes and none of the mistakes of my previous post...........,
    Pleaes help!!!
    <html>
    <head>
    <title>Student Signon on page</title>
    </head>
    <body bgcolor="#FDF5E6">
    <h1 align="center">>Student Signon on page</h1>
    <%@ page import="java.sql.*" %>
    <%@ page import="BeanAs2.Bean5b" %>
    <%
    String driverClassString = "oracle.jdbc.driver.OracleDriver";
    String driverConnectString;
    driverConnectString = "jdbc:oracle:thin:@midas2:1521:globaldb";
    String user = "system";
    String passwd = "manager";
    %>
    <jsp:useBean id="Bean5b" class="BeanAs2.Bean5b" />
    <jsp getProperty id = "Bean5b" property = "login" />
    <jsp getProperty id = "Bean5b" property = "pswd" />
    <%
    Connection connection = null;
    try {
    Class.forName(driverClassString);
    connection = DriverManager.getConnection(driverConnectString, user, passwd);
    catch (Exception e) {
    out.println("Cannot close connect to database!"+e);
    if (connection != null) {
    String login =Bean5b.getpassword();
    String pswd =Bean5b.getStudentlogin();
    String sqlQuery;
    sqlQuery = ("SELECT studentinfo.familyname FROM STUDENTINFO WHERE studentinfo.username='" + login + "' AND studentinfo.password='" + pswd + "'"); %>
    <% try { // execute the query
    Statement stmt = connection.createStatement();
    ResultSet rst;
    rst = stmt.executeQuery(sqlQuery);
    // Fetch the query result, and dispaly them in a table
    while (rst.next()) {
    %>
    <tr>
    <td> <%= rst.getString("studentinfo.familyname") %> </td>
    </tr>
    <%
    stmt.close();
    connection.close();
    } catch(Exception e) {
         out.println("Cannot fetch data from database!"+e);
    %>
    </body></html>

  • Invalid factory calender error in creating subcontrating po

    hello all,
    during creation of subcontracting po,system shows the error message "invalid factory calender error".
    i have checked the assignment in oy05.seems ok.
    pls provide some input.
    regards
    sumit simran.

    Hi,
    Please check the path.
    IMG>Enterprise Structure>Definition>Logistics - General>Define, copy, delete, check plant-->Define Plant.
    Here you can find the which factory calender is assigned to your plant.
    Then go to  Tcode SCAL ,  select the Holiday calender and edit it . Double click on your holiday calender   and change it  i.e valid From year to To year. Go back , select the factory calender and edit it ,  give  valid From year to To year.
    Thanks.

  • Invalid file reference in iPhoto

    Has anyone lese had a problem with the new iphoto?
    I downloaded the update at the weekend (9.1.2 (605)) and the last batch of movies and photos that I had imported from my iPhone have all gone wrong
    If I double click on a previous photo, the disappeared photos and movies can be clearly seen in thumbnail form at the strip at the bottom of the iphoto window
    but when I click on them, the photos simply don't load
    and clicking on the movies brings the error message: "The movie contains an invalid data reference."
    When I view the movies and photos in the folder window, they can sometimes appear briefly but instantly disappear to dotted white rectangle.
    subsequent iPhone imports have worked ok
    What's going on?

    Two possibilities:
    1. The Files are where they should be and iPhoto has lost track of them
    Or
    2. The files are missing.
    Go to your Pictures Folder and find the iPhoto Library there. Right (or Control-) Click on the icon and select 'Show Package Contents'. A finder window will open with the Library exposed.
    Look there for a Folder called 'Masters'. The folder is arranged by date. Can you find the files inside.
    Make no changes, simply look.
    Regards
    TD

  • Help on Merge Statement ,I got 'ORA-00904: invalid column name' Error

    Pls help
    In Oracle 9i i implement the following qry
    MERGE INTO jobs A
    USING (select order_no,jOB_SEQ_NO from jobs_dlt) B
    ON (A.ORDER_NO = B.ORDER_NO and A.JOB_SEQ_NO =B.JOB_SEQ_NO )
    WHEN MATCHED THEN
    UPDATE SET
              A.ORDER_NO= B.ORDER_NO ,
              A.JOB_SEQ_NO= B.JOB_SEQ_NO           
    WHEN NOT MATCHED THEN
    INSERT (
              A.JOB_SEQ_NO ,
              A.ORDER_NO
    VALUES (
              B.JOB_SEQ_NO ,
              B.ORDER_NO
    but i got 'ORA-00904: invalid column name' Error
    JOBS table Contain the above Column
    how i implement the Merge Statment
    Thanks in advance
    By
    Sekar

    I seem to recall this error being spuriously (well unhelpfully) thrown if you tried to UPDATE a key that you used in the ON clause, but I could be mistaken.
    For us to recreate this you would need to supply the exact version and scripts to create the tables in question.

  • Error message: 450 [Wrong number of arguments or invalid property assignment]

    Hello Support,
    I have a vbscript which does some database query. i see from the log that script quits with the below error.
    Error message: 450 [Wrong number of arguments or invalid property assignment]
    but when i execute the same query directly on database, it gives me correct result. also i see that not all the time script quits with this error.
    Does anyone have idea how to troubleshoot it?
    -KAKA-

    i see. i know at which line it fails as error handling is done and will be written in the log.
    sQuery_Prod = "select object_text from sto_ov_externalnode where name = '" & NodeId & "'"
    oRecordSet_Prod.Open sQuery_Prod, oConnection, adOpenStatic, adLockOptimistic
    if err.number <> 0 then
    LogWrite ("Unable to run query")
    LogWrite ("Query: [" & sQuery_Prod & "]")
    LogWrite ("Connection string: [" & sConnect & "]")
    LogWrite ("Error message: " & err.number & " [" & err.description & "]")
    wscript.quit(1)
    end if
    and this piece of code write following in the log.
    07.10.2014 16:55:03:Unable to run query
    07.10.2014 16:55:03:Query: [select object_text from sto_ov_externalnode where name = '{B10255CF-F618-45FB-99BC-31A57D747702}']
    07.10.2014 16:55:03:Connection string: [DSN=Script;DRIVER={SQL Native Client};User ID=xxxxxx;Password=yyyyyy]
    07.10.2014 16:55:03:Error message: 450 [Wrong number of arguments or invalid property assignment]
    Where as i can run query "select object_text from sto_ov_externalnode where name = '{B10255CF-F618-45FB-99BC-31A57D747702}'" successfully directly on database.
    also in the next cycle same query will be successfull within script too.
    Does this help in understanding the problem?
    -KAKA-

  • When ever i try to update my ipod 4g  i get the 3194 error how do i fix and network settings error?

    when ever i try to update my ipod 4g  i get the 3194 error how do i fix and network settings error?when ever i try to update my ipod 4g  i get the 3194 error how do i fix and network settings error?

    mine did the same thing but i got the error 9 and dont know what to do

  • Strange behavior with invalid image type error

    Hi,
    I'm currently developing a stereo vision application. I started with the StereoVisionExample provided by NI but want to use my own camera drivers.
    I created the GetImage vi (see attachment) that accepts the camera handle and an allocated image, reads the acquired image from the camera, transforms the image array to a color image and returns it. I tested it with the TestVI (attached) and it works perfectly well.
    Now I wanted to integrate it as image source for the given example application and replace the ExpressVIs but this doesn't work. I get a 1074396080 invalid image type error as soon as the GetImage SubVI is called. The only possibility to run it without an error is to set the image type to RGB64 but in this case the image is not shown correctly. I get the error no matter if I choose Grayscale, HSL or RGB32 for the initial image creation. The strange is that with the TestVI everything works perfect, even with HSL that I'm using to get the grayscale image or RGB32. Basically I didn't do anything except copying the VI from Test to StereoExample. It's driving me crazy that the GetImage VI works perfect in the one but not in the other VI with the same data! What's wrong with that?
    I appreciate your help.
    Attachments:
    getImage.jpg ‏47 KB
    stereoVision example.jpg ‏92 KB
    TestVI.jpg ‏44 KB

    Hello NicoSch!
    In order to reproduce the error, I need the image data generated by the image driver you are using. Please wire the 2D array with the image data to a control on the frontpanel and run the VI. With the data now displayed, right-click the control and choose "Data Operations > Make Current Value Default" to save the data in the control. Please attach the VI to a new forum post.
    Additionally, can you describe the type of image acquired by the camera? Is the 2D array a 32bit RGB image? What camera and LabVIEW version are you using?
    Regards,
      Georg

  • Invalid,serial,number,error,when,attempting,installation,of,photoshop,CS,how,can,i,fix,ple ase?

    I cannot install creative suite cs2 the message invalid,serial,number,error appears; does anyone know how I can fix,please? The download is from the Adobe site using the serial number they provide prior to downloading

    To locate the serial number:
    http://helpx.adobe.com/x-productkb/global/find-serial-number.html
    Serial number and activation chat support (non-CC)
    http://helpx.adobe.com/x-productkb/global/service1.html ( http://adobe.ly/1aYjbSC )

  • [svn:bz-trunk] 9665: Fix minor typo in errors.properties file.

    Revision: 9665
    Author:   [email protected]
    Date:     2009-08-26 14:13:27 -0700 (Wed, 26 Aug 2009)
    Log Message:
    Fix minor typo in errors.properties file. Change "wilcard" to "wildcard" in the following error string.
    10560=Attempt to subscribe to the subtopic, '''', on destination, '''', that does not allow wilcard subtopics failed.
    Checkintests: passed
    Modified Paths:
        blazeds/trunk/modules/common/src/flex/messaging/errors.properties
        blazeds/trunk/qa/apps/qa-regress/testsuites/mxunit/tests/messagingService/dynamicDestinat ions/subtopicsEnabledWildcardsNotAllowed.mxml

    onearm wrote:
    Svn revision 442 doesn't compile on Arch64:
    [ 4%] [ 5%] Building CXX object src/CMakeFiles/guayadeque.dir/AlListBox.o
    Building CXX object src/CMakeFiles/guayadeque.dir/ArListBox.o
    In file included from /tmp/yaourt-tmp-gianluca/aur-guayadeque-svn/guayadeque-svn/src/guayadeque/Trunk/src/LastFMPanel.h:25,
    from /tmp/yaourt-tmp-gianluca/aur-guayadeque-svn/guayadeque-svn/src/guayadeque/Trunk/src/MainFrame.h:27,
    from /tmp/yaourt-tmp-gianluca/aur-guayadeque-svn/guayadeque-svn/src/guayadeque/Trunk/src/AlListBox.cpp:27:
    /tmp/yaourt-tmp-gianluca/aur-guayadeque-svn/guayadeque-svn/src/guayadeque/Trunk/src/PlayerPanel.h:25:28: error: AutoScrollText.h: No such file or directory
    [ 7%] Building CXX object src/CMakeFiles/guayadeque.dir/ArrayStringArray.o
    [ 8%] Building CXX object src/CMakeFiles/guayadeque.dir/AudioScrobble.o
    make[2]: *** [src/CMakeFiles/guayadeque.dir/AlListBox.o] Error 1
    make[2]: *** Waiting for unfinished jobs....
    make[1]: *** [src/CMakeFiles/guayadeque.dir/all] Error 2
    make: *** [all] Error 2
    Thanks for the bug report. It was a test i was doing but finally decided to not include it but left this line by error.
    It have been fixed in svn 443.
    Thanks again

  • How do I fix "Invalid node type: selectionbox" error?

    Ok I've got my document all made and nice and pretty, I use it to enter information and use the selection box to make visible the fields I need for each card. Then I save it and try to open it and get the following error popup message.
    Invalid node type: selectionbox
    Invalid node type: selectionbox
    Invalid node type: selectionbox
    Invalid node type: selectionbox
    Invalid node type: selectionbox
    Invalid node type: selectionbox
    Invalid node type: selectionbox
    Message limit exceeded. Remaining 10 errors not reported.
    So I click ok on the error box. It opens the file with adobe reader like it's supposed to and then immediately I get the "Adobe reader has stopped working, windows can check online for a solution to the problem" and I get the two choices that both involve closing the program.
    I got this once before and after about a half hour of fiddling with the original livecycle file it stopped doing it. I have no idea what I did to make it start or stop doing it and I'm not sure I even did do anything to cause it.
    Has anyone else come across this problem? Does anyone know what I need to do to fix it?
    I've included the file I'm having issues with.
    Thanks,
    Aaron

    Hi Aaron,
    I cant replicate your problem. What I did notice though, is when I make a selection on almost every selection box,  I get the following error:
    'cardtwo.TextField1 has no properties'. The error is coming from the following piece of code in the change event: 'cardtwo.TextField1.caption.text.value = (this.rawValue);'
    I dont see a TextField1 in the cardtwo subform so I suspect that this field has been renamed and / or moved since that bit of code was added. Perhaps that would be a good place to start and could very possibly be the cause of your problem.
    Dallas

  • I keep getting The requested URL "/zumablitz/?ref=bookmarks&count=0", is invalid. Reference #9.1ed83bd0.1296679780.83aff6a ....everytime I try to go to any of the games I play..Have tried everything, how do I fix this?

    The requested URL "/zumablitz/?ref=bookmarks&count=0", is invalid.
    Reference #9.1ed83bd0.1296679780.83aff6a , happens all the time now , how do I fix this?

    As you can see below, when I right click, I have no such option.  In the User Account Settings, I'm operating as the "System Administrator".
    Any other suggestions?

  • How can I fix an invalid sibling link error message without my original install disk?

    How can I fix an invalid sibling link error message without my original install disk?

    Hi Jeff,
    It's not even likely the Install Disc could fix that, but if you want to try...
    Does it boot to Single User Mode, CMD+s keys at bootup, if so try...
    /sbin/fsck -fy
    Repeat until it shows no errors fixed.
    (Space between fsck AND -fy important).
    Resolve startup issues and perform disk maintenance with Disk Utility and fsck...
    http://docs.info.apple.com/article.html?artnum=106214
    You must repair the HD, your best bet is likely DiskWarrior.
    BTW, you might enjoy these DiskWarrior review/recommendations...
    http://discussions.apple.com/thread.jspa?messageID=9645801&#9645801
    http://discussions.apple.com/thread.jspa?messageID=10541019#10541019
    http://discussions.apple.com/thread.jspa?messageID=11918925&#11918925
    http://discussions.apple.com/thread.jspa?messageID=12684129#12684129
    http://discussions.apple.com/thread.jspa?messageID=12744794&#12744794
    http://discussions.apple.com/thread.jspa?messageID=12912879#12912879
    Finally, you should run DiskWarrior if your Mac explicitly warns you of a problem with your disk in the form of an error message. Most of these errors are reported by the built-in Disk Utility whether your Mac OS X version is 10.3 Panther, 10.4 Tiger, 10.5 Leopard, 10.6 Snow Leopard or 10.7 Lion. Here are some of the most common messages:
    Disk Repair: The disk was not repairable by this computer. It is being made available to you with limited functionality. You must back up your data and reformat the disk as soon as possible.
    The underlying task reported failure on exit.
    Invalid node structure.
    Keys out of order.
    Invalid key length.
    Invalid directory item count.
    Invalid extent entry.
    Invalid record count.
    Invalid index key.
    Invalid sibling link.
    http://www.alsoft.com/DiskWarrior/details3.html

Maybe you are looking for

  • Crystal report error in SAP

    I have linked my first Crystal report into SAP (2007A), but when I try to run it I get an error.  Msg header "SAP Crystal AddOn"....Could not load file or assembly 'CrystalDecisions.Windows.Forms, Version = 12.0.2000.0, Culture=neutral, PublicKeyToke

  • Aperture 3.5 issue syncing to iPad  & iPhone vs. Apple TV

    Hi.  Longtime user of Aperture, since v 1.5, and iOS, since the very first iPhone.  I'm currently on the latest versions of all software, for Aperture, Mavericks, iOS and AppleTV. I have several hundred projects and several hundred smart albums in my

  • Navbar alignment issue in IE. OK in Chrome. [was:Please help guys!]

    I just spent days and nights trying to learn as much as possible about web design and i think i was doing pretty good until i got to this problem. I dont know what to do, the navbar sits well in google chrome, but in internet explorer it doesnt. And

  • Exporting Form to PDF, Lose Picture

    Hello, I have one picture (tried both JPEG and TIFF) imported into my form.  It shows up nice in the FormsCentral program.  However, when I save it as a PDF form, I lose the image.  Do you have any suggestions as to how I can fix this?  The image is

  • Controlling the DataGrid

    If I provide my DataGrid with data from an XML file by using an XMLConnector and a DataSet the lines just below works fine: dg_search.vScrollPolicy = "off"; dg_search.showHeaders = false but these lines below have no effect on my DataGrid when they a