Check this site. They got a few controls to do what you want:
http://www.vbaccelerator.com/home/VB/Code/Controls/ListBar/Button_List_Bar/article.asp
hope this helps.
Thanx chiph, you made me take a closer look at my question and the first thing that came to mind was.... "DOH".
What I realy need to know is:
Is there a easy way to automatically start my VB app when Win2K/XP loads into safe mode?
Thats better...network, resolutions, and colors is...
A little long winded but try this example out. I think you will get the idea. It will display in the way as you indicated above.
To use this example, start a new form. Place the standard VB combo box in the middle of the form and leave it named 'Combo1'. Now copy and paste the code below into...
If you want to know the drive letter of where YOUR application has started from the use this code:
Dim ProgDrive as string
Dim ProgPath as string
ProgPath = App.Path
ProgDrive = Left$(ProgPath,1)
OR
ProgDrive = Left$(App.Path,1)
The built in procedure App.Path will always supply...
Sorry Bruce007...I can't help you there. There are a lot of apps that place libraries and controls into the system and to get definative descriptions of some of them is very difficult. Ya might try looking here...
Try going here Bruce007. It should be what you need (I hope):
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/winprog/winprog/windows_api_reference.asp
(ALL ONE LINE)
I'm sure someone out there has done this before.
Is there a simple way for me to disable my network and Internet from a VB app. Where as, there is no access from my computer to the network from either Ethernet AND OR Dialup.
Please help. Any assistance you can give is greatly appreciated.
Well, well...it comes to this. Simple little question. Is there a easy way to run my VB app in Win2K/XP safe mode?
ANY assistance you can give me is greatly appreciated.
Tell ya what...try out this little bit of code. It may be a little long winded for what you want to do but it does add a LOT of functionality.
To try this code, simply start a new project and create a new form. In this form create 1 Text Box (Text1), and four Labels (NO Control Array - Label1...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.