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

    Dec 31 04 & Jan 01 05 both show weekday as Sat

    Thanks! That cleared up that test. I thought I was losing my mind. I then realized how in "reality" the code is failing. The previous programmer was only using 1/1 and not including the year - :( Thanks again! Jessica [ponytails2]
  2. jlsmithhartfiel

    Dec 31 04 & Jan 01 05 both show weekday as Sat

    How can these both show as Saturday? 12/31/04 was a Friday. It's messing up my reporting...argh! Response.Write "<br>Dec 31 " & WeekdayName(weekday(12/31/04),7) Response.Write "<br>Jan 1 " & WeekdayName(weekday(1/1/05),7) TIA, Jessica [ponytails2]
  3. jlsmithhartfiel

    Terminal Services 2003 and MSN Messenger Status says &quot;away&quot;

    Hi! Not sure if this is the correct forum. Didn't see one for Terminal services. We have TS2003 with MSN Messenger 6.2 installed. We can all log in & communicate with each other internally, as well as with external Messenger users. All seems well, as I'm busily working away, I glance down...
  4. jlsmithhartfiel

    form on top without focus

    I have a program that creates msn-like alerts on certain conditions. So a little form pops up in the lower-right hand corner. The problem is, if I'm typing in another app, the popups are taking focus. I tried to use the setwindowpos and flag swp_noactivate, but it's not working. Is there...
  5. jlsmithhartfiel

    Use Textbox Value for email

    Try (untested) objMail.To = &quot;sales@test.com,&quot; & request.form(&quot;txtEmail&quot;) hth, Jessica [ponytails2]
  6. jlsmithhartfiel

    Found window, now navigate to frame

    Hi! I have gotten some great code snippets from this forum. What I'm doing is searching for an IE window that has a particular title & bring it to the front. (Intranet app, so title should always be the same) If it's not open, open it. What I'm looking for now: Now that I have the window...
  7. jlsmithhartfiel

    Calling external .exe with parameters?

    Thanks! I'll give that a try. Jessica [ponytails2]
  8. jlsmithhartfiel

    Calling external .exe with parameters?

    Thanks! Unfortunately, while this is an intranet app, the users still have access to the internet, so I don't think that will work. Actually how I have it is on a laptop with only access to the internet (not on a network). Need to be able to run a file on the laptop. Jessica [ponytails2]
  9. jlsmithhartfiel

    Calling external .exe with parameters?

    Hi! I have a similar problem & spazman's & ShadowFox's solutions work for me. I'm getting a message when I run it. I know it has to do with my security settings, but I'm wondering if there's a way to supress it without changing the settings. This is for an intranet app only. Message: An...
  10. jlsmithhartfiel

    Open Page in New Window Always

    In the window looking, add an onload option in the body tag, can't remember exact syntax but I think it's window.focus() Jessica [ponytails2]
  11. jlsmithhartfiel

    Passing Image map name to .js

    Hmmm, I guess I'm still unclear... What mouseover, then is calling the 2nd.js file function? Jessica [ponytails2]
  12. jlsmithhartfiel

    Passing Image map name to .js

    untested, can you pass, this.name? So, onMouseover=&quot;stm(Text[8],STyle[0],this.name)&quot; hth, Jessica [ponytails2]
  13. jlsmithhartfiel

    can I check in files other users have left checked out

    Depends on how it's set up, but I've been able to open the db & type in the user name I want, I check 'em in or undo & log in as myself Otherwise you'll need to ask the db admin to do it. Jessica [ponytails2]
  14. jlsmithhartfiel

    Help-Complex equation / formula required to analyze tiered data

    Try this in Excel Col A Col B Col C Col D Row 1 Tier 1 1 500 0.05 Row 2 Tier 2 501 1000 0.06 Row 3 Tier 3 1001 0.07 Col C Row 7 Enter # of Packets: 10000 Row 8 Total Charge: 685 Formula in C8 is...
  15. jlsmithhartfiel

    Preview pane in Outlook 2002

    I tried this on 2 pc's unfortunately running outlook 2000. winme & win2000 I'm surprised they would have taken that out. :( It was under the title Preview Header. Hopefully someone with outlook2002 will respond. sorry Jessica [ponytails2]
  16. jlsmithhartfiel

    Preview pane in Outlook 2002

    From the tools menu, select option. Click on the other tab Click on preview pane button Click on the Font button Voila! HTH, Jessica [ponytails2]
  17. jlsmithhartfiel

    0x8004020F error sending email

    Thanks for the quick response! There aren't any client level scripts for this page, so we can rule that out. I did try to duplicate the data the user had a problem with from my pc, but I didn't get the error - it went through... I'm not very familiar with the CDO, just picking up where...
  18. jlsmithhartfiel

    0x8004020F error sending email

    Hi! A few people are having problems sending an email from my registration page. Not everyone is having a problem. I haven't been able to discern a pattern as of yet. Any ideas would be appreciated! The error is as follows: The page cannot be displayed There is a problem with the page you...
  19. jlsmithhartfiel

    Pass a recordset to a stored procedure?

    more to do calculations on the recordset & pass back those calculations; rather than doing the calculations in asp. Like using sql to sort the passed record set which is already a filtered & sorted for display purposes, but I need to resort for calculation (specifically median). Am storing &...
  20. jlsmithhartfiel

    Pass a recordset to a stored procedure?

    I have a page that is returning a record set based on a sql query. Is there a way to pass this recordset to a stored procedure for manipulation? TIA Jessica [ponytails2]

Part and Inventory Search

Back
Top