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!

Search results for query: *

  • Users: ChasBoots
  • Content: Threads
  • Order by date
  1. 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...
  2. 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 ...
  3. 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...
  4. 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...
  5. 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()...
  6. 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...
  7. 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...
  8. 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...
  9. ChasBoots

    Datagrid Events - Why won't they fire?

    Greetings all... I have learned a wealth of knowledge reading and searching through all the threads in this forum. However, I am at a loss to find a solution to my problem, despite reviewing all relevant posts. I have a form that is correctly populating a datagrid when a query executes...
  10. ChasBoots

    Linking SQL tables to Access - How do I do it with VBA?

    Greetings all... I have an Access XP database that I initially created by linking tables from a SQL Server database with a system DSN. I am now in the process of trying to find out how I can apply code to relink the tables with a DSN-less connection string AND with SQL Server authentication...
  11. ChasBoots

    Repopulating 2 combo boxes based on selections from each

    Ok, first, I apologize for the length of the subject. I didn't quite know how to describe my problem. Second, I learned a wealth of knowledge just from perusing and searching all these forums so my thanks go out to all those who have ever answered a post. Third, I couldn't really find a...

Part and Inventory Search

Back
Top