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?
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.
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...
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.
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...
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.
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...
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.
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...
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.
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) {...
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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.