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 Mike Lewis 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: biddingbong
  • Order by date
  1. biddingbong

    asp/js? - refresh just one of two frames on form submit?

    Try this: <% Response.Write "<script language=JavaScript>" & VbCrLf Response.Write "top.content.location.href='thepage.htm'" & VbCrLf Response.Write "</script>" End if %> parent.window.location.href will reload the entire page including the frames. And play with these...
  2. biddingbong

    Get info from visitors and convert it into a picture

    Hello everybody, I've been to a site lately, ant there has been something very interesting on that site. There was a little picture (jpeg) and on that it has been written (i)my IP (ii)my OS and (iii) my browser. OK, for putting these info's in a *.jpg picture is not that important, maybe it can...
  3. biddingbong

    Need help on the IIS log

    What's the remedy?
  4. biddingbong

    Using a DLL

    Its not mecessary for the DLL to be in the same directory as the ASP pages or site root directory. Once compiled with VB the DLL will automatically be registered, if you want to register the DLL then Start->Run->regsvr32 c:\mydll.dll Now its registered, call it in ASP like that: Dim objCalc...
  5. biddingbong

    Need help on the IIS log

    Maybe the IP differs each time, but its always from the same country.
  6. biddingbong

    Need help on the IIS log

    Is there a way to permanently block this IP from IIS (WinXP)?
  7. biddingbong

    Need help on the IIS log

    I usually check the log and most of the time there's nothing wrong. But I saw this some days back, can someone give me a little explanation on this: 07:57:27 xx.xxx.xxx.xxx GET /scripts/..%5c%5c../winnt/system32/cmd.exe 500 (I've removed the original IP replacing it by xx) Thanks.
  8. biddingbong

    &quot;Common Event&quot; for controls

    Thats wat Ive been looking for. Thanks vladk. And sorry for the late response, Ive been very busy these days.
  9. biddingbong

    &quot;Common Event&quot; for controls

    mmm...hmmmm... Anyways, I'll stick to your suggestions. Thanks.
  10. biddingbong

    &quot;Common Event&quot; for controls

    Yes, this will work, but I have to code each MouseOver event and there's lots of them. Isn't there any shortcut?
  11. biddingbong

    &quot;Common Event&quot; for controls

    I've been trying to do this but each time tyhe code changes and a new error comes up. What Ive been trying to do is that when the mouse moves on any label or textbox on my form; if its a label, the forecolor changes and if it is a textbox, I want the font to change. I could have done it on...
  12. biddingbong

    how can i obtain system date ?

    sorry, mis-read. For date: Dim strDate As String strDate = Format$(Date, "mm/dd/yyyy") Label1.Caption = strDate
  13. biddingbong

    how can i obtain system date ?

    dim strDate as string strDate = format$(date,"hh:mm:ss") label1.caption = strDate
  14. biddingbong

    Prevent Guest account from using Windows Media Player

    thanks for digging this for me. but is there a way to do this without using the tool?
  15. biddingbong

    Prevent Guest account from using Windows Media Player

    How can I prevent the Guest account from using Windows Media player (and some other programs which are optional)? Thanks.
  16. biddingbong

    Loop through Files in a folder

    Developing from the above, is it possible to list all the files in a folder + all files in the sub folders?
  17. biddingbong

    Use DCOM from machine on network

    Ok, I'm not currently working on the app right now, I'll give a response as soon as possible. Thanks.
  18. biddingbong

    Use DCOM from machine on network

    Ive created a simple dcom and installed in a machine running on Win2000, I want to access the functions in the dcom from another machine. How to make the reference in VB?
  19. biddingbong

    default button

    Focus should be on the suttom that was supposed to post the form, and hitting enter, the form will be submitted.
  20. biddingbong

    Scheduled procedures?

    Great, have to try this. N here's a sheriff sign.

Part and Inventory Search

Back
Top