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 Wanet Telecoms Ltd 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 CyberLynx

  1. CyberLynx

    Disable Internet & Network from VB

    Pleeeasssse Help.
  2. CyberLynx

    Can I Run My App In Safe Mode?

    What???...no one go a solution for this :o)
  3. CyberLynx

    Still can't find

    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.
  4. CyberLynx

    Can I Run My App In Safe Mode?

    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...
  5. CyberLynx

    Doubts about Combo Box

    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...
  6. CyberLynx

    Find default Hard-Drive

    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...
  7. CyberLynx

    VB library References

    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...
  8. CyberLynx

    VB library References

    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)
  9. CyberLynx

    Disable Internet & Network from VB

    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.
  10. CyberLynx

    Can I Run My App In Safe Mode?

    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.
  11. CyberLynx

    Hand.ico image

    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...
  12. CyberLynx

    how to pass parameters to a functio

    Maybe this'll help... Rundll32 user32.dll, MessageBoxA
  13. CyberLynx

    how to pass parameters to a functio

    Can you be a little more specific?

Part and Inventory Search

Back
Top