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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by mmarino

  1. mmarino

    xmlns:xsi namespace in an element

    I'm building an application in VS2008, but I'm using classic ASP with XML 6.
  2. mmarino

    xmlns:xsi namespace in an element

    Hello, I'm new to XSLT transformation, and I can't find an answer to this. My XLST file contains the following: <?xml version="1.0" encoding="utf-8"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:output method="xml" encoding="utf-8"...
  3. mmarino

    vsFlexGrid printing

    Thanks for answering. I ended up using vsflexgrid's PrintGrid method instead. I'm trying to find more documentation on it, but not having much luck. I want to put page numbers and I know there's a way, I just don't know how. Monica
  4. mmarino

    vsFlexGrid printing

    I'm using ComponentOne's vsflexgrid (version 7.0) to show data from a SQL database. I need to print the grid but I have to add a header to the page. I looked up the function they have vsflexgrid.PrintGrid, and all I can do is add a footer. I don't want to use a reporting program like Crystal...
  5. mmarino

    Wizard Manager

    I'm trying to make it very easy for my users to get the initial setup of my program. I want to have a wizard that takes some info and enters it to the database (MS-SQL 2K). I was looking at the Wizard Manager and it seems like it handles the display, so all I have to add is the functionality. I...
  6. mmarino

    How to add reference so dll resides in system32

    Thank you for all your answers. My problem was that my program expects an ini file in the App directory, but when it doesn't find it, it tries to create one by calling functions in the dlls, so it's somehow expecting them to be in the App directory. So I'm going to have to keep them there to get...
  7. mmarino

    How to add reference so dll resides in system32

    Ok, I doubled checked, and I do have the files being registered by the install program. Anything else I should check? Thanks for your help. Monica
  8. mmarino

    How to add reference so dll resides in system32

    Thank you so much for your answers... Yes I mean deploying compiled code. I did register the dlls, or at least I thought they were getting registered (I'm using Wise Install). I will double check that the dlls are getting registered and will post back on monday. Thanks a bunch :) Monica
  9. mmarino

    How to add reference so dll resides in system32

    This might be very simple, but I can't find an answer. I have a vb6 group project (.vbg) that contains 2 dlls and one executable. It all works fine until I want to install on a different machine. If I put all 3 files (dlls and exe) in the same directory (the App dir), it runs correctly. However...
  10. mmarino

    formula with number range

    Thank you! I knew it had to be very simple... Something else, how do I pass the parameter from VB6? As a string or as an array? mm
  11. mmarino

    formula with number range

    Hi everyone, I'm using Crystal XI and connecting to a MS-SQL database. I'm trying to get a report that selects one or multiple locations (and groups on them). Basically in SQL it would be something like "select * from table where Location in (1,2,3)". I added a number parameter LocId and set...
  12. mmarino

    licensing question

    Hi there, I hope I'm in the right forum, if not please redicrect me. I can't find a straight answer to this question, so hopefully someone here has run into the same situation. We have Crystal Reports XI Developer. We are creating a website for a client, and will be hosting the site for them...
  13. mmarino

    open existing excel spreadsheet in browser

    Ok, I can open a plain excel file now, thanks! Now my problem is that my excel file has a macro in it. Basically the macro opens a txt file and formats the text to make it look good. So far I can't get the file to open. I think it can't find the txt file. Is there anything special I need to do...
  14. mmarino

    open existing excel spreadsheet in browser

    You mean, read the file line by line and print each line? Hadn't even thought about that... Thanks, I'll try it.
  15. mmarino

    open existing excel spreadsheet in browser

    I have an excel spreadsheet that lives on the server, I'm trying to get it to open on my browser window. This is my code (openxl.cgi): $excel="\/usr\/common\/reportdir\/excelsample.xls"; print "content-type: application/vnd.ms-excel\n"; print "content-disposition: inline\n\n"; print...

Part and Inventory Search

Back
Top