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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by rikeman

  1. rikeman

    Inet

    I made a program to download files using Inet. Works fine, but I don't know how I can download a file, starting at, for example 8000 bytes, so that the program must start downloading with byte 8001, that it may not download the first 8000 bytes. Does anyone know the command?
  2. rikeman

    setfocus in webbrowser

    If You open the site and click on a textbox you will notic that the send button will be bolder. so I have to click in my program on the textbox in my webbrowser to let the program automaticly click the send button.
  3. rikeman

    setfocus in webbrowser

    I've found a website to send online mail. http://silverchips.mbhs.edu/mailtofriend.php?sid=5447 The problem is that you have to click on a textbox to activate the send button. I have other websites that work like this. anyone have an idea? maybe with setfocus?? Thanks rikeman
  4. rikeman

    Capture and stream webcam

    Hello, I want to make a program that captures video from my webcam, that's not the difficult point, but then, I want to stream the captured video, like an *.wmv file, so when the program is running and capturing, and I open the wmv file, that file must show what the webcam has captured, live...
  5. rikeman

    Progressbar

    Now I've got following code: --------------VisualBasicCodeBEGIN-------------- Private m_lngDocSize As Long Private Sub Command1_Click() m_lngDocSize = 0 rtbDocument.Text = "" ProgressBar1.Value = 0.001 lblProgressInfo.Caption = "" Inet1.Protocol = icHTTP If...
  6. rikeman

    Progressbar

    I've got following code: --------------VisualBasicCodeBEGIN-------------- Private m_lngDocSize As Long Private Sub Command1_Click() txtURL.text = "http://www.mysite.com/test.exe" m_lngDocSize = 0 rtbDocument.Text = "" ProgressBar1.Value = 0.001 lblProgressInfo.Caption = ""...
  7. rikeman

    Progressbar

    This code works onlyu for a web page, I want to made a code for a file on a webpage (ex.: song1.mp3)
  8. rikeman

    Progressbar

    Can I use FTP controls (such as GET, SIZE etc. ) when downloading from a HTTP site? Can someone give me a concrete code to download a file from a HTTP site with a progress bar or something?
  9. rikeman

    Progressbar

    How can I get the file size of the file on the website and how can I get the file size of the file that is already downloaded on my computer? Cause the file will be written when it's completely downloaded, so I can't get the size of the file when it's still downloading.
  10. rikeman

    Progressbar

    Hello, I've made a program that can download a file on a http site with inet. --------------VisualBasicCodeBEGIN-------------- Private Sub Command1_Click() Dim URL As String Dim LocalFileName As String Dim Contents() As Byte URL = "www.mysite/file.mp3" Inet1.Protocol = icHTTP...
  11. rikeman

    CPU temperature

    Hello, I want to make a program that shows the temperature of my CPU, chipset etc. Does anybody know the visual basic code to measure this temperature? Greetz, Rikeman.
  12. rikeman

    Watch TV with WinSock control

    The card supports DirectX (ASUS TV FM Card). Can you tell me now how I can make an app that shows TV video (and maybe how must stream it with winsock); if you can tell me how I can show TV with a VB app it's all right. Thanks for help, Rikeman.
  13. rikeman

    Watch TV with WinSock control

    Hello, I've got a TV tuner card in my pc, is there any way to make a VB app that gets video from a certain channel and sends it over a local network with Winsock to a client who can watch this video? Regards, Rikeman.
  14. rikeman

    Scrolling in WebBrowser

    Can I also scroll to the middle of the page?
  15. rikeman

    Services in Windows (Start, get info etc.)

    Hello, Is there anyway to start a windows service (ex. Remote Procedure Call [RPC]) and get info about it (is the service started etc.) using a code (program) in Visual Basic? Regards, Rikeman.

Part and Inventory Search

Back
Top