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 strongm 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. szfq93

    No-Touch Deployment and app.config

    I've read that there's some sort of issue(s) when using .NET Framework v1.0. Supposedly, .NET 1.1 fixes this. I found a great link for this - but can't remember it!! For now, try this link: http://www.gotdotnet.com/team/changeinfo/Backwards1.0to1.1/default.aspx#00000106
  2. szfq93

    how to push data out to a web client/browser

    We have a web service running (ASP.NET) that receives data from an external provider. Once we receive the data, we have approx 120 seconds for any one of our customers to view and respond to the data (it's a request for service, if our customers don't answer within the time limit, the external...
  3. szfq93

    how to refresh only datagrid portion of .ASPX page?

    I, myself, have been tied up with other projects. I plan on playing with the Iframe idea later this week (hopefully!). One trick I've heard is to use a frame within a frame - but I don't know if this is feasible or even necessary with .NET.
  4. szfq93

    how to refresh only datagrid portion of .ASPX page?

    Isadore, could you provide more detail on how to use the SRC? I'm guessing that, in your case, your chart was an image? How could I use SRC to point to another web page? Thanks again.
  5. szfq93

    how to refresh only datagrid portion of .ASPX page?

    I was thinking of using IFRAME and putting the grid in the frame. Any thoughts on that?
  6. szfq93

    how to refresh only datagrid portion of .ASPX page?

    Good info, thanks guys. I'm going to try both ideas. Let me provide more info on my aspx page: -there are actually two datagrids but both use the same dataset. I separate the data using a filter. The first grid shows "new data" while the second grid shows "the rest&quot...
  7. szfq93

    how to refresh only datagrid portion of .ASPX page?

    I have a web page in ASP.NET that is set to refresh every x seconds. This page contains a datagrid (and a few other items) that shows records from an SQL Server 2000 database table. The problem is that the whole page refreshes every time and is annoying to the user. I NEED to refresh so that...
  8. szfq93

    Stored procedure works in ODBC but not in OLE DB

    As a rule, we ALWAYS use SET NOCOUNT ON (except where counting is needed). So, my stored procedure already has it set. For now, I went ahead and SET ANSI_WARNINGS OFF and that took care of the problem. Thanks for your help!
  9. szfq93

    Stored procedure works in ODBC but not in OLE DB

    We have a complex stored procedure that aggregates data (uses a group by clause, among many other things). This query, when run in the SQL Query Analyzer, returns the following SQL Server warning: Null value is eliminated by an aggregate or other SET operation But, it still returns the data...
  10. szfq93

    calling a (VB) COM+ object from an (C++) NT Service

    I found out that security setup was PART of the problem. Once I fixed up the security issue, there was still the issue with calling CoInitializeEx to setup COM. Since this is an NT service, calling CoInitializeEx at app startup (actually, at class instance start-up - C++ you know!) would not...
  11. szfq93

    calling a (VB) COM+ object from an (C++) NT Service

    I have written a VB6 ActiveX DLL and successfully installed/accessed it on a remote server (via COM+). I've also written a C++ NT service that must access this remote COM+ app. If I run the C++ application as a console app (vs as a true NT service), it works. But, once installed as an NT...

Part and Inventory Search

Back
Top