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

    Date/Time Addition Help

    Also M-F and omit week-ends (Sat-Sun). Thanks again, David
  2. excalibur78

    Date/Time Addition Help

    I don't do a ton of javascript but we have to use javascript for this since the vendor uses javascript. Here's what we're trying to do: Add 6 or 12 hours to the current time. We'd like to have it calculate it based on 7am-5pm work hours. Example: User completes the form at 3pm and it's a 6 hour...
  3. excalibur78

    Wrtting vbscript in javascript

    Guess it would be client-side. Executing it in a function in IE.
  4. excalibur78

    Wrtting vbscript in javascript

    How could I do this in javascript? objForm.ADORecordset("RequestorEmail") = username I tried just <% objForm.ADORecordset("RequestorEmail") = username %> but it didn't like it.
  5. excalibur78

    Restore BAK Help

    We had some issues that lead to the need to restore from backup. The .bak file is 5megs. When I try to restore it's making a huge 35gig+ log file and basically hangs. It never restores the db. Is there anyway I can restore the db without the log file? Why would the .bak file be 5megs but the...
  6. excalibur78

    Ping a port for status?

    Looking to make an ASP page that queries a specific Ip and port just to see if it responds. (allows a connection) Just a basic server up check. Can't seem to find anything that gives me any direction on how to do this. Thanks.
  7. excalibur78

    ccna test

    Don't remeber any bit question but I know you'll see OSI layers order of data. So make sure you know what data is called at each layer.
  8. excalibur78

    CCNP recertification advice

    Site I used for free prep material is http://www.net130.com
  9. excalibur78

    CCNP recertification advice

    I've taken and passed the 642-891 about October last year. It's a pretty brutal test in length and content. I did it to get my CCNP and skip 1 test. Best advice I can give is get a testking from testking.com and go over it 3-5 times cover to cover then take the test few hours after you go thru...
  10. excalibur78

    Network Lock-Up with Dual NICs

    I have this same issue. I'm in need of a fix as well.
  11. excalibur78

    Terminal Services in the Windows Server 2003 Enterprise Edition

    When you have TS setup in Administrative mode you *must* be in the administrator group to have rights to log on.
  12. excalibur78

    Count a query

    Final select was: Select Count(*) FROM [Masterfile] LEFT JOIN [Inventory Tracking] ON [Masterfile].[Store #] = [Inventory Tracking].[Store #] WHERE [Masterfile].[PC/LAN1 Start] >= '4/29/2003' AND [Masterfile].[PC/LAN1 Start] <= GetDate() AND [Inventory Tracking].[BOM Ship Date] Is Null AND...
  13. excalibur78

    Count a query

    Thanks everyone. I modified Atomic's and think I got it working right. Thanks, David
  14. excalibur78

    Count a query

    Anything will work for record count. [Masterfile].[Store #] would be the logical choice. What I was trying to do is somethink like this: Select Count(*) from (SELECT [Masterfile].[Store #], [Masterfile].[PC/LAN1 Start] FROM [Masterfile] LEFT JOIN [Inventory Tracking] ON [Masterfile].[Store #] =...
  15. excalibur78

    Count a query

    I can't seem to get a record count of this select to work: SELECT [Masterfile].[Store #], [Masterfile].[PC/LAN1 Start] FROM [Masterfile] LEFT JOIN [Inventory Tracking] ON [Masterfile].[Store #] = [Inventory Tracking].[Store #] WHERE [Masterfile].[PC/LAN1 Start] >= '4/29/2003' AND...
  16. excalibur78

    Email &amp; NT Service Help

    We currently have a VB app the uses Outlook to email out stuff every 30 minutes. We need to make this app into a NT Service which isn't too hard. But then how can we interact with Outlook to send emails? Right now it only works if your logged into the machine. Is there a way to pass Outlook info...
  17. excalibur78

    Record Selection Help

    I can't seem to get this record selection to evaluate both things. It only seems to evalutae the top line and not use the or. ({Store Wiring.Finished} = &quot;False&quot; and {Store Wiring.Current Status} <> &quot;Green&quot;) or ({Store Wiring.Finished} = &quot;False&quot; and {Store...
  18. excalibur78

    Need some recommendations

    I'm looking over the results but it looks to be good as follows: UPDATE [Punchlist] SET [Display] = 'True' WHERE [Punchlist].[Store #] IN (SELECT [Punchlist].[Store #] FROM [Punchlist] JOIN (SELECT [Store #], [Finished],'b' AS TableID FROM [POS_SCO Cutover2] UNION SELECT [Store #], [Finished]...
  19. excalibur78

    Need some recommendations

    Yup helps a ton. Don't want you to write it for me just needed that idea. I can get it from here I think. Thanks again. I'll post the working code incase you need it someday or to help others. =)
  20. excalibur78

    Need some recommendations

    Thanks. Think I can make that work. Prolly won't be till tomorrow but I'll let you know how it goes.

Part and Inventory Search

Back
Top