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 Chris Miller 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. jamieslover

    problem for expert in: using com apps with asp

    I'm writing a simple dll that is passed a server, database, and sql query and it is supposed to write out a table. I can get everything to work through string concatanation but that can be very slow. How can I make the dll use the response object and simply write it out?
  2. jamieslover

    response.write through COM dll's

    I'm writing a simple dll that is passed a server, database, and sql query and it is supposed to write out a table. I can get everything to work through string concatanation but that can be very slow. How can I make the dll use the response object and simply write it out?
  3. jamieslover

    Finding the next date

    How about: response.write inetRS.Fields("nextday") ?
  4. jamieslover

    Dll works in vb but not in ASP

    just for the record- i did not mean for that laugh out loud face to be there it's just part of SQL OLE DB...
  5. jamieslover

    Dll works in vb but not in ASP

    These weren't my first problems, my first version had a class withing this class called Export. When things weren't working in ASP I got rid of it and threw all the properties into one fat ugly class. :( Basically what this is supposed to do is take sql tables and output them to a fixed width...
  6. jamieslover

    Dll works in vb but not in ASP

    Well, I changed them all to variants, but It didn't work so instead of calling the sub with parameters I made each of the parameters properties that I had to set before running the sub: Instead of MyReport.AddSource myObjRS, "Header" I wrote it: MyReport.ObjRS = myObjRS...
  7. jamieslover

    Dll works in vb but not in ASP

    It still didn't work- the parameters are not optional right now, must I make them optional?
  8. jamieslover

    Dll works in vb but not in ASP.

    Well, I changed them all to variants, but It didn't work so instead of calling the sub with parameters I made each of the parameters properties that I had to set before running the sub: Instead of MyReport.AddSource myObjRS, "Header" I wrote it: MyReport.ObjRS = myObjRS...
  9. jamieslover

    Dll works in vb but not in ASP.

    no. let me see if that works, (if it doesn't work, I still think it's an excelent idea.)
  10. jamieslover

    Dll works in vb but not in ASP

    I've created and compiled a dll that works great when I refrence it from vb but causes an error on one of it's methods when I try to use it in a ASP page. Have any of you had a similar problem or know how to solve mine? I am able to write and read properties in the ASP page, but something must...
  11. jamieslover

    File Searches...

    There is probably a better way to do this, but this is how I do it: Sub SearchFiles(NamePart As String, FolderPath As String, Files() As String) Dim objFS Dim objFolder Dim File Dim k As Integer Set objFS = CreateObject("Scripting.FileSystemObject") Set...
  12. jamieslover

    Dll works in vb but not in ASP.

    I've created and compiled a dll that works great when I refrence it from vb but causes an error on one of it's methods when I try to use it in a ASP page. Have any of you had a similar problem or know how to solve mine? I am able to write and read properties in the ASP page, but something must...
  13. jamieslover

    Creating a class within a class

    The dll is registered. I recieve intelisense after I type in "myReport." but after "ExportSpecs." There is nothing :(
  14. jamieslover

    Creating a class within a class

    If anyone could help me out it would be greatly appreciated.
  15. jamieslover

    debugging my .dll

    "%1 is not a valid Win32 application" is the message I get when I try to run my form after adding my (running) dll to the project. This wasn't happening yesterday and it is frusterating. Can anyone help?
  16. jamieslover

    Creating a class within a class

    I created an active x dll with a class named FixedOutput, one of it's properties is defined as another class called EportSpecs So I could use two dots like this: myReport.ExportSpecs.HeaderDateFormat = "mmdd" Everything worked great in the visual basic environment, but when I...

Part and Inventory Search

Back
Top