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 John Tel 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 mmbsports

  1. mmbsports

    a message box question

    jmi44, Actually, my method does work...I use it often. You misunderstood WHERE I state to place your process code. I do not program in VBA, so this may not work in VBA...then again, I didn't know that you were asking a VBA question. You state: "Well, the problem with the solution proposed...
  2. mmbsports

    Simple Line Drawing Help

    I figured out how to draw freehand...however, I am having some issues on how to draw other pen objects. I need to have a user draw on a picturebox a line with an arrow on the end of the line. The other object will be a line that ends with a "T". In addition, I need an option for them to have...
  3. mmbsports

    Creating a GIF from a VB Form layout

    I did so much research on the net, and I know there are allot of programmers looking for such a code like the one you wrote. What I like about your code is that you don't need a picturebox. You can have the moveable objects on the form and then save the form as a bitmap...probably less code as...
  4. mmbsports

    Creating a GIF from a VB Form layout

    A valuable member of this forum figured out how to do this on the fly. refer to thread222-1157687 for complete instructions. It is possible to create a bmp within a picturebox containing with dynamic labels and other objects. the code provided is plug and play!! Outstanding Code!
  5. mmbsports

    How do I create a GIF in VB?

    A valuable member of this forum figured out how to do this on the fly. refer to thread222-1157687 for complete instructions. It is possible to create a bmp within a picturebox containing with dynamic labels and other objects. the code provided is plug and play!! Outstanding Code!
  6. mmbsports

    PictureBox Saving Blank BITMAP...this is a tough one!

    Hypetia, It worked like a champ. I have another post requesting how to create a BMP, and this post will fit perfectly. I'll make sure to reference it. Again, your code worked "as is" without changing anyything except for my refence to my picturebox....just like a plug and play! GREAT CODE!!!
  7. mmbsports

    PictureBox Saving Blank BITMAP...this is a tough one!

    Thank you! Yes, I have seen the post you mentioned, and that recommendation does not work (as you stated in the post) with labels. As I mentioned in my original post, my picturebox contain several objects...and labels are one of them. I very much appreciate your quick response. I may have...
  8. mmbsports

    PictureBox Saving Blank BITMAP...this is a tough one!

    My problem is the same as mentioned here: thread222-98810 . When the picturebox is saved, it saves a blank image. I have a form containing a picturebox which has other objects (textboxes, a frame, labels, and lines) contained within it. I want users to move the textboxes to any location...
  9. mmbsports

    How do I create a GIF in VB?

    I did a search previously and found these..and many others: http://www.tek-tips.com/viewthread.cfm?qid=1023694 http://www.tek-tips.com/viewthread.cfm?qid=760856 http://www.tek-tips.com/viewthread.cfm?qid=724900 They come close to what I am asking, but doesn't provide the answer. I guess maybe...
  10. mmbsports

    How do I create a GIF in VB?

    There seems to be a problem with GIF89.DLL. I've seen allot of programmers complain about it hosing up a user's computer. I would prefer to stay away from items like that. THANK YOU THOUGH!! I appreciate any ideas! The clipboard is an idea I will look into further. I didn't think about...
  11. mmbsports

    How do I create a GIF in VB?

    Basically, I have a form that has moveable objects on it. Once the user moves the objects in the location he/she would want them to be in, I want my program to take a snapshot (of sorts) of that form in order to create a GIF so I can place the GIF on a web page for viewing...and I'll save the...
  12. mmbsports

    Assign an Array to a Combo Box - HELP

    This should auto create your array and auto populate your array...should, it may need to be tweaked a bit Dim i as Integer i = 0 Dim Countries(nameOfComboBox.ListCount) As String 'dynamically creates an array depending on how many items are in the combobox DO while i <=...
  13. mmbsports

    Creating a GIF from a VB Form layout

    I did find this site, which was cool, but it converts an ascii file into a bitmap...close, but no cigar. http://www.catenary.com/howto/text2img.html
  14. mmbsports

    Creating a GIF from a VB Form layout

    Basically, I have a form that has moveable objects on it. Once the user moves the objects in the location he/she would want them to be in, I want my program to take a snapshot (of sorts) of the form in order to create a GIF so I can place the GIF on a web page for viewing...and I'll save the...
  15. mmbsports

    Move Objects During RunTime

    I figured out what I was doing wrong. I was doing an array and didn't call it correctly. Your code works PERFECTLY! Thanks!

Part and Inventory Search

Back
Top