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 wOOdy-Soft 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 MaddogC

  1. MaddogC

    Dropdown Word

    This is exactly what I have. No, i'm not using a userform.
  2. MaddogC

    Dropdown Word

    Struggling to do something very simple. I want to additems to a combo box when I open a word document. my code, which doesn't work is as follows. Could someone tell me where i'm going wrong please.: Private Sub Document_Open() Me.ComboBox1.AddItem ("item 1") Me.ComboBox1.AddItem ("item 2")...
  3. MaddogC

    reporting services 2005 html & render

    I am using reporting services 2005 to display an report in an asp.net app. I need to impersonate another user to get to the reports and have therefore used the following web service code. Dim rs As New ReportingService rs.Credentials = New NetworkCredential("User", "pwd", "domain") Can I...
  4. MaddogC

    Anyone Successfully Using Reporting Services like this

    Not sure if you've resolved this one. I am working through something similar and have the following solution. 1.Set up Impersonation in your web.config using <identity impersonate="true"/> 2.Create a web ref to Reportservice.asmx. (I have used this rather than reportservice2005 or...
  5. MaddogC

    JVM

    Can I run some script VB Script or perhaps Javascript that will test for the existence and version of the JAVA Virtual Machine on a client PC?
  6. MaddogC

    Dowload large files to Excel

    Thanks, Finally got back to this. Worked a treat.
  7. MaddogC

    EditItemTemplate Dropdown

    Thanks for the post. However when I click on the edit button the e.Row.RowState is still showing as "Normal" rather than edit. Do you know why this should be?
  8. MaddogC

    EditItemTemplate Dropdown

    Here is my code for the columns in the gridview <Columns> <asp:BoundField DataField="FUNCID" HeaderText="id" SortExpression="FUNCID" Visible="true" > <ItemStyle HorizontalAlign="Left" /> </asp:BoundField>...
  9. MaddogC

    EditItemTemplate Dropdown

    I have a gridview that has a templatecolumn for editing that contains a dropdownlist. The dropdown gets it's data from an objectdatasource and is working fine. I now need to add a selectparamter to the objectdatasource which gets an id from the gridview. I need to do this as the dropdown...
  10. MaddogC

    Filterexpression

    The LIKE is working as long as I put the full string in. For example if I was searching by city and put in LONDON it works, however 'LON' in the search string returns nothing??
  11. MaddogC

    Filterexpression

    I've tried this already. It works fine with "=", can't see a problem with the LIKE though??
  12. MaddogC

    Filterexpression

    I have a gridview that is bound to an objectdatasource. I want to add a search box and button to my page. I have threfore added a filterexpression to the gridview. Firstly the Like statement in my filterexpression does not appear to be working. Secondly, how do I get the search button to refresh...
  13. MaddogC

    Dowload large files to Excel

    I've had a loot at your site. However is there anyway to download the file using a method similar to that above and without the need to save it to the server.
  14. MaddogC

    Dowload large files to Excel

    Cheers I'll have a look, yes the content type shouldn't be in the loop. I'm exporting about 30,000 rows so the Excel limit isn't a problem
  15. MaddogC

    Dowload large files to Excel

    I am trying export a large amount of data to excel from a recordset which fails presumably because of a timeout. How do I get the size of my recordset so that I can break it down using Chunks? My code thus far is Do until RSRef.EOF For Each F In RSREf.Fields if F.Type = adDouble...

Part and Inventory Search

Back
Top