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

    What reference is needed to declare a printer object?

    Inherited an Access 2000 database, and this line in a module throws an error: dim ptr as Printer Error is 'User-defined type is not defined'. Do I need to set a reference to something to get access to the printer object?
  2. newtoASP

    aspnet_wp recycled?

    User are experiencing the browser (IE only) hanging at seemingly random intvervals. The following is from the event viewer: Event Type: Error Event Source: ASP.NET 1.1.4322.0 Event Category: None Event ID: 1003 Date: 7/13/2004 Time: 7:31:39 AM User: N/A Computer: Description...
  3. newtoASP

    data access app blocks error msg

    I created a .net applicaiton on a different machine using the MS data access application blocks. On my new machine, I downloaded the package again, built the dll, set a reference in the application, and included the line "Imports Microsoft.ApplicationBlocks.data". I am getting the...
  4. newtoASP

    open existing vs.net 2002 app on windows 2003 server

    I am trying to open a vs.net 2002 app on a windows 2003 server. I have the app using version 1.0 of the framework, but whenever I try to run the project, or open if for that matter, I get a dialog box saying preparing to install...then another saying 'please wait while windows configures the...
  5. newtoASP

    pgp encryption

    Can I use vb.net to encrypt a text file with someone else's pgp generated public key? Any links to any such info? Thanks.
  6. newtoASP

    profiler and auditing

    Any advice or links to info on auditing with profiler? I have a filtered trace (security only), would like to schedule it daily and dump the output to a table. The table will be truncated daily and used as the source of a report. Thanks - Greg
  7. newtoASP

    nesting repeater or datalist controls

    Is it possible to nest a repeater or datalist control inside another of the same? I get 'Object reference not set to an instance of an object' when I try this.
  8. newtoASP

    binding a collection to repeater control

    I am trying to bind the result of a calender conrtrol week selection to a repeater conrtol. What do I need to put into the <item template> of the repeater to display the individual dates returned?
  9. newtoASP

    mts error with craxdrt

    I am using craxdrt.dll in an MTS package. Once every week or two, I get the following error in my event log, and a Dr. Watson error in MTX: &quot;The run-time environment has detected an inconsistency in its internal state and has terminated the process. Please contact Microsoft Product Support...
  10. newtoASP

    extra tabs in textarea

    I have a textarea that displays data from a database. When a user enters / changes text in the textarea, 2 tabs characters are added to the beginning of the text. If I look at the entry in the database after form submission, there are no spaces or tabs at the beginning of the text, and if I...
  11. newtoASP

    db2 reports

    Can I use crystal to report directly from a mainframe db2 file?
  12. newtoASP

    shared variables

    If I have a variable in my subreport declared as shared numbervar, how do I use it in a formula in the main report? Thanks - Greg
  13. newtoASP

    newbie inheritance question

    An example in the book &quot;Programming VB.net: a guide for experienced programmers&quot; (pg. 196), deals with abstract base classes. A PayableEntity class has a 'MustOverride Public' member called TaxID(). The implementation is left to the Contractor class and the Employee class. My question...
  14. newtoASP

    string class

    I am attempting to use a stringbuilder class in an asp page and getting the following error in an included asp file: Microsoft VBScript compilation error '800a03ea' Syntax error /templates/StringClass.asp, line 2 Class clsString ^ The code for stringclass.asp is: <% Class clsString...
  15. newtoASP

    another nt logon question...

    I am using the code from the FAQ to get the users' NT logon ID, and it works if the user logs on using the logon dialog that appears. My question is, how do I grab the ID without showing the logon box? Thanks.
  16. newtoASP

    another CRAXDRT Error question

    I searched the kb for this error without success. Any suggestions? CRAXDRT Error Occured on Server. Error Number: 429 Error Description: ActiveX component can't create object Using IIS 4, Winnt 4sp6a, CR 8.5 developer edition, calling a .rpt from an asp page. The report previews fine with...
  17. newtoASP

    asp .net requirements

    Is anyone using asp.net on NT Server? I have read that NT4sp6a will work with the .net framework, and other articles say W2k or better only. What about VS.net? Can I run it on NT workstation (sp6a) and connect to an NT4/IIS4 server? TIA
  18. newtoASP

    return rs or string?

    If I need to format data for a report to display on a page, is it better to create the entire string (html and data) within a dll and return the string to the asp for display, or is it better to return a recordset from the dll and format the string within the asp. In both cases I will be using a...
  19. newtoASP

    onMouseOver event

    Can someone tell me why this code does not work? <tr onMouseOver=this.style.backgroundColor='#ffffdd' onMouseOut=this.style.backgroundColor='#d3d3d3 bgcolor=silver> <td>....</td></tr> I get a runtime error stating &quot;Error: Object required: 'this' Thanks in advance.
  20. newtoASP

    multiple forms on one page

    I have 2 forms on one page, one is inside the other and attatched to a select box. <form1...> <form2...><select onchange=form2_submit>...</select></form> <some input boxes> </form> The onchange of the select box calls a sub that does: sub form2_submit documnet.form2.submit end sub Is it...

Part and Inventory Search

Back
Top