Search:

Type: Posts; User: Promocom

Page 1 of 2 1 2

Search: Search took 0.13 seconds.

  1. VB 2010 MSWebDVD control... how to clear last movie

    After playing a DVD using the MSWebDVD control the last scene that was playing stays on the screen. After Stop() I've tried .Eject() & .Refresh() with no luck. Thanks
  2. VB2010 Design changes not updating on debugging....

    I'm new to .Net and i'm having some problems with the debugger. It started when I tried to turn off the autosave features and now when i make changes on my design its not showing up when im running...
  3. Replies
    1
    Views
    1,671

    VB 2010 express Picturebox array help...

    I'm trying to convert my VB6 program to Net and one of the forms has 18 Pictureboxes in an array that I load from a flexgrid containing hundreds of image paths. Basically the user "turns the page"...
  4. Re: Possible to add images resources at runtime?

    Well right now the program searches the drive for ebooks and adds the book cover images folderpath to a datagrid. I am moving these images all around in collections and I thought using them as...
  5. Possible to add images resources at runtime?

    I would like to add a couple hundred images from the drive to a resource file on form_load and use them later in the program.
  6. Replies
    2
    Views
    602

    Re: Search Drive for Video_TS folders...

    Thanks... that was the hint i needed.
  7. Replies
    2
    Views
    602

    Search Drive for Video_TS folders...

    I was able to do this in VB6 but for the life of me I can't figure out a simple way to do this with VBnet. I just want to get a list of the Foldername & Path of any Video_TS (DVD movies) on the...
  8. Replies
    2
    Views
    935

    Re: PlaySound and click.wav glitchy

    Yeah... That did it. Thank You
  9. Replies
    2
    Views
    935

    PlaySound and click.wav glitchy

    I've got a bunch of controls i need to tab through quickly and hear a click for each one. Well using winmm.dll's PlaySound seems to be too slow and glitchy. Is there any different methods or some way...
  10. Move pictures in patterns and randomly for Kiosk project...

    i have a kiosk project that has hundreds of books and dvd images i want to make a demo screen that takes several random pictures and do some special effects with them, like moving around in patterns...
  11. Replies
    0
    Views
    610

    MSWEBDVD Volume control...

    According to Microsoft I should be able to control the volume of a DVD played with MSWEBDVD by setting- MSWEBDVD.Volume = X. With X being equal to 0 - 10,000 with 0 = full volume and 10,000 being...
  12. Replies
    4
    Views
    772

    Re: Help with PaintPicture...

    Actually i started out using the LoadPicture method and moved to the PaintPicture method hoping for better performance (speed/smoothness). I was able to deduce from Seenu's program a way to get past...
  13. Replies
    4
    Views
    772

    Help with PaintPicture...

    I have a "Scrolling Movie Marque" project that is an array of movie covers "painted" into a large picturebox. Then i want to use a timer to slowly scroll the images up continuously. There are...
  14. Replies
    3
    Views
    1,075

    Re: How scroll a frame smoothly...

    its vb6... i'm just moving the frame up (Frame1.Top = Frame1.Top - 5) with the timer and the images appear to scroll up the screen. The frame is the same color as the form so you don't notice that it...
  15. Replies
    3
    Views
    1,075

    How scroll a frame smoothly...

    I have a frame that has a lot (60) of images on it and i have a timer set to scroll the frame up a few pixels at a time and i can't seem to get it to do so without jerks and hitches. i already have...
  16. Replies
    6
    Views
    3,014

    VS 2010 Re: Does MSWEBDVD.dll work in 64-bit Windows 7?

    Oops... wrong thread
  17. Replies
    0
    Views
    6,376

    Create an Image Array at Runtime...

    I used to struggle with copying and pasting and aligning controls to make multiple rows and columns of images on forms for graphical catalogs and collections etc. Then I learned how to create the...
  18. Replies
    6
    Views
    657

    Re: Copy & Paste with large frames

    Wow... i didn't know you could do that with notepad. I think that will help, thanks.
  19. Replies
    6
    Views
    657

    Re: Copy & Paste with large frames

    It's an array of 66 images with associated labels etc. 6 across and 11 down. And the the frame is much larger than the form. I think it would be a toss up between pasting & dragging method and...
  20. Replies
    6
    Views
    657

    Copy & Paste with large frames

    I'm working on a project that uses a frame that is very long (heightwise) and uses almost 300 controls. My problem is that when pasting multiple controls they are placed at the top left corner of the...
  21. Best way to search drive for all folders with the same name...

    I need to search the drive for all folders named "Video_TS" and list the directories that they are in.
  22. Re: Zoom picturebox with static edges (for report)

    I made this in VB6 that sounds like what you want to do... maybe you can convert it to .net?
  23. Load a picturebox from filename in database

    Hi, I know how to do this in VB6 but not sure of the syntax used in .net... I have a mdb database with a field "Simage" containing a filename of a picture that I want to load into a picturebox. I've...
  24. Replies
    1
    Views
    516

    Code Editor lost color...

    I'm using VB6 Professional and it's been like this for a long time. In the code editor window I've lost all the color formatting except the yellow highlight on execution errors. So all text is black,...
  25. Replies
    2
    Views
    444

    Re: "Please Wait..."

    Yes! that was it... refreshing the label did the trick. thanks!
  26. Replies
    2
    Views
    444

    [RESOLVED] "Please Wait..."

    I just want to make a label visible that says "Please Wait..." while my form full of pictureboxes loads new pictures. The label will not show up till after the pictures reload even though I make it...
  27. Replies
    10
    Views
    11,328

    Re: Turn on NumLock with code...

    Thank you all!
  28. Replies
    10
    Views
    11,328

    Re: Turn on NumLock with code...

    No it's not a problem per se, I was merely seeking confirmation that the SendKeys function is or is not appropriate and an API call requiring several more lines of code is the only way to accomplish...
  29. Replies
    10
    Views
    11,328

    Re: Turn on NumLock with code...

    So your saying it can't be done without an API call?
  30. Replies
    10
    Views
    11,328

    Re: Turn on NumLock with code...

    Thanks but that thread deals mostly with checking the state of the NumLock key and I just want to change it whatever the state. I'm thinking something like: SendKeys "{NumLock}" should work, but...
  31. Replies
    10
    Views
    11,328

    Turn on NumLock with code...

    How can I turn on or off the NumLock with code? simpler the better... Thanks
  32. Re: Dollar Bill Acceptor to comm port...

    Guys... it works like a charm!

    MSComm is counting 2 for every on-off pulse but I was able to set the bill acceptor to put out 1 pulse for every dollar so now I know every 2 counts = 1 dollar.
    ...
  33. Re: Dollar Bill Acceptor to comm port...

    Got it!
    Thanks again, I'll let you know if it works when I get it wired up.
  34. Re: Dollar Bill Acceptor to comm port...

    Thanks for the help guys! I think that's just what I needed... I found a link to a schematic while checking out the max232 that may do what I want, but it connects to the RXD pin instead of DSR....
  35. [RESOLVED] Dollar Bill Acceptor to comm port...

    I have a dollar bill acceptor that has 2 wires coming out of it from a relay inside and when a dollar is inserted the relay opens and closes 4 times in about 1 second. A five dollar bill will be 20...
  36. Replies
    1
    Views
    582

    Network registry change...

    Hi,
    I have a form that continuously checks the registry for a key value.



    Private Sub Timer1_Timer()

    Select Case GetSetting("Tester", "Lock", "Status")
    Case Is = "Yes"
    ...
  37. Re: How to Print image on picture box.

    Not quite sure what your asking here... Do you mean how can you send the image to your printer or just load the image into the picturebox? If it's the second one you're almost there......
  38. Replies
    5
    Views
    785

    Search Drive for specific folders...

    Anyone have a simple method for finding the paths of certain folders?
    I want to list the paths of all the folders named "VIDEO_TS" on the drive.
  39. Replies
    2
    Views
    841

    Re: Break down a Path String...

    Works greart! Thanks
  40. Replies
    2
    Views
    841

    [RESOLVED] Break down a Path String...

    What's the simplest way to break down a String with special characters in it?
    My String will be something like this...

    Text1.Text= "C:\Folder1\SubFolder1\Pic.jpg"

    I want to break it down to:...
Results 1 to 40 of 62
Page 1 of 2 1 2



Click Here to Expand Forum to Full Width