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

    explorer.exe memory error

    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
  2. Stewart531

    explorer.exe memory error

    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...
  3. Stewart531

    Capuring carriage return/submitting a form

    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...
  4. Stewart531

    Link Title

    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
  5. Stewart531

    changing title dynamically

    You're absolutely correct lebisol, thank you. Sorry about the confusion.
  6. Stewart531

    changing title dynamically

    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=&quot;Title of page&quot; response.write &quot;<TD><a href='#'...
  7. Stewart531

    changing title dynamically

    There is one other thing.... When I use the above code it cuts off the string that I'm passing. I get &quot;Title&quot; instead of &quot;Title of page&quot;. Is there any length limit, or am I only allowed to use one word? Thanks, Stewart
  8. Stewart531

    changing title dynamically

    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=&quot;Title of page&quot; response.write &quot;<TD><a href='#' title=&quot; & sTitle & &quot;class='clsblack'...
  9. Stewart531

    changing title dynamically

    Is there a way to change the title of a link dynamically? When I use this code, &quot;sTitle&quot; becomes the title of my link instead of &quot;Title of page&quot;. sTitle=&quot;Title of page&quot; response.write &quot;<TD><a href='#' title=sTitle class='clsblack'...
  10. Stewart531

    Problem with onUnload

    Thanks Jeff, that worked perfectly! I appreciate all of your help!
  11. Stewart531

    Problem with onUnload

    Well, I resolved one of my issues. If I remove the <body> part and use: &quot;<frameset onunload=\&quot;alert('Test');\&quot;>&quot; 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...
  12. Stewart531

    Problem with onUnload

    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 &quot;URLpop&quot; 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...
  13. Stewart531

    Problem with onUnload

    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 =...
  14. Stewart531

    VB/Excel Problem

    Thanks Jean! It was &quot;appli.displayAlerts=false&quot; that did the trick.
  15. Stewart531

    VB/Excel Problem

    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 &quot;Do you want to save these changes?&quot;. Thanks.
  16. Stewart531

    Saving a spreadsheet in excel

    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 &quot;Do you want to save these changes?&quot;. Thanks.
  17. Stewart531

    Excell Problem

    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...
  18. Stewart531

    Excell Problem

    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...
  19. Stewart531

    Disabling Control+Alt+Delete

    Thanks for the help!

Part and Inventory Search

Back
Top