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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by muesli

  1. muesli

    Project File Formats

    Does anyone know where I can get my hands on adecsription of the VB.NET and C# project file formats? I am trying to write a dependency analysis tool, and I need to be able to parse and understand the contents of these files.
  2. muesli

    Connecting to Oracle DB through ODBC using ADO

    Don't. use the Oracle 8.1.7 OLEDB provider: it's much faster and more powerful. Try the following connection string:"Provider=OraOLEDB.Oracle.1;Password=%P%;User ID=%U%;Data Source=%D%;PLSQLRSet=1;ChunkSize=32676;FetchSize=20"
  3. muesli

    Retrieving Value property of <LI> element in DHTML

    say something along the lines of <OL> <LI> This is the first footnote</LI> <LI> This is the second footnote</LI> </OL> would give 1. This is the first footnote 2. This is the second footnote It's the '1' and the '2' for the respective items is what I'm after.
  4. muesli

    Retrieving Value property of &lt;LI&gt; element in DHTML

    Thanks, but how, given the actual object itself, do I find out what its list number marker is?
  5. muesli

    Retrieving Value property of &lt;LI&gt; element in DHTML

    No, sorry. Having created the list item, I'm trying to find out what number the browser has assigned to it, i.e. 1, 2, 3 or even i, ii, iii, iv etc. I need to dynamically add footnotes in my app, and update the corresponding numbers in the body of the text. It is a pain.
  6. muesli

    Retrieving Value property of &lt;LI&gt; element in DHTML

    I'm writing an IE6.0 application where it is necessary to cross-reference footnote markers in text with the footnotes, shown as items in an ordered list. Has anyone found an easy way of getting value of the number next to the list item for future reference? the Value proeprty just returns 0.
  7. muesli

    Anybody have this STRANGE problem?

    The SSTab control that I use needs an SSTabPanel to be drawn on each tab. All controls NOT then placed on the SSTabPanel will show through the SSTab. This is by design, so you can have one control shared between each tab
  8. muesli

    integrating IE 5 in a VB form?

    Tick the Microsoft Internet Controls entry in the Componenst Dialog. This will put a WebBrowser control in your toolbox. You can use this as you desired.
  9. muesli

    Making a manpower organiser. GRID controls

    There are more grid controls on the market than you can shake a stick at. Each one is better for a certain purpose than others. Basically they can be divided up as follows: * data table type grids (displays fields and records: often data bound only such as UltraGrid) * two-dimensional grids (x...
  10. muesli

    regular expressions question (lookahead)

    try &quot;((\s+\d+\s+\w+\s+/\w+\b).*?)(?:\s+\d+\s+\w+\s+/\w+\b)&quot;
  11. muesli

    Enabling For Each for a Dictionary Object

    Try using For Each vKey in objDictionary.Keys, then use the value of vKey to access the dictionary
  12. muesli

    Execution beyond modal form

    I dont see whey you are supplying the 'Me' as the second parameter of the Show event. The only point to this parameter is if you want to keep a form 'always on top' to another. This is irrelevant if the form in quetion is modal. Remove the second parameter and see what happens.
  13. muesli

    Can Make VB Program AS WIN NT SERVICE ??

    Look at Desaware's web site www.desaware.com: you can download the NT service toolkit which we have actually used in a production application. It's rock solid and it's supported.
  14. muesli

    Go to specific row in Listview control?

    Try ListItem.EnsureVisible
  15. muesli

    Copying Access Tables Between Databases

    I'd have a look at the SELECT..INTO statement if I were you. You can select a numebr of fields from on table straight into another: if the table doesn't exist, it creates it.

Part and Inventory Search

Back
Top