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!

Search results for query: *

  • Users: MaddogC
  • Content: Threads
  • Order by date
  1. 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")...
  2. 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...
  3. 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?
  4. 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...
  5. 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...
  6. 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...
  7. MaddogC

    Disable Parameters box after editing CE9

    How can I disable the parameter prompt box in code in CE9. I need to dynamically populate a parameter depending upon a users log on details, but I don't want them to be able to manually change the parameter once I have populated it. Can I setDisallowEditing or PromptOnDemandViewing...
  8. MaddogC

    Modal Windows and Post

    I have a pop up modal window that I need to post to a second page to update the database. I cannot use the querystring due to the amount of data and request.form does not appear to work. How can I get around this problem?
  9. MaddogC

    treeview images

    I am using the treeview from microsoft.web.ui.webcontrols and am trying to get the format the same as the MSDN treeview. I am building the treeview dynamically from a database. The problem that I have is that I need to change the imageurl for a node when the user clicks on it, how do I do this?
  10. MaddogC

    Line throws

    Is there any way to test when Crystal 9 throws a line during whileprintingrecords. I have a report that prints items in columns and rows. Due to the nature of the data I need to populate arrays and then print the items of the array using whileprintingrecords. To ensure that the rows align...
  11. MaddogC

    Connection Information

    How can I can my CR9 report to prompt for connection information every time I run the report. At present it will ask the first time then store the value on refresh.
  12. MaddogC

    sql server login dialog box

    I am logging into Sql server via Access using the following code Set wstemp = DBEngine.Workspaces(0) Set dbtemp = wstemp.OpenDatabase("",False,False, "ODBC;DSN=TEST;USR=TEst;PWD=TESt") Yet I still get the SQL Server Login box, how can I prevent this appearing?
  13. MaddogC

    error 1053 with windows service

    I have written a windows service and am trying to get it running on another machine. When I try to run it I get Error 1053: The service did not respond to the start or control request in a timely fashion. I have installed SP1 for version 1.1 of the .Net Framework as Microsoft have suggested...
  14. MaddogC

    ODBC and Time out

    I have an access DB that connects to SQL Server Linked tables. The db will be on a laptop and disconnected from SQL Server for a time. When the laptop is reconnected to the network, I want a 'synchronise' button to test the connection to sql server again. At present I use the DAO refreshlink...
  15. MaddogC

    Editable Datagrid

    I have an editable datagrid, to which I have added an "Add" button into the footer. To do this I have changed the column containing the delete button from a buttonColumn to a template column Previously a confirm delete attribute was added to the delete button in the OnItemDataBound code as...
  16. MaddogC

    inline or attachment

    I want my user to download a file to Achieve this I have the following: Response.AddHeader "content-disposition", "attachment;filename=Download.csv" A dialog box pops up and the user can save the file. Once this is done however I want to automatically close the download.asp page. How can I do...
  17. MaddogC

    Uninstall JAVA using VB.NET

    Is it possible to test for which version of JAVA is running on a machine using VB.Net. If it is the wrong version required for the program we are using, uninstall it and re-install an earlier version of JAVA. We apparently have some software that will only run on a certain version of JAVA and...
  18. MaddogC

    ontextchanged event not firing

    I have a text box that contains a date of birth. Next to the text box I have a button that opens a calendar popup to pick the date of birth. This is done in Javascript. The popup window returns a value to the main window thus: Link.Attributes.Add("href"...
  19. MaddogC

    Validation Summary and Popup Box

    I'm trying to get a validation summary to show as a pop up box. I have EnableClientScript=True ShowMessageBox=True ShowSummary=true on my validation summary, and have set EnableClientScript=True for the requiredfield and compare validation controls on my page. The Summary is fired but and the...
  20. MaddogC

    DropDownWidth of dropdownlist

    How can I increase the DropDownWidth of a dropdownlist at runtime?

Part and Inventory Search

Back
Top