User Profile

Collapse

Profile Sidebar

Collapse
icesign
icesign
Last Activity: Aug 14 '09, 09:35 AM
Joined: Aug 4 '09
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • You can try padding-left of the div instead of the margin of its content. But is it really worth it? All that javascript...
    If you just need a button with an image use <button><img/>hello</button>
    And jQuery can ease your pain. :)
    See more | Go to post

    Leave a comment:


  • I think the problem is with the path you're requesting. Try to use path relative to the root (something like this '/mysite/otherdir/xml/stations.xml').

    PS: Why don't you use the jQuery?
    See more | Go to post

    Leave a comment:


  • icesign
    replied to Problem with closing the C# workbook
    in .NET
    Try to release ALL com objects.
    Code:
    objM_oBook = objM_oExcelApp.Workbooks.Open(strFilePath, 0, false, 5, "", "", true, Excel.XlPlatform.xlWindows, "\t", false, false, 0, true, null, null);
    Here "Workbooks" is not just a collection, but a COM object which is created when you access it. You need to release it too with ReleaseComObjec t.

    Maybe this little class will help you....
    See more | Go to post

    Leave a comment:


  • Just check if the property is IEnumerable (non-generic version) and then cast objects to whatever you want. That way you will cover arrays too because arrays are IEnumerable.
    See more | Go to post

    Leave a comment:


  • Xml Schema: Extending base root element with unique/key/keyref element.

    I know that the selector of these elements has a scope relative to the element being declared, but maybe there is a way to get beyond bounds of this scope or maybe just a way to extend base element?
    Here’s a working example:
    Code:
    <xs:schema id="schema"
        targetNamespace="http://tempuri.org/schema.xsd"
        elementFormDefault="qualified"
        xmlns="http://tempuri.org/schema.xsd"
    ...
    See more | Go to post
No activity results to display
Show More
Working...