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 TouchToneTommy 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 pfrancis

  1. pfrancis

    Check if Spellchecker was used

    I'm helping to create a test that sees if the user knows the basic functions of Word. I'm using VBA to check if certain actions were done. The one action that I am having a hard time checking for, is the spellchecker. Does anyone know how to I could set this up?
  2. pfrancis

    Oracle on Unix connecting to SQL on Windows

    Thank you for the information. It looks like the SQL server is Microsoft SQL Server 2000 version 8.00.760 and from what I can gather, Oracle is version 8i. Do you know if there are any compatibility issues with these versions? Thanks.
  3. pfrancis

    Oracle on Unix connecting to SQL on Windows

    I don't really have any experience in this subject, but I am being told some information that doesn't sound right. Right now, the company I work for has a SQL database that is update from an Oracle database, and right now the servers are on windows machine. In the next month the Oracle machine...
  4. pfrancis

    Output all variables passed with POST

    Is there a way to output all the variables that were sent to a page with POST? Like a specific array that I can loop through or write? (I know is PHP I can do "print_r($_POST);" is there something like this in ASP?) Thanks.
  5. pfrancis

    Parse error

    I think your error is here: $to = "jzn1@yahoo.com" It looks like you need a ";" at the end. Hope that helps.
  6. pfrancis

    Delete VBA after use?

    Sometimes it pays to think a little harder before you I post. I thought of that right after I read it again. Thank you for reminding me.
  7. pfrancis

    Delete VBA after use?

    I have a word document that, when openned, brings up the insert file dialog box and then does some formatting (Find and Replace). After that it saves as a different file name. However, when you open the newly saved file, it runs the insert file and formating VBA again. Is there a way to remove...
  8. pfrancis

    Shop cart W/O sessions/cookies... possible?

    You are using a regular variable in you code instead of the session variables. On page 1, try using: $_SESSION['testvar1']="Apple"; On page 2, try using: print $_SESSION['testvar1']; Hope that helps.
  9. pfrancis

    Inserting a File into a Word Document with a Dialog Box

    PHV, Thank you, that worked like a charm.
  10. pfrancis

    Inserting a File into a Word Document with a Dialog Box

    JVerdaasdonk, Thank you for your help. I tried using what you posted, but I am still not getting what I want. I'm trying to get .txt files. Using the sDir (with *.txt at the end) as the .Name, sometimes I get the right directory and sometimes I don't, but I always get the .txt files. Do you know...
  11. pfrancis

    Inserting a File into a Word Document with a Dialog Box

    Thank you, this does help. Another question though. If I want to specify a directory to start in and a file type, how do I do that? Thanks again for your help.
  12. pfrancis

    Inserting a File into a Word Document with a Dialog Box

    Ok. I know I can use selection.insertfile with the file path to insert a file, but the file that needs to be inserted has a different name each time. Is there a way to open the dialog box to select the file. The box would be the same as if the user had selected the "Insert" menu and then clicked...
  13. pfrancis

    Putting a text/doc file into a php page

    I'm not sure is this is the answer to your question or not, but I think you want to open a text document, read the content and then display it on the screen. You may want to read on PHP functions like: fopen() fread() fgets() I hope that helps.
  14. pfrancis

    onbeforeunload and links

    Thanks adam0101 for your help, but that didn't work. It did make me find another way to do it though. Here is what I used. This is at the top of the page: <script language="javascript"> ClosingVar = true window.onbeforeunload = ExitCheck; function ExitCheck() { if (ClosingVar == true) {...
  15. pfrancis

    onbeforeunload and links

    Ok. I did a search to figure out how to stop a window from closing and I found the onbeforeunload with the dialog box. This works to stop the window from closing, but if a link is clicked it still goes through the unload and still prompts, even though the window isn't closing. Is there a way to...

Part and Inventory Search

Back
Top