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.
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...
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.
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
...
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...
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!
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...
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...
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()...
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...
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...
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...
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...
After several days and much research against a multitude of .NET sites, I finally solved my problem. Simply removing the Page.DataBind() line from my Page_Load procedure took care of it. Do I get negative stars for that? Guess it's one of the pitfalls of learning on the fly instead of in a...
Thanks for the suggestion but, as you have surmised, I have gone through that article from beginning to end without finding a solution to my problem as yet. I will review it again in case I did miss something but hopefully someone will see a problem in my code or have another suggestion.
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...
Well, I am still going crazy here. I've tried using
tbl.Properties("Jet OLEDB:Link Datasource") = cnn.ConnectionString
AND
tbl.Properties("Jet OLEDB:Link Provider String") = cnn.ConnectionString
but still have problems. My inexperience with ADO really became obvious to me when I realized...
Ok, I think I am on the right track but still having a problem. The code you gave me has morphed into the following (all variables are publically declared):
Public Function SQLServerLinkedTableRefresh()
On Error GoTo OpenConnectionError
Set cnn = New ADODB.Connection
With cnn
.Provider...
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.