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 John Tel 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 ChasBoots

  1. ChasBoots

    Sorting Problem with Controls on Form

    The data is accessed through an SDK that includes a full set of properties and methods for extracting the data. Unfortunately the database is in a format such that it cannot be queried.
  2. ChasBoots

    Sorting Problem with Controls on Form

    I have an odd problem that I hope someone can explain or offer a way in which to correct it. I have a listbox control that stores the results of a search in an ascending order. As the listbox is populated, I am also creating an array that is populated with similar data. However, the sort...
  3. ChasBoots

    XML - Saving/Reading/Writing Settings for a Windows Form

    Finding out how to accomplish what I wanted using a dataset was difficult. However, your suggestion of using the readxml method was a big help and got me what I wanted. Thanks.
  4. ChasBoots

    XML - Saving/Reading/Writing Settings for a Windows Form

    I currently have a Windows form that has hardcoded some information that includes server FQDN's. For obvious reasons, I want to make this configurable within the app itself. I assume I want to embed the following information into an XML file: Farm Server Farm1 Server1 Farm2 Server2 ...
  5. ChasBoots

    Retrieving/Passing User Credentials

    I have an application I developed which users access via a Citrix connection. AD authentication is handled by our web interface site before the user can launch. Once it is launched, the user is authenticated against the AD on one server. I need to be able to retrieve the AD credentials to...
  6. ChasBoots

    Passing Parameters to VB Class

    Bingo! Thanks for the input. Took me a while to get implement but at least I've gotten through that part of it (other headaches follow). One of these days I will be able to take a class on .NET and learn it properly instead of having to rely on the generous help of everyone else!
  7. ChasBoots

    Passing Parameters to VB Class

    I guess the thoughts were too specific in my head and not sufficient in my question... :( I have a web form (Page1.aspx) that will run 1 of 5 queries against an SQL database based on user input. The results of the query are presented in a dataset. An available button can transfer the user to...
  8. ChasBoots

    Passing Parameters to VB Class

    I am using the following code as per Microsoft to convert a Dataset to XML for use in a Chartspace: Imports System.Web Imports System.Xml Imports System.Xml.Xsl Imports System.Data Imports System.Data.SqlClient Public Class MakeData Implements IHttpHandler Public ReadOnly Property...
  9. ChasBoots

    PostBacks and Click Events

    Thanks hth, that did the trick. I can't believe I couldn't see that solution for myself. Now onto other heaaches... [thumbsup]
  10. ChasBoots

    PostBacks and Click Events

    My web page has 3 list boxes a 4 buttons. Let me present some code first: Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load If Not IsPostBack Then lb_FieldNames.Items.Clear() lb_XFieldNames.Items.Clear()...
  11. ChasBoots

    Download window opening twice on Export event

    Thanks for the suggestion but that did not resolve the problem....
  12. ChasBoots

    Download window opening twice on Export event

    I've searched virtually every possible place I can to find an answer. I have come up empty. I am using the typical code to export a datagrid to Excel. However, when the "File Download" dialog re-appears if clicking the Open button. What am I missing? If I remove the Response.Addheader line...
  13. ChasBoots

    Error: Server cannot set content type after HTTP headers have been set

    Let's see if I can describe what I want to do without getting too convoluted.... My form has a dropdownlist server control (dd_RptList) which displays a static list of reports that can be executed. The image button (img_Question)is within a <span> element (span_Question). When rolling over...
  14. ChasBoots

    Error: Server cannot set content type after HTTP headers have been set

    Greetings.... All attempts to find a solution have come up empty thus far. I hope someone here has an answer or suggestion. On my web page, I have an Export button to send the output to an Excel workbook. The code is very similar to what others have posted in other threads: Private Sub...
  15. ChasBoots

    Sorting Dates in Datagrid - Should I redesign???

    Here is the situation. I have a form that runs one of several reports as chosen by the user. Each report produces a different number of columns with different field names. The resulting data ultimately populates a datagrid that autogenerates the required columns and formats it as desired...

Part and Inventory Search

Back
Top