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 Mike Lewis 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: DanX
  • Order by date
  1. DanX

    Session variable problems

    This may be a little lame, but maybe adding a second or two delay a la System.Threading.Thread.Sleep(ms to each page might help. Maybe its kind of running over itself at some point.
  2. DanX

    Datagrid not refreshing

    In my case it did turn out to be open connections. I was creating the datareader in a separate class file which did not have a destructor "close" method. Works fine now that I fixed that.
  3. DanX

    Datagrid not refreshing

    Hmmm... would that it were obvious to this sham of a programmer. Here's some code: Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load 'Put user code to initialize the page here If Not IsPostBack Then bindTransactions()...
  4. DanX

    Datagrid not refreshing

    I load a datagrid by binding to a datareader. I visible-ize a panel with textboxes and fill with a record's data from a link on the datagrid. I save the edited data from the form and re-bind the grid. The dang data does does not show unless I refresh (re-posting) again. Yet, if I look in the...
  5. DanX

    Datagrid not refreshing

    Ahhhh...yes. Never mind.
  6. DanX

    Datagrid not refreshing

    I load a datagrid by binding to a datareader. I visible-ize a panel with textboxes and fill with a record's data from a link on the datagrid. I save the edited data from the form and re-bind the grid. The dang data does does not show unless I refresh (re-posting) again. Yet, if I look in the...
  7. DanX

    DLL Install to NT4 Server Corrupted lnk files

    I made a dll on my workstation, packaged it, and then installed on our test webserver. After testing one routine succesfully, I went back and made some additions, and re-installed. Since then many of the lnk shortcut files seem to have been corrupted. When I try to start certain programs, a...
  8. DanX

    Home-made DLL Corrupts NT Server

    I installed a simple dll I made with VB6 on our NT test server and since then, the server seems to have changed identities so that the network sees it as my workstation. We have to use my password to log on. Even my MIS people are mystified. The DLL was packaged with the package and deployment...
  9. DanX

    Best Database Design for Keyword Search

    We have an online company directory with 1300 categorized entries. Now we can only search by company name and by drilling through categories. We want to add keyword searching. 1) we are in Access now but contemplating MSSQL. $5000 for the license is no joke however and since this is not a very...
  10. DanX

    Best DB design for keyword search

    We have an online company directory with 1300 categorized entries. Now we can only search by company name and by drilling through categories. We want to add keyword searching. 1) we are in Access now but contemplating MSSQL. $5000 for the license is no joke however and since this is not a very...
  11. DanX

    how can I upload a file and some text from the same form or same page

    I had good luck with a dll component that I picked up at freevbcode.com -- aspupload. It comes with sample asp pages and documentation. To access the form data you use the objects provided by the component. The syntax is something like oUpload.Form("formfield").
  12. DanX

    Appending records from a text file to a table. ADO problem!!

    If I am understanding correctly, seems to me you have 2 questions here, 1) identifying and opening a database and 2) writing data from the text file to the database. Re 1), are your users savvy enough to know what and where the databases are? Instead of having them rummage thru the drives for...
  13. DanX

    INSERT fails when specify columns

    I have an ASP page for inserting a new record in a database. The original code functioned fine, but omitted the column list. I plan to add fields to the database, so I would like to add the column list to ensure the data goes to the right place after the table change. Unfortunately after I added...

Part and Inventory Search

Back
Top