Search results for query: *

  • Users: tahu191
  • Content: Threads
  • Order by date
  1. T

    Edit a text file on a web site server

    I need to be able to edit a text file that's on a website server, here's how i'm attempting to read it: Dim sr as StreamReader = new StreamReader("http://www.website.com/text.txt") but this apparently doesn't allow a web link. any suggestions?
  2. T

    Question How do I pause media.soundplayer?

    I need to be able to pause the music i have playing, or at least be able to mute it and then unmute it again. any ideas? I use the Media.Soundplayer...thanks!
  3. T

    creating a shuffle method?

    I am trying to create a method that "shuffles" around the elements in an array of images, here is what i have now: Dim i1(32) As Bitmap Dim count As Integer = 32 Do Dim a As Integer = Rnd() * count Dim i As Image = images1(a) If...
  4. T

    Set form size to current screen resolution?

    How would I set my form size to be the screen's resolution?
  5. T

    Take part of an image to assign to another variable

    I have a large image that I could like to cut out smaller parts from and store them in an array. I guess it's kind of like sprite imaging for games. How would I do this?
  6. T

    How do i draw a background and pictures onto a form?

    I want to draw a background and pictures that have a transparent background onto the form. Are they able to be in png format? Also I need it to clear the screen after each drawing to be ready for the next Thanks
  7. T

    Get any key typed into the system?

    How would i get any key that's typed into the system?
  8. T

    Is there anyway to have the program send an email?

    is there any way i can have my program send an email along with some text?
  9. T

    how do i format a hard drive?

    i need to make a program to be able to format a hard drive. how would i do this?
  10. T

    how can i get a list or something of current windows open?

    i need to find out what windows are open during program execution, is there any way of doing this?
  11. T

    formatting a hard drive?

    how would i make it so the program will format the hard drive?
  12. T

    how do i capture a picture of the current screen, and also move the mouse

    i need to be able to capture whatever the current screen on the computer looks like and how do i force move the mouse cursor?
  13. T

    how do i determine if page cannot be displayed in broswer

    in my web browser i need to be able to determine if the page has the "THis page cannot be displayed" error. is there any way of doing this?
  14. T

    how do i use context menu

    i need to use a context menu for when you right click on the webbrowser. i am using vb.net 2005, it is a vb webbrowser, i dont know how to make the context menu show please help thanks
  15. T

    how do i determine highlighted text?

    i need to be able to determine what text is highlighted on a form so if the user clicks something it will import whatever is highlighted into a notepad-like program i made
  16. T

    i need to make new page from one vb browser to open in next

    i need to make it so if one page causes a popup that it will cause another broswer in vb to open it. i am using vb 2005
  17. T

    i need help to navigate web browser

    i am using vb 2005 and i am trying to make a web browser. I think i may just be reading the url from the textbox wrong. i have no idea. this is what i have please help me Public Class Form1 Dim Browser As New Windows.Forms.WebBrowser Private Sub btnGo_Click(ByVal sender As...
  18. T

    how do i hide a start bar

    i want to be able to hide the start bar at the bottom of the screen to make my application full screen. How do i do this?
  19. T

    deleting directory???

    I need to know how to delete a directory or folder on a computer using VB 2005
  20. T

    i need help putting vb 2005 projects on asp.net

    how do I put my vb 2005 on an asp.net website or something similar so you can access them on the web. I would really appreciate help for this. My teacher needs me to do this and I do not know how
Back
Top