Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. nesplb

    Cant deploy addin for Word 2007 on office 2010

    Thank you Jason, but shouldn't the 2010 API be able to handle 2007? After what I have read, a 2007 version of an addin should be able to run on 2010, but a 2010 addin (with the new functionality for .NET 4.0) can't be run on a 2007 office. - but perhaps i'm wrong? If I have to make it available...
  2. nesplb

    Cant deploy addin for Word 2007 on office 2010

    Hi! I have a problem with my addin that works fine with Word 2007. (It's created for word 2007) Now I'm trying to install it on a machine with office 2010. I get the following error: "A required component for interacting with word 2007 is not available". I guess it's not finding the office...
  3. nesplb

    Sotring a multi-dimentional array

    Hi again! I want to search by the primary key but just the name value of the sub array as you say in your last sentence! So your suggestion looks very good! Thank you very much!:) Pål Nesteby PDC-Tangen Norway
  4. nesplb

    Sotring a multi-dimentional array

    hmm.... but Can I use ksort to sort the array by the value [NAME]? Perhaps I need to make a function that tests the value of [Name]? Pål Nesteby PDC-Tangen Norway
  5. nesplb

    Sotring a multi-dimentional array

    Hi! I have an array that I want to sort... The array consist of one main-array woth sub-arrays. The main array contains number and each number is owner of a sub array. In this example the main array has these values: 183947, 14415, 146530 Which each ha an array of the keys: [STR], [UNIT]...
  6. nesplb

    Javascript problem with javascript:parent.frames

    Hi again! I found that the menu class had a "target" property that the Interface hadn't implemented. When I implemented this in the interface I could set the target by passing it as a variable instead!:-) The function call is now...
  7. nesplb

    Javascript problem with javascript:parent.frames

    Thanks for the tip mate, but I still get an error so the page doesnt load.. It says: "Return statement outside of function"... My expression is like this now: palmtree.addItem("Nodename",Nodeparent,"javascript:parent.frames['middleFrame'].location.href='main.php?a=11&mapp_fk=436';return...
  8. nesplb

    Javascript problem with javascript:parent.frames

    Hi! I'm quite new to Javascript and I have a problem. I have a menu-framework that is generated from php that writes menu items dynamically from a Database. My Website is a frameset based site with a left frame, a top frame and a main frame. The main frame is called "middleFrame". The menu is...
  9. nesplb

    Applying TableStyle to an XML-table

    I found the solution! With myXMLElement .Tables(1).AppliedTableStyle = "table" End With This because it's not the xml element it self that shall have the table style, but the table of the XML-element Table. Pål Nesteby PDC-Tangen Norway
  10. nesplb

    Applying TableStyle to an XML-table

    Sorry! I made an error: The line .ApplyParagraphStyle("table") should ofcourse be: .ApplyTableStyle ("table") -And it still dont work.... Pål Nesteby PDC-Tangen Norway
  11. nesplb

    Applying TableStyle to an XML-table

    Hi! I'm using XML Rules in Indesign CS3 to find every table element in an xml file in Indesign. (The tables are imported as CALS and looks just like normal Indesign tables in the layout) I find the table element but when I try to attach a TableStyle "table" nothing happens. Does anyone know...
  12. nesplb

    Roman numbers and Alfabetical numbers

    Yeah:) Thanks people! Pål Nesteby PDC-Tangen Norway
  13. nesplb

    Roman numbers and Alfabetical numbers

    I guess there is no function, but its possible to write one. If anyone is interesseted please let me know. I found a nice function on the net. Pål, Oslo, Norway Pål Nesteby PDC-Tangen Norway
  14. nesplb

    Create a dll using VB6 Working model

    Yes I think so. Pål Nesteby PDC-Tangen Norway
  15. nesplb

    Roman numbers and Alfabetical numbers

    Hi again mates! Does anyone know if there is a function that can convert integers to roman numbers (1= |, 2= ||, 3= |||, 4= |V etc.) and a function that can convert integers to alfabetical numbers? (1= a, 2 = b etc.) in VBA? In advance thanks! Pål, Oslo , Norway Pål Nesteby PDC-Tangen Norway
  16. nesplb

    Getting memory or disc error message, Why?

    Thanks for the tips! I'll try to refine my code according to these tips and ill tell when I know the result! The procedure "lagStil" is trying to make a new paragraph style with the name in the first parameter and the basestyle as the second parameter! Pål Nesteby PDC-Tangen Norway
  17. nesplb

    Getting memory or disc error message, Why?

    Hi! I have a sub that is supposed to loop throug all the paragraphs in the document, but with larger documents I get the error "-This method or porperty is unavailable because there is a disc or memory error". Is there something in my code that messes up the memory that I should write different...
  18. nesplb

    How to order paragraph styles in an array?

    Okay! Thanks, but how do I use it to get what I want? I find no good examples for a newbie on this stuff.... Pål Nesteby PDC-Tangen Norway
  19. nesplb

    How to order paragraph styles in an array?

    Dim p As Paragraph Dim pArray [AN ARRAY TO HOLD PARAGRAPH STYLES AND THE NUMBER OF OCCURENCES OF EACH] For Each p In ActiveDocument.Paragraphs 'if p.style is not in pArray- add it to 'pArray. 'else if p.style is allready in pArray add '1 to det "count" field for that specific paragraph style...
  20. nesplb

    How to order paragraph styles in an array?

    Okey... How do i use and populize that? I'm sorry im completely new to these arrays.... TY:) Pål Nesteby PDC-Tangen Norway

Part and Inventory Search

Back
Top