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. dstepans

    https and images on site

    Thanks Chip, I think I was not clear enaugh, I know the diff between http & https and that they point to the same image. My questin was how do I detect secure connection and the best method to change the urls. The problem I have here is as follows. I have a header file which is inluded in all...
  2. dstepans

    https and images on site

    Thanks Chip, but I don't want url for the images be encrypted all the time (I was told it slows down the site), I want it to be http but when the connection becomes secure (like during check out), I would like the image urls to change to https. What would be the best way to detect secure...
  3. dstepans

    https and images on site

    Hello, I have images in header and footer. When user is redirected to secure part of site (for example during checkout) I need http be substituted by https in image urls. What would be the best way to implement it? Thanks, Denis
  4. dstepans

    New browser window wiht larger image of the product

    Hello, I have a product detail page with small product image, when this image is clicked or link below (view larger image) is clicked I would like to open a new window with this product's larger image in it. So I would have to call a new aspx page with the product ID as a parameter...
  5. dstepans

    adding variable to HTTP query string from code

    Hi, thanks for your response. Not what I wanted though. What I would like to do is to exactly the opposite, I would like to avoid placing variable in the referred URLs. The url will look like www.somewebsite.com/page1.aspx or www.somewebsite.com/page5.aspx but in page5.aspx.vb file I need to...
  6. dstepans

    adding variable to HTTP query string from code

    Hello, is it possible to add a variable to the HTTP query string? For examle the requested URL was www.somewebsite.com/page.aspx, but in the page.aspx I have a control that queries the request.querystring("ID"), so what I need is to somehow in the code add an ID variable and set it to lets say...
  7. dstepans

    Problems installing application, during setup it asks to restart the p

    Thanks guys. I'll be taking a look at both Visual Studio Installer & Installshield. Denis
  8. dstepans

    Problems installing application, during setup it asks to restart the p

    Thanks. I am using win 2000 server as the development pc where I also pack the files using PDW wizard. The error happens when I install the package on some XP and Win 2000 computers. Will packages created with Visual Studio Installer work on Win XP as well? What about Win 2003? Denis
  9. dstepans

    Get Windows install directory

    Thanks guys. I'll try it. Ran into some urgent problems that have to be resolved first. Denis
  10. dstepans

    Problems installing application, during setup it asks to restart the p

    Please help! I created an install package. But during installation it says that some files have to be updated and the computer must be restarted in order to continue the setup, without it it will not continue. If I click on OK, the computer gets restarted, then when I try to install the project...
  11. dstepans

    Get Windows install directory

    Hello, how could I get a path to the directory where windows is installed. I am using vb6. TIA, Denis
  12. dstepans

    Moving CR 8.5 report horizontally or diagonally from VB6

    Hello, I need to print a report on a preprinted form. Sometimes the text boxes on a preprinted form are moved a little left/right or up/down, so I need to enable the user to move the report fields as well (from 1 to 20 mm) from my VB6 application. Is it possible to do? TIA, Denis
  13. dstepans

    Weird date problems

    Thanks the Totext worked! Denis
  14. dstepans

    Weird date problems

    Hello, I have this in a formular: stringVar result := ""; result := cstr(Year ({Claim.ServiceTo})); result; For the date: 1/1/03 it returns 2,003.00 Why is it formatting it like that? How could I get 2003 or 03? I also get the same format for the Day and Month (1.0 instead of 1 or...
  15. dstepans

    Parsing a date

    Thanks guys, that worked. Denis
  16. dstepans

    Parsing a date

    Hello, I need to get a day, month and year out of the date field. For example todays is 11/21/03 so i will need to get: month 11, day 21, year 03 Any suggestions? Thanks, Denis
  17. dstepans

    Distributing CR 8.5 Report with TTX file

    Thanks guys, sorry took so long to reply, had to leave for the weekeng, just got back. FVTrainer: I get object does not support this property or method errror on this line: .SetDataSource rsDiagnosis, 3 But anyway found the thing that caused the subreport not to print. The details section...
  18. dstepans

    Distributing CR 8.5 Report with TTX file

    Just the same SetDataSource method. Here is the code to set the main report and 2 subreports that I use: Report.DiscardSavedData Report.Database.SetDataSource rs Report.OpenSubreport("Diagnosis").DiscardSavedData...
  19. dstepans

    Distributing CR 8.5 Report with TTX file

    Thanks guys. Just wanted to know if I do need to use ttx files for my approach or is there any other way, and if I need to distribute ttx files with my application. I was having trouble with subreports (I am assigning ADO recordsets to them as well). The main report is printing fine, but the...

Part and Inventory Search

Back
Top