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 SkipVought 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: *

  1. chix001

    Automatic Download

    RachelK, Check out SonD's other post http://www.tek-tips.com/viewthread.cfm?SQID=644738&SPID=855&newpid=855&page=1 for the answer to your question. Thanks, CHIX001
  2. chix001

    Printing Datagrid Column Headers

    I'm looking for the same thing...anyone?? Thanks, CHIX001
  3. chix001

    ThreadAbortException when redirecting to a new page ...??

    Nevermind - I finally found a MS article (thanks Google for having a WAY better search engine than microsoft.com) and found that my problem was that I was using Response.Redirect(sitename) instead of Response.Redirect(sitename,false). Here's the link if you'd like to know more...
  4. chix001

    ThreadAbortException when redirecting to a new page ...??

    Hi, I have a webform which contains a datagrid, label, and a linkbutton. When the link button is clicked, the datagrid's datasource and the label's text are put into session and then I redirect to a new webform. Each time I do this, I receive the following error message...
  5. chix001

    Microsoft Access, parameter queries, and simple syntax

    Thank you for introducing me to the DLookup() function. Late yesterday, my colleague explained to me that I needed to use a recordset and showed me the correct order of my references list in VBA, so I am accomplishing what I need to. Thanks, CHIX001
  6. chix001

    Microsoft Access, parameter queries, and simple syntax

    I have started on the wrong end of the spectrum I think. i am very familiar with ADO, SQL Server and .NET; however, I am now having to write an Access application and the smallest syntax issues are driving me batty. I have a query that gives me a distinct list of user IDs. I want to create a...
  7. chix001

    Passing a datagrid in session

    Hi IndyGill: Thanks - I thought that I had tried that first, but apparently not - it worked like a charm! Have a great day! CHIX001
  8. chix001

    Passing a datagrid in session

    Hi everyone! I have a datagrid on one page that I need to use on another page (sort of a printer friendly thing), and the way that I would like to do this is to pass the actual datagrid in session, redirect to the new page and retrieve it from there. Seems simple... When I retrieve the...
  9. chix001

    exporting to excel

    You don't have to convert any of the columns, but you might want to change the following line: Response.Write(tw.ToString()) to Response.Write(tw.ToString) That should do it. Hope this helps, CHIX001
  10. chix001

    vb.net copy large binary object QUICKLY

    if you use File.Move it will actually move the file instead of copying it. File.Copy(srcpath,destpath) copies. CHIX001
  11. chix001

    Errors with deployed app on server (no errors on local host)

    Hi Jason, To your first issue about Activeds.tbl: EXCLUDE IT!! You're lucky that it has been file-protected on the server. What we have found (through pain and anguish, of course) is that if you include it in the setup project, it overwrites the existing copy of the file, and when you try to...
  12. chix001

    Using the SN command line utility to strongly name an assembly...

    OK - I did a search on my hard drive for the SN.EXE file and found it, so now I at least am getting different errors. That's a start, I guess. Thanks anyways.
  13. chix001

    Distribute Database w/ Application

    Tooled, SQL Server is NOT distributable like Microsoft Access. That's the beauty of it - you load and keep your data in one place, and point all of your applications (.NET + Access, C++, whatever) to it, through OLE or ODBC. If you're using VB.NET I have found that the easiest (albeit not too...
  14. chix001

    I Miss VB6!

    RoguePoet01 - If you notice the two drop down boxes in your .net IDE that sit directly above the code you're typing, you'll see your "dropdown salvation." The box on the left lists all the controls (textboxes, forms, checkboxes, etc.) that are created on the form that's in focus...
  15. chix001

    Using the SN command line utility to strongly name an assembly...

    This sounds silly but I just can't figure it out. I have a VB.NET project that I need to compile into a DLL for distribution. When I try to strongly name it (by using the sn -k utility on the command line, the error message I get is that "sn is not recognised as an internal or external...
  16. chix001

    Lotus Enterprise Integrator (LEI)

    It's VERY particular about replication activities with SQL databases. Indexes have to be kept on the SQL tables, but initial loads of the data fail when using indexes (if you have thousands of rows to insert initially.) Look at what you're wanting to do - we found that after using it awhile...
  17. chix001

    crystal 8.5 non-embedded report in dot net

    Nevermind - I figured it out. The problem I had with Access is that the ASP.NET account didn't have rights to the directory that held the Access db. The problem with the drill-downs and group tree not functioning was actually a fluke with the viewer control on the page. I deleted and re-added...
  18. chix001

    Using Mulitple versions of Crystal

    Also you can download Microsoft's Dependency Walker at www.dependencywalker.com to check and see what dll's your application is using and where they're coming from. Hope this helps, CHIX001
  19. chix001

    Crystal Report - Logon report failed after depoly web application

    Hi Keli10 - Where does the Access database reside? Remember that the ASP.NET user account (which the web site runs under) HAS to have access to the directory where the Access db is located... Also, is there any security set up on the database? Hope this helps, CHIX001
  20. chix001

    crystal 8.5 non-embedded report in dot net

    Hi, I have several reports that I have created in Crystal 8.5 Developer Edition, and I want to be able to view them in a .NET web application. From other helpful info on this site, I have been able to get the code running to view them correctly, but only when the data is saved with the...

Part and Inventory Search

Back
Top