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 gkittelson 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: lmb3
  • Order by date
  1. lmb3

    Minimizing Forms in Shell Apps

    I'm trying to control the window state of one application from another VB app. The ShowWindow API works great, except for one thing, code in the Form_Resize event doesn't fire when the application is minimized by a ShowWindow call. When I run both apps I'm able to Min/Max/Restore the other...
  2. lmb3

    DragDrop a label

    Hi, I am trying to build an interface which allows a user to click on labels on the screen and drag them and then drop them in new locations. I have been trying to figure out the DragDrop methods in .NET and so far have gotten the text from the label to drag into a text box but I actually want...
  3. lmb3

    Shape Objects in VB.Net

    I am trying to make a form in VB.net with a square grid on it with labels in the grid. I need to know which square is which so I thought I would make them all individual Shape objects in an array. Unfortunately, I did not realize that VB.net does not support the Shape object from VB 6. Does...
  4. lmb3

    Converting jpeg files to avi file

    I need to convert a series of jpeg files into a single avi file. Is this possible in VB? If so, any ideas on how? Thanks!
  5. lmb3

    Very simple question

    How do you make the mouse pointer on a form invisible? I know how to change the mouse pointer, but how do you just get rid of it? Thanks!
  6. lmb3

    Inputing text from a text file

    I know how to input a line of text from a text file in a sequential order using: Line Input #filenum, varName I am curious about whether there is a way in VB to if you know that there are for example, 14 lines in your text file, to input Line #7 without first inputting lines 1-6. I hope that...
  7. lmb3

    Modifying a capture window

    How can you modify the dwStyle or WS_VISIBLE of a capture window (capCreateCaptureWindow)? I have created a visible capture window that captures images exactly as I planned, but I would like to make the window invisible to the user at a certain point in my program. Is there a way to do this...
  8. lmb3

    Converting bmp files to jpeg files

    Thank you everyone, I think strongm has found a solution.
  9. lmb3

    Converting bmp files to jpeg files

    I found the ACDSee Browser and I see how it can convert images from BMPs to JPEGs, but how would I use this program to do this conversion entirely in visual basic?
  10. lmb3

    Converting bmp files to jpeg files

    Is there a way in VB to convert a bitmap file to a jpeg file so that the file can be opened using internet explorer? If so, how would you go about doing this? Thanks
  11. lmb3

    Capture Mouse Click

    I need to capture a click from a wireless mouse and then cause an event to happen in my program. I don't care where on the screen the mouse is when it clicks, I just want to know that it has clicked and then I want to trigger another process. Is this possible? Can you capture a mouse click if...
  12. lmb3

    Deleting a picture file

    Okay, I figured out how to delete a file by using the kill command, but how would you copy a jpeg file? Thanks!
  13. lmb3

    Deleting a picture file

    I have set the picture property of an Image object to a jpeg file. I now would like to delete that jpeg file completely from my computer. Is this possible? If I don't set the jpeg file to be the picture of an image object, can I delete it? I found the File.Delete method, but I cannot figure...
  14. lmb3

    Saving without using a common dialog

    Unfortunately, the jpeg image is not already saved anywhere. It has just been captured using a CapGrabFrame method that I didn't write. It is based on a WM_CAP_GRAB_FRAME command. Any more ideas??? Thanks!
  15. lmb3

    Saving without using a common dialog

    Hi, I have a program that captures an image using a usb camera and allows the user to save that image as a jpeg file using a common dialog ShowSave method. I would like to instead, automatically save the jpeg file to a pre-set directory with a pre-set file name as soon as the user clicks the...
  16. lmb3

    Video Capture

    I am interested in capturing images from an Intel PC camera (JPEG format) at a rate of 1 image per second. I would like to store these images in a designated directory on my computer. Any ideas on how I can do this using VB? Thanks

Part and Inventory Search

Back
Top