I ran a windows memory diagnostic test, and it said my memory was fine. Are there any other possibilities, or could my memory still be corrupt?
Thanks,
Stewart
Hi, I am getting an explorer.exe - Application error whenever I try to open windows explorer, control panel, my computer, etc. It says:
"The instruction at '0x77f91658' referenced memory at "0x63b56161'. The memory could not be 'read'.
Does anybody have any ideas what is causing...
I have a problem submitting a form. It consists of one field and a submit button. When a user clicks the submit button, the page loads properly. However, if the user hits enter in the field, the page loads improperly. Is there any way to capture the carriage return or can I simulate a button...
Is there any way to make the title of a link appear indefinitely when you leave the mouse on the link? Right now, the title disappears after 5-6 seconds. Is there any way to change this?
Thanks,
Dave
Thanks for the reply. The reason why my code didn't work is because I needed single quotes before and after the variable name in the html because the variable is going to hold more than one word. It should now be:
sTitle="Title of page"
response.write "<TD><a href='#'...
There is one other thing.... When I use the above code it cuts off the string that I'm passing. I get "Title" instead of "Title of page". Is there any length limit, or am I only allowed to use one word?
Thanks,
Stewart
Sorry, I'm an idiot. I forgot that response.write deals with a string, and doesn't differentiate between variables and other strings. My code should be:
sTitle="Title of page"
response.write "<TD><a href='#' title=" & sTitle & "class='clsblack'...
Is there a way to change the title of a link dynamically? When I use this code, "sTitle" becomes the title of my link instead of "Title of page".
sTitle="Title of page"
response.write "<TD><a href='#' title=sTitle class='clsblack'...
Well, I resolved one of my issues. If I remove the <body> part and use:
"<frameset onunload=\"alert('Test');\">"
it now works.
Now I have a new problem. Instead of doing an alert() function, I want to use a user defined function. For example, this will not work...
Ok, that works and I get the alert. However, when I put that in, the <framestring> part doesn't work, and the document whose path is contained in "URLpop" is not opened in the window. The only time the document is opened in the window is when I remove the <body> part. Also, I don't...
I'm having a problem calling an onUnload function from the <body> portion of my framestring. It causes the code in the <frameset> to not work. I know the <frameset> part is fine, because it works when I remove the <body> code. Here is my code:
NFW =...
Is there any way to save a spreadsheet from the vb side before closing it? This is for an automated program, and I don't want to get the message box saying "Do you want to save these changes?". Thanks.
Is there any way to save a spreadsheet from the vb side before closing it? This is for an automated program, and I don't to get the message box saying "Do you want to save these changes?". Thanks.
Nevermind, I figured out my problem. My code was actually:
msobj.Cells(1, 1).Value = rs!Date
It seems like I couldn't assign a value from a record in a table directly into the cell. I just added these lines of code and it now works:
dim tempstring as string
tempstring = rs!Date...
I'm trying to send a string into a cell. The string contains a date of the form xx/xx/xx xx:xx AM/PM. The problem is that vb treats the xx/xx/xx as an operation, and sends a decimal to the cell in the spreadsheet. Here is an example of the code:
msobj.Cells(1, 1).Value = strDate
I'm...
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.