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!

Search results for query: *

  • Users: Stewart531
  • Content: Threads
  • Order by date
  1. 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...
  2. 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...
  3. 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
  4. 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'...
  5. 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 =...
  6. 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.
  7. 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.
  8. 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...
  9. Stewart531

    Disabling Control+Alt+Delete

    I'm having trouble disabling Control+Alt+Delete. I have seen some sample code on the web that all looks similar to this: Private Const SPI_SCREENSAVERRUNNING = 97& Private Declare Function SystemParametersInfo Lib &quot;User32&quot; Alias &quot;SystemParametersInfoA&quot; (ByVal uAction As...
  10. Stewart531

    Package and Deployment Question

    I'm rather new to the package and deployment wizard. I want to include an empty folder that will be placed in the same directory as my program when you run the installation file. Anyone know how to do this? Thanks. -Dave
  11. Stewart531

    What directory is my program in?

    Is there any way to determine what directory you're in while running a VB program? Thanks, Dave
  12. Stewart531

    setTimeout Function

    Hi, I'm having a problem. It seems like I can't call a setTimeout function inside a function called by onUnload. Any ideas why this is happening? Thanks, Dave
  13. Stewart531

    Calling function with Onunload

    I'm having trouble calling a user defined function when using onUnload, but I have no problem calling a javascript function using onUnload. <BODY onUnload= alert('Testing')> This works <BODY onUnload=&quot;Test()&quot;> Doesn't Work function Test() { //code } Is there something wrong with...
  14. Stewart531

    Closing Popups

    Hi, I'm having a problem closing popup windows created by my program. Right now, I'm trying to call a function I wrote in a javascript file from an ASP file. When I call the function in the js file, it doesn't seem to be aware of the popup that was created earlier by that same js file. Code...
  15. Stewart531

    How to call a javascript function from an ASP file

    Hi, I'm trying to call a javascript function from an ASP file. I've seen examples of this imbedded into a button using an onClick event. I would like to know if there are any alternatives to this, as I would like to call a javascript function whenever the ASP code is run, not only after an...

Part and Inventory Search

Back
Top