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 TouchToneTommy 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: earme
  • Content: Threads
  • Order by date
  1. earme

    System.NullReferenceException: Object reference not set to an instance

    System.NullReferenceException: Object reference not set to an instance of an object. This is the error that I'm getting in my asp .net cs2002 application. The website is working fine on my development box, but when I unpackaged it onto the production machine I keep getting errors. This...
  2. earme

    changing XML with clientside script

    Is it possible to modify xml with clientside vbscript or javascript. I'd like to change the attributes of a couple nodes depending on their values. Is this possible? If so how do I do it? Any websites with good examples? Thank you, Earme
  3. earme

    Dev dll erroring with 'Class does not support automation'

    I have dll's that I use in my asp pages, some dll's call other dll's in addition to being called from the web pages. All dll's have a Dev Version and a Prod version (they have Dev or Prod at the beginning to signify which one they are). The dev and prod versions use the same cls files, but...
  4. earme

    multiple shopping baskets/carts

    How do I make Microsoft Commerce Server handle multiple shopping baskets/carts? Any one have any ideas? Any one done this? Thanks, Earme
  5. earme

    incorrect logoff

    I have a web page running Commerce server 2002 off of IIS and every once in a while a user (usually the same one or two) will have a problem with being logged out incorrectly. What happens is they login, see the welcome page, but when they click on any of the links they get the login screen...
  6. earme

    Across then Down causing blank sections

    Hello, I have a CR with 2 columns that previously printed labels 'Down then across'. There are 14 labels per sheet so I added 13 blank detail sections that only are shown if it's the first record and the starting label is greater than the current detail section. This worked great for 'Down...
  7. earme

    Export erroring for over half of options

    My VB6 application uses the CRViewer for the reports. I'd like it to be able to export, but half of the export options result in an illegal operation. I've tried to replace the dll's, but it the error still happens. Any ideas? Is there a way to supress the items that error? The options that...
  8. earme

    partial text searching using full text search

    Is it possible to search on a partial word using full text search? So, if 'pollywollydoodle' is a part of multiple product descriptions, doing a seach using 'polly', 'wolly', 'doodle', or even 'llywo' would return all products having 'pollywollydoodle' somewhere in their description. Any...
  9. earme

    8007000e: Not enough storage is available to complete this operation

    Hello, I'm getting the error 8007000e, "Not enough storage is available to complete this operation." It's running Windows 2000 and has at least 2gig free and the task manager doesn't show that anything is hogging memory. The code that it happens on is alldata=rstemp.getrows() in: set...
  10. earme

    80020009 Exception occurred

    Hello, I'm getting the following error in my asp: (0x80020009) Exception occurred It says that it's happening at If Trim(varTemp) = "" Then in the following statement: Function RestoreNull(varTemp) If Trim(varTemp) = "" Then RestoreNull = Null Else RestoreNull =...
  11. earme

    Crystal or VB faster?

    I have a report that runs off of an ado recordset that gets a query passed from VB. The query is created off of a temp table that is created by 2 other queries that sums various values from 2002 and 2001 (one query does 2001 into temp, the other 2002 into temp2, and the final one joins them)...
  12. earme

    ado recordset has data, not showing up in report

    Hello, My report and subreport have a bit of a problem. First, some info, I'm using VB 6 and working with the reportviewer for crystal 8.5. My report will show the information, if I step through the .veiwreport and .show code, otherwise, nothing, no data, nada. So that's problem one. Problem...
  13. earme

    IIS not allowing pages to be viewed

    Hello, I set asp pages to a client to copied to the server, 2 new, 3 to replace existing, one inc file also to replace and existing. Also had a database Table to add fields too, walked someone there thru how to do it. Now the site's not working. The guy that I was walking thru things ended up...
  14. earme

    Error when trying to save view

    I'm receiving the error "View definition includes no output columns or includes no items in the FROM clause" when I try to save the following query as a view: SELECT dbo.CP.ProdNo, dbo.SP.cost, dbo.CP.Price, round((isnull(dbo.CP.Price, 0) - isnull(dbo.SP.cost...
  15. earme

    restoring backups

    Hello, Our database is currently being backed up via SQL and then that backup file is being saved to tape and taken offsite. My question is if there is a fire or something and the machine with the database is destroyed, how do you restore the database off the backup? What do needs to happen so...
  16. earme

    stored procedure that takes an array?

    I'm trying to create a stored procedure that will be used to create a Crystal Report. I want the @repno to be able to take multiple values, but I don't know how to do that. Can any one help me out? An example of the stored procedure is below. Thanks! Evie CREATE PROC sp_OrderCount @date1...
  17. earme

    Hello, I want to do a query simi

    Hello, I want to do a query similar to the following: SELECT CUSTFILE.CustNo, COUNT(MASTER.PONo) AS Expr1 FROM dbo.CUSTFILE LEFT OUTER JOIN MASTER ON CUSTFILE.CustNo = MASTER.CustNo WHERE (MASTER.OrderDate > date1) OR (MASTER.OrderDate < date2) GROUP BY CUSTFILE.CustNo HAVING...
  18. earme

    [Microsoft][ODBC SQL Server Driver]Timeout expired

    Hello all, This is the error: Microsoft OLE DB Provider for ODBC Drivers (0x80040E31) [Microsoft][ODBC SQL Server Driver]Timeout expired I'm receiving the timeout error because of the following call: mySQL = &quot;UPDATE CUSTFILE SET Ref = 1 &quot; & strWhere connection.CommandTimeout = 300...
  19. earme

    Script Blocking for Corporate Edition

    Hello, I'm running IIS off of a 2000 machine with Norton Corporate Edition installed. One of the scripts uses the FileSystemObject and causes the page to stop responding. I fixed this on the development machine (which has Norton 7.07) by disabling script blocking. However on the CE version I...
  20. earme

    GetFolder causes page to spin forever

    Hello, My page never finishes loading, it just sits and runs forever. And then if I stop it and attempt to view another asp page it does the same thing. However, if I open a new window (start a new session) then it runs fine, until I attempt to load that specific page. By placing a series of...

Part and Inventory Search

Back
Top