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!

Recent content by TCavins

  1. TCavins

    DataSet Select

    I have a DataSet with two tables named "FirstResults" and "SecondResults". Both return the same number of rows and the same columns. SecondResults may have some different information than FirstResults and it may have identical information. I would like to get everything...
  2. TCavins

    DataSet with 2 tables help

    I have a DataSet with two tables named "FirstResults" and "SecondResults". Both return the same number of rows and the same columns. SecondResults may have some different information than FirstResults and it may have identical information. I would like to get everything...
  3. TCavins

    two buttonscolumn in datgrid

    Add an OnItemCommand to your datagrid. Give it a name such as OnItemCommand="CustomCommand_Click" On your button, assign a CommandName that corresponds to the string shown below such as CommandName="WriteMessage". Then in your code behind or function of CustomCommand_Click...
  4. TCavins

    FileIndex MSIDXS

    I'm working with Index Server and am getting an error of: System.InvalidCastException: The data value could not be converted for reasons other than sign mismatch or data overflow. For example, the data was corrupted in the data store but the row was still retrievable. When I try to return the...
  5. TCavins

    DataSet sorting?

    Paul, Thanks for responding. When I add the OrderBy in the SQL statement it works fine, just can't get it to work in .net for the dataview. Do you have any other ideas? The Response.Write is only for debugging purposes. Once I get the sort to work, I am going to remove it. Thanks, -Tim
  6. TCavins

    DataSet sorting?

    Okay, I'm trying something else along with what I have above. I've set up a DataView as shown below... DataTable dt = new DataTable(); DataView dv = oDS.Tables[0].DefaultView; dv.Sort = "BulletinDate DESC"; I'm now looping through the dataview as: foreach (DataRow oDR2 in...
  7. TCavins

    DataSet sorting?

    I have a dataset as DataSet oDS; and I'm populating it with data so that I can read it as foreach (DataRow oDR in oDS.Tables[0].Rows) { ... } However, I would like to be able to sort the DataSet before reading it all in the foreach statement. I've tried...
  8. TCavins

    Interactions and Transitions

    I have a page that has transitions and a hot object interaction. The hot object opens a popup window that can be closed. It should be able to be reopened multiple times. My issue is that the interaction is not active until after the transitions have transpired. I am able to display the image...
  9. TCavins

    Web Connector Configuration?

    I am having trouble getting the web connector to work properly between the web server and the application server where the reports are located. I have configured the Web Connector like this: The virtual path of the web server is E:\Reports and the Actual Path on the application server is...
  10. TCavins

    Server object, ASP 0178 (0x80070005)

    I am using ASP to create word object for spell checking purposes. The object works sometimes and I've noticed, it depends on where I put it in the page. If I have the code at the top, it runs perfectly. However, if I have it in the middle around If statements, it runs incorrectly and gives me...
  11. TCavins

    Prompt for DB Username and PW

    Wouldn't it do it everytime though if it was a result of it running as a service?
  12. TCavins

    Prompt for DB Username and PW

    I am accessing reports from an ASP page passing them to the report that is displayed in the ActiveX viewer for Crystal. I am using the Native driver for SQL Server to access the database. The reports run fine most of the time. Every once in awhile a user will be prompted to enter in the UserID...
  13. TCavins

    Prompt for DB User and PW

    I am accessing reports from an ASP page passing them to the report that is displayed in the ActiveX viewer for Crystal. I am using the Native driver for SQL Server to access the database. The reports run fine most of the time. Every once in awhile a user will be prompted to enter in the UserID...
  14. TCavins

    Crystal Report Viewer Control ActiveX

    I am using the ActiveX viewer to view reports online. When a user goes to a report, they are prompted to download a file that will allow them to view the report. The file is an ActiveX Control named Crystal Report Viewer Control and it is saved in C:\WINNT\Downloaded Program Files. Since...
  15. TCavins

    Multiple form fields/Same name

    Jared, I fixed it a different way.I added an additional hidden field in the form named QuestionDescription with a value of "". In javascript I took the last element of the array and reset it to descr. It was actually an easy fix, I just never thought of doing it like that. Thanks...

Part and Inventory Search

Back
Top