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 strongm 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: *

  • Users: IndigoDragon
  • Content: Threads
  • Order by date
  1. IndigoDragon

    Where to get ASP DOM/Object/Functions reference?

    Hi, I'm a 'newbe'-to-'average' ASP scripter by now. That means I don't know every funtion or property I COULD use. What I'm looking for is a comprehensive list/reference/guide of the ASP DOM; a list of (recordset)functions and properties, etc. Well, you know what I mean... I've looked for it...
  2. IndigoDragon

    E-mail html templates for Outlook...

    Hi, I keep running into problems with html e-mail templates for Outlook. When using div's and css the page isn't rendered properly. Especially 'floats'. When using tables I get a message that a table has been corrupted when trying to use it in Outlook. When making a template in Word, saving it...
  3. IndigoDragon

    Preserve linebreaks and linefeeds from memo fields.

    Hi, I'm having difficulty showing linefeeds and linebreaks from data in a memofield on a webpage. The data (text) is only showed correctly (with linefeeds and breaks) when displayed in a (HTML) textarea field. However, I don't want the length of the field to be limited or a scrollbar to show. I...
  4. IndigoDragon

    Adding autotext to protected forms in Word?

    I made a form which I'd like to protect because of text placement etc. However, when a form is protected it is obviously no longer possible to add autotext in the form... Is there a workaround/sollution to this or is this 'just' a feature I have to content with? Thanx for any replies!!!
  5. IndigoDragon

    Exporting custom settings from Word.

    Is there a way to export certain custom settings from Word to another installation of the program on another machine? - I would like to export custom toolbars and autotext so I don't have to set them individually on every machine. Is there a way to do this through VBA (or a function in Word I...
  6. IndigoDragon

    Deny parts of a document from being printed.

    Hi, Is there a way, through VBA, to deny some parts of a Word document from being printed? For instance: to leave out the header and the footer. Thanx for any replies. cYa
  7. IndigoDragon

    CSS, width + IE scrollbars

    Hi there! I've got a frameset where only the content frame will scroll. The css width property of all the elements on the content pages are left out so it will automatically adjust to the bounds of the frame. In IE however, when the length of the content requires a vertical scrollbar, the width...
  8. IndigoDragon

    XPpro SP2 blocking Testing Server in Dreamweaver MX 2004 ???

    Hi there, I'm encountering the following problem that some of you must have encountered... After setting up my new workstation with "XP Pro SP2" and installing "Dreamweaver MX 2004" I found out that there's a problem with the database connectivity. Setting up a connectionstring works just...
  9. IndigoDragon

    "XPpro SP2" blocking the Application Server in Dreamweaver MX 2004 !?!

    Hi there, I'm encountering the following problem that some of you must have encountered... After setting up my new workstation with "XP Pro SP2" and installing "Dreamweaver MX 2004" I found out that there's a problem with the database connectivity. Setting up a connectionstring works just...
  10. IndigoDragon

    Generating PDF's

    Hi, Is there a way to generate a pdf from a sheet without the use of third-party software or going through the print process? Thanx for your suggestions!
  11. IndigoDragon

    Standard cell content linking not updating itself...?

    Hi there, I have a datasheet (Excel) that is filled with selected data from a different sheet. The data is linked with the standard cell content 'link' like: =data!D1 (or =data!$D$1). Should work, did work, but somehow the link got broken and the cells only update when I edit the formula's in...
  12. IndigoDragon

    Filling listbox with multiple columns question.

    Hi everyone, Farely basic question I guess, but how do I add items to a listbox with multiple columns? I mean, how do I add values to the different columns of one index item? I can't get the syntax right doing it with .AddItem and .Column() is a read-only property (right?). ThanX for your replies.
  13. IndigoDragon

    Updating a closed workbook with an ADO connection problem.

    Hi there, I would like to update a record in an external (closed) workbook through an ADO connection. So far I haven't been able to update a record. Could anyone tell me if I'm using the right properties for the connectionstring and sql string? ThanX! cn.Open "DRIVER={Microsoft Excel...
  14. IndigoDragon

    Recordset open/close problem.

    Hi there, I set up a recordset in the following way: Sub GetMailData(theMailID As Integer, skipMode As String) ' Declare variables. Dim cn As ADODB.Connection, rs As ADODB.Recordset, f As Integer, r As Long, strSourceFile As String, strSQL As String, newString As String...
  15. IndigoDragon

    Outlook connection failing.

    Hi there, I made a macro to import mail from an Outlook folder. Worked fine in Office2002. Now, when using Office2003 the script says a 'module can not be found'. The line it's referring to doesn't contain a module name as far as I know. I used the following script: Dim OLF As...
  16. IndigoDragon

    Sheet protection > Protect from editing, leaving it open for vba?

    Hi everyone, [Excel] Is there a way to protect a sheet from being edited directly by a user, even hiding it, but still being able to edit the data in the sheet through vba? ThanX for your replies!
  17. IndigoDragon

    Content of cells too large to hold in recordset???

    Hi everyone, I had a problem importing data into Excel using an ADO recordset. It imported everything upto the third column. At first I thought that any special characters in the third column were to blame. It turns out that the content of the cells in the third column is simply too long to be...
  18. IndigoDragon

    CDO and MAPI question.

    Hello, I've been trying to set up a CDO connection to retrieve the senders mail address. The script returns a 'user-defined type not defined' error for the "MAPI" statement. I've added a reference to the "Outlook 10.0 Object Library". The code I used initially I got from MSDevNetwork (MSDN.com)...
  19. IndigoDragon

    Removing linebreaks (those 'pesky squares') from text.

    Hi y'all, [VBA in Excel] I've been trying to get rid of the explicit linebreak 'characters' from text in cells. Those 'pesky squares'! They're screwing up the text (visually) and my ADO connection only reads data up to those characters. I've already tried the following: - Setting 'wrap text'...
  20. IndigoDragon

    Accessing external workbook from VBA?

    Hi there, [Excel] I'd like to access info in an external workbook from vba. As a sheet formula this would be "='MyPath[MyWorkbook.xls]MySheet'!$A$2". In VBA I just can't seem to get it to work. The notation without "='" isn't accepted. Any tips or is this only possible in VBA with ADO? ThanX...

Part and Inventory Search

Back
Top