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 strongm 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. TonyRosen

    ASP to PPT

    Quick question for you guys: Do you know of any software plug-in, add-on, or whatever that will create a dynamically generated powerpoint presentation from a dynamically generated asp page?
  2. TonyRosen

    Values from Functions

    PERFECT!!!! THANK YOU!
  3. TonyRosen

    Values from Functions

    The Code: function getprojectinfo(pn,pd,yr,var) call opendb() strsql = "select pid," & var & " from pbr where projectnumber = '" & pn & "' and period = '" & pd & "' and year = '" & yr & "';" 'response.write strsql set objrs = objconn.execute(strsql) if objrs.eof or objrs.bof then strsql...
  4. TonyRosen

    CreateObject - Page Cannot be Displayed

    I should add .... If I go into IIS Manager and "Pause" and "Start" the website, the delay ends until the next time I try to run the PPT script
  5. TonyRosen

    CreateObject - Page Cannot be Displayed

    Okay ... I have an ASP which is creating a page with information pulled from an SQL database. Within this page, there are scripts (via an include) that generates a PPT and saves the PPT file to the server. When I run the page without the PPT scripts, the page loads in one second .... when I...
  6. TonyRosen

    Excel VBA: Check When Cell Changes

    Good grief ... nevermind .... now I remember why i stopped coming around here .....
  7. TonyRosen

    Excel VBA: Check When Cell Changes

    tomreid, i came up with my answer before reading PHV's response ... so, I'm still a superstar ... HA!
  8. TonyRosen

    Excel VBA: Check When Cell Changes

    Yea! I'm a superstar: Sub Worksheet_Change(ByVal Target As Range) Dim WatchRange As Range Dim IntersectRange As Range Set WatchRange = Range("A1:A10") Set IntersectRange = Intersect(Target, WatchRange) If IntersectRange Is Nothing Then 'Do Nothing Spectacular...
  9. TonyRosen

    Excel VBA: Check When Cell Changes

    Yeah ... tried that ... it won't fire off. No sweat - I'll go off surfing for an answer.
  10. TonyRosen

    Excel VBA: Check When Cell Changes

    How do I use VBA etc.. to determine when a specific cell changes and then run a macro if it does?
  11. TonyRosen

    https post to http

    That FAQ covers the handling of session variables in an environment similar to what you are using ... sort of.
  12. TonyRosen

    https post to http

    Oh, and if you select sessions, you'll want to read: http://www.tek-tips.com/faqs.cfm?fid=2037 (which is the second or third time that that FAQ has popped up today...odd)
  13. TonyRosen

    https post to http

    There's always the session variable(s). You have to store the responses somewhere. Your choices are: 1) Cookies (as you stated) 2) Session Variables (you're switching between the two "sides") 3) Database (You'd be banking that people actually somehow finish the transaction) 4) QueryString...
  14. TonyRosen

    https post to http

    If the users have not input any personal information yet, why not just carry it over in a cookie or two?
  15. TonyRosen

    https post to http

    I'm guessing you are attempting to pass those POST variables from the HTTPS side to the HTTP side ... and, it isn't going to work like that. Why are you having them go back and forth between HTTPS and HTTP?
  16. TonyRosen

    Open Web Page as PDF?

    http://sourceforge.net/projects/pdf-php
  17. TonyRosen

    When I refresh my page

    I'd be more apt to believe it's the server.
  18. TonyRosen

    Read Word From Access?

    I have a MSWord document that has a table with 8 rows and 2 columns. The first column lists questions (1 per row). The second column is answered either "yes" or "no". Is there a way to retrieve that "yes" or "no" from MSAccess using VBA?
  19. TonyRosen

    PHP newbie

    You need the headers set: $to = "tothisperson@thisplace.com"; $from = "Webmaster or Whatever <webmaster@mywebsite.com>"; $subject = "Contact From Website"; $my_headers = "From: " . $from; mail($to, $subject, $msg, $my_headers);

Part and Inventory Search

Back
Top