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 SkipVought 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. kifaro

    Cannot seem to move web service

    Thanks for the advice, but this isn't it :( Aaron
  2. kifaro

    Cannot seem to move web service

    I am trying to consume a php web service. The original service is at: http://67.59.158.253/qboe/addCustomers.php?wsdl We then moved the service it to another location: http://67.59.158.253/demo/qboe/addCustomers.php?wsdl Both of these services are working... I added it to my app and called it...
  3. kifaro

    RAS custom reporting suggestion

    Hi our business uses the ASP model where multiple customers run the same source code on the same servers just looking at different databases. The database is not accessible from any machine outside the IIS web server I would like to have a way where users can make their own reports online and...
  4. kifaro

    Change table location at runtime SQL Server RAS

    Hi, I currently have working code to change my tables at runtime both for the regular report and sub reports. The problem is it is so slow working and I was wondering if there was a speedier way?? '=============================================================== ' CHANGING THE MAIN REPORT...
  5. kifaro

    Ras and ASP multiple reports at the same time

    Hello, One of the problems with crystal's samples in asp w/ ras is that you can't do multiple reports. I am in the process of trying to work around that by making different session objects. I have been able to get the first page to show, but when I click next I need to pass my parameter along...
  6. kifaro

    Making Graph

    Hi I have the following data returned from a stored proc as a row. Each value represents a month the first if month 1, month 2, etc... how can I get that into a graph. I know the date of the last month is the current date. Thanks, Aaron 12103332.23 12525420.30 13117547.78 14092447.96...
  7. kifaro

    Need to strip out XML

    I need to pull all XML tags out of a string I have. Anyone have any clue what regex I could use?? Thanks, Aaron So far I have: Function stripXML(strHTML) 'Strips the HTML tags from strHTML Dim objRegExp, strOutput Set objRegExp = New Regexp objRegExp.IgnoreCase = True...
  8. kifaro

    website on shopping cart

    I would suggest going to aspin.com and grabbing one of those and modifying it. Why reinvent the wheel??
  9. kifaro

    Checkbox value

    Actually try this: for i=1 to request("chkStatus").count SQL="Update Table Set Status = " & CInt(Request("chkStatus")(i)) & " Where ID = " & IntID cn.execute mysql next
  10. kifaro

    Error Opening Reports that have SubReports

    '========================================================================================= ' ' CHANGING DATABASE INFO AT RUNTIME ' ' Some things to note about the code below: ' ' 1. It gets only the first connection info found in the report. If your report/subreports ' contains more than one...
  11. kifaro

    Distinct Invoice Headers

    Perfect Idea!!! Didn't think of doing it that way !!
  12. kifaro

    Distinct Invoice Headers

    I am having a design issue. I am making a batch invoice report. It can have an unlimited amount of invoices printed. The problem is I need to have a header and a footer for each invoice. I can't put it in the page header/footer as it may have multiple pages. I hope this is clear enough...
  13. kifaro

    Change page layout in subreport

    I am looking to change the page layout in my subreport to landscape in the designer. If I change it in the printer options it seems to change the whole report, not just the subreport.. Any ideas?? Thanks, Aaron
  14. kifaro

    I have a selectionlist with a value

    This is a selectionlist not list box. It is differnt with MMIT. I got an answer from MS and it seems you have to loop through the values then set selected=true. Thanks, Aaron
  15. kifaro

    I have a selectionlist with a value

    I have a selectionlist with a value of 85, how do I set it to being selected? I tried this but the indexes are 1,2,3,4: slTech.SelectedIndex =Convert.ToInt32(olHours.Selection["UserID"]); I am looking for something like this (it doesn't work like this)...
  16. kifaro

    Changing Database at Runtime

    I am looking for some sample code on how to change the database it is logging into at runtime. Please include subreport samples. This is for RAS using Report Client Doc not the RDC!! Thanks, Aaron
  17. kifaro

    Changing Databases at runtime

    I am looking for some sample code on how to change the database it is logging into at runtime. Please include subreport samples. This is for RAS using Report Client Doc not the RDC!! Thanks, Aaron
  18. kifaro

    return Vars from SP to another SP

    Exactly, but now how do you call SimpleSample from another proc and return all the vars without output params Aaron
  19. kifaro

    return Vars from SP to another SP

    The stored proc is already written. Currenty I don't have output parameters, just returning a recordset, which in reality is just just one record. I was hoping I could do this without adding more parameters for output. Aaron
  20. kifaro

    return Vars from SP to another SP

    hey how do I call a stored proc from withing a stored proc that returns : select 1,2,3 -- I need all 3 vars Thanks, Aaron

Part and Inventory Search

Back
Top