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")...
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...
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...
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?
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>...
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...
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??
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...
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.
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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.