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 SkipVought 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. edge27

    Can you run a VB/MS Access app from a CD

    Thanks for the info so far macleod1021, There is no shared directory. The users will be completely off site and possibly no internet connection. All files need to be contained within the CD including the database. I'm a bit confused myself so far as admin rights go. When you run a setup...
  2. edge27

    Can you run a VB/MS Access app from a CD

    This is the OpenDatabase code I tried: Set dbData = OpenDatabase(App.Path & "\PB2006Data.mdb", , vbReadOnly) First it gives me a "Runtime error 5" message (only get that when I run from the CD and only since I added the readOnly parameter) and then after the OpenDatabase it goes to my error...
  3. edge27

    Can you run a VB/MS Access app from a CD

    Hi, I have used the VB6 package wizard to create the setup for my Vb app. It reads an access database. I used Roxio to burn it to a CD. My client wants users to be able to run it off the CD since some users wont have admin rights to their pc. Is this possible? If so, how? My OpenDatabase...
  4. edge27

    Javascript Alert Msg question...

    Sorry...I have the alert in the isDate function. I will see if you suggestion is apropo tomorrow, cLFlaVA, when Im in the office. Thanks
  5. edge27

    Javascript Alert Msg question...

    Thanks...I am using "return false"...here is the javascript: if (window.Form1.txtDateFrom.value !== "") if (window.Form1.txtDateFrom.value !== "") { var dt=window.Form1.txtDateFrom if (isDate(dt.value)==false){ dt.focus() return false } }
  6. edge27

    Javascript Alert Msg question...

    Hi, I created a javascript validation in .net for the user to receive an alert if they entered an invalid date. The user gets the msg, but the code behind continues and redirects them to the new page trying to use an invalid date. Should the alert have stopped the processing or is their...
  7. edge27

    I'd like to create a ranking system

    I want to create a ranking system where I have over 100 items. Each item can be assigned a rank of 1-99, hi, med, low or nothing at all. Each rank number can only be used once. If an item gets ranked, for example, #33, the current number 33 should become 34, 34 should become 35, etc. I can...
  8. edge27

    onunload event not getting triggered for UK users

    Wow...thanks for the almost real time response! I will try the alert as you describe tomorrow since this user is in the UK. Sorry...I cut off the beginning of my other IE scripting error question when I copied it from another posting site. What I did in resetApp function was just removed the...
  9. edge27

    onunload event not getting triggered for UK users

    I have tried this and he gets both alerts. <html> <body onLoad = &quot;alert('Loaded Again...')&quot; onUnLoad = alert(&quot;UnloadedAgain...&quot;)> <html> I have noticed in my own environment and wonder if it's related to why UK user dont see any error that: When I view the page in the IE...
  10. edge27

    onunload event not getting triggered for UK users

    There is a lot more to it than this but here is function and the event...Thanks Jeff <script language=&quot;javascript&quot;> function resetApp() { var pId, sId sId = document.frmAddStatus.uId.value pId = document.frmAddStatus.pId.value...
  11. edge27

    onunload event not getting triggered for UK users

    Thanks for the reply, I have tried a simple page like that...the user does get an alert for the onload and onunload events in the case of the simple page.
  12. edge27

    onunload event not getting triggered for UK users

    Hello, I have an ASP page that uses javascript to open up another window when that first page is closed or user goes to another link. The javascript runs when the onunload event is triggered. It seems to run fine especially for our local U.S. users. But users in the UK are not getting the...

Part and Inventory Search

Back
Top