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 IamaSherpa 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. Interwizard

    Active X Error and IE...

    YEah, you probably aren't going to like this - but add the site to your trusted sites list and try it again- it'll probably work then. Bill
  2. Interwizard

    Ever written a public event into a WebService?

    Is it possible to code a custom event into a asp.net webservice and have a calling app listen for that event? On my WebService, I have: Public Event OrderComplete(ByVal Sender As Object, ByVal e As OrderCompleteEventArgs) Public Class OrderCompleteEventArgs Inherits...
  3. Interwizard

    Postback and Querystrings...

    Great tip! I had no idea you could manually store things in ViewState. That's sweet. Thanks a ton for the tip!
  4. Interwizard

    How do I keep a variable's value?

    Great tip about the viewstate. I didn't know you could do that. Thanks for the info!
  5. Interwizard

    Postback and Querystrings...

    Hi all! In ASP.Net,, when using a webform that does a postback, is there a way to modify the postback to include querystrings originally passed into the page? Currently, I have web forms that allow for QueryStrings to be passed to alter results. Those pages allow paging functions, etc...
  6. Interwizard

    Newbie: What is the best way?

    Great tip! Thanks for the info. I've been real reluctant to drop my dataset to file and then zip it. It just didn't "feel" like a clean solution. Compression of the stream objects, now that's the ticket. I'll have to check that out.
  7. Interwizard

    Data Philosophy Question: Of Sorts: Writing back data.

    Good point. Even ADO probably wrote the entire recordset back as it appeared in the cursor. I suppose the field level isn't that big of a deal. I don't hear other people being concerned with it. Probably just me being paranoid of spastic data issues. =)
  8. Interwizard

    Data Philosophy Question: Of Sorts: Writing back data.

    ....I've had several cases where I built an SQL Statement dynamically in the Stored procedure based on the parameters. ( The SQL Statement is treated as text and then passed into EXECSQL) However, this was a pain in the butt. My problem is and continues to be - in a disconnected model, the...
  9. Interwizard

    Newbie: What is the best way?

    I have a have a similar design requirement. It seems alot of people in the white-lab, perfect world, "microsoftish" scenarios, let their vb.net clients connect to data, directly ot through a webservice and then persist the dataset to file for offline content. In my situation, this...
  10. Interwizard

    Data Philosophy Question: Of Sorts: Writing back data.

    When you use Stored Procedures, does your SP build dynamically to only update fields that have been updated or does it update the entire record?
  11. Interwizard

    Data Philosophy Question: Of Sorts: Writing back data.

    I'm relatively new to ADO.net. In my VB 6 days I would use ADO to write back to my data source directly and my VB code usually contained my select/update statements. Given that I am partial (though, not entirely biased) to generating my data code from scratch as opposed to having the...
  12. Interwizard

    How do you handle large record count results? Grid?

    I've been working in asp.net for a month or so implementing .net whenever possible as apps at our company come up for upgrade. Part of my move to .net I had hoped to try to loose a little of the prejudices I had built up against grids in my vb days and it seemed that MS wishes the world to...
  13. Interwizard

    Looking for Class & Collection Design Tip...

    Hi All! I'm a little new to implementing Classes that emulate business objects and I wanted to see if I could get some advice. I'm working on a barcoding app. Barcode input comes from a keyboard wedge and is essentially interpreted as keyboard input. I was hoping to have the form...
  14. Interwizard

    SubReport not Showing in export, using RDC in VB

    I have a report that uses the Report Designer Component to preview a report. I give the user an option to export the report to a PDF file and automate the responses to the answers, so that I can manipulate the file once it's created. Here's the problem - one of the subreports in the report...
  15. Interwizard

    Server Has not Yet been Opened to SQL Server 2k

    I've read lots of other threads regarding this topic, been to the Cyrystal Support Site and read those entries and even looked over a FAQ or two, but I'm still stumped... I have a VB6 App Using Crystal Reports 8.5 into a SQL Server 2000 DB. When I kickoff the ViewReport method of the report...
  16. Interwizard

    ACK! Crystal 8: Subquery or Stored Procedure

    Thanks for your reply! I do have a parameter in my stored procedure, and the stored procedure works great in Query Analyzer, from VB or ASP. The parameter does show up when I add the stored procedure to my crystal. When I edit the selection query, I set the Parameter from the SP to equal...
  17. Interwizard

    ACK! Crystal 8: Subquery or Stored Procedure

    I would appreciate anyone's help with this: I'm sure it's just me being stupid. I have a subreport that needs to do a subquery. Select * from psl.dbo.ipoxmitpobreakdown where bponum = (select distinct bponum from psl.dbo.ipoxmitPObreakdown where bponum=@ponum or ponum=@ponum) i haven't...
  18. Interwizard

    Heterogenous Replication SQL 2k, OLEDB Db2/As400, HOW?

    Hiya all. My business uses an AS/400 for all of it's data storage and for some terminal apps. I want to replicate data from the 400 to my SQL Server 2000 Database so that some of our PC and Web Apps can be exposed more tightly with the data for generating reports, viewing data, etc. I'd...

Part and Inventory Search

Back
Top