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

    windows 2000 install

    Does it used any linked tables? Dave Mc Donald www.mcdonaldit.com
  2. davemcdonaldireland

    Negativce Time Value Needed

    Oh dear, putting my solution in SQL sounds impossible! Not to say it can't be done, of course. What about just retrieving the TimeIn and TimeOut fields from the recordset and then using my function? i.e: strQuery = "SELECT TimeIn, TimeOut FROM tblWhatever WHERE PatientId = " &...
  3. davemcdonaldireland

    creating an exe file

    Yep, Tool -> Database Utilities -> Make MDE File Be sure to keep your MDB file so you can make changes!! Dave Mc Donald www.mcdonaldit.com
  4. davemcdonaldireland

    Access 97 Imperfect Rounding Equations

    For a full explanation of why Access rounds differently and a way around if, see my FAQ: The Round() function rounds 2.45 to 2.4 and is correct. Why? http://www.tek-tips.com/faqs.cfm?spid=705&sfid=3734 Dave Mc Donald www.mcdonaldit.com
  5. davemcdonaldireland

    Negativce Time Value Needed

    DKORO, Here is a function that takes a number of minutes (- or +) and returns a formatted string like "H:MM" or "-H:MM": Public Function HoursAndMinutes(lngGivenMinutes As Long) As String Dim lngMinutes As Long Dim lngHours As Long lngHours =...
  6. davemcdonaldireland

    windows 2000 install

    loneranger27, If you run any Access .mdb file, you will see a temporary file created alongside it called [filename].ldb, where [filename].mdb is your Access file. So don't worry about the .ldb file, that's normal. The fact that you copied your file from a CD is the key here. It's still marked...
  7. davemcdonaldireland

    How to give different access form to normal user and admin user?

    Hi awinnn, First of all, as far as I can see from your code, if a user types in a non-existing username, you'll get an EOF when you call rst("Password"). A better scheme might be to say: If rst.EOF Then MsgBox "Unknown User Id." DoCmd.GoToControl "UserId&quot...
  8. davemcdonaldireland

    Pass smalldatetime parameter to stored procedure

    Cheers gazzippy, I just spent hours wrestling with this, had forgotten to put in the datatype in the .InputParameters string and was getting that generic OLE error. Pity we can't get a meaningful error from Access 2000 for ADO errors. They've fixed it in Access 2002. Let's all pay more monay and...
  9. davemcdonaldireland

    scheduled scans

    JAMNKEFRT, To fix your problem: For NAV desktop edition: Run from the Windows Task Scheduler (not the NAV scheduler): Navwnt.exe /L For NAV CE: See http://service1.symantec.com/SUPPORT/ent-security.nsf/3d2a1f71c5a003348525680f006426be/c937e09a6ad4e20688256a22002724bb?OpenDocument Did this...
  10. davemcdonaldireland

    scheduled scans

    polymath5, I saw this problem about 2 years ago when working in a small NT4 network. They were using the desktop edition of NAV. Here is an extract from Symantec's Knowledge Base: Scheduled scans for Norton AntiVirus 2000/2001 do not run when logged off Situation: You are using Norton...
  11. davemcdonaldireland

    Radio Button

    Just Wondering, ON YOUR FORM PAGE: ------------------ You are missing something from your radio buttons - a value for each one! <input type=&quot;radio&quot; name=&quot;rdbutton&quot; value=&quot;1&quot;>Radio 1<br> <input type=&quot;radio&quot; name=&quot;rdbutton&quot...
  12. davemcdonaldireland

    Table For an asp page

    Hi Mr. Binary! Try: 'Open the table: Response.Write &quot;<Table>&quot; While not caors.eof 'Write a row with two columns: Response.Write &quot;<tr><td>&quot; & (caoRs.Fields.item(&quot;Problem&quot;)) & &quot;</td><td>&quot; & (caors.Fields.item(&quot;problemdesc1&quot;))&...
  13. davemcdonaldireland

    View Asp pages from CD from

    If you need further help, post your code... Dave Mc Donald www.mcdonaldit.com
  14. davemcdonaldireland

    Null table row, but cant get VBScript to see it???

    You could also use: If RS(&quot;Manufact_Name&quot;).ActualSize = 0 Then .... This will pick up NULLs and empty strings. Dave Mc Donald www.mcdonaldit.com
  15. davemcdonaldireland

    View Asp pages from CD from

    Hi Allen, If you want ASP to run on the laptops (not connected to the net), you will need IIS (or Personal Web Server on Win98) on the laptops. ASP pages won't execute by double-clicking in a directory. Also, an access database needs to be in a directory that can be written to (you know the...
  16. davemcdonaldireland

    Multiple Registered IP's / Websites on One computer

    Also note that the host-headers system won't work for SSL as the host header in the HTTP request is encrypted. See http://www.microsoft.com/technet/treeview/default.asp?url=/technet/prodtechnol/windowsserver2003/proddocs/standard/wsa_hmws_createmultsiteshh.asp for more details. Dave Mc Donald...
  17. davemcdonaldireland

    Multiple Registered IP's / Websites on One computer

    Scenario A: You are hosting the server yourself: True, you can have multiple IP addresses on each network card BUT you don't need to. You can use HOST HEADERS to identify each website. (I don't have IIS in front of me, so I'll do it from memory:) The first thing you need to do is make your...
  18. davemcdonaldireland

    scheduled scans

    Are you by any chance running NAV on NT4? I know there was an issue whereby it wouldn't run when user is logged off... Dave Mc Donald www.mcdonaldit.com
  19. davemcdonaldireland

    Basic Form Validation has me stumped!

    Looking at your form, maybe you've got a return or space or something coming in with the ptext field: <textarea name=&quot;rpost&quot; cols=&quot;50&quot; rows=&quot;15&quot; class=&quot;dark&quot;> <% Response.Write(Session(&quot;rpost&quot;)) %> </textarea> Try...
  20. davemcdonaldireland

    UPDATE error due to list box

    Can you also post: 1) The source HTML from this page as output by the browser 2) A response.write of the UPDATE query formed by the subsequent processing asp page please...

Part and Inventory Search

Back
Top