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 strongm 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: *

  1. autumn10

    Convert Data Types

    Skip - Thanks but I just want to get rid of UserForm21, UserForm22, & UserForm23. Not all of them.
  2. autumn10

    Convert Data Types

    Thanks Skip. I prefer the former as well. I'm trying to delete forms UserForm21 UserForm22 UserForm23 using the following code: Sub Remove_Form() Dim i As Integer Dim s As String For i = 21 To 23 s = "UserForm" & "i" Application.VBE.ActiveVBProject.VBComponents.Remove...
  3. autumn10

    Convert Data Types

    In VBA under program control, how do I convert an integer to a character so that I can use &
  4. autumn10

    VBA Userforms

    Thanks Andy - Visual Studio 10 is kind of expensive. I appreciate your suggestion. -Mark
  5. autumn10

    VBA Userforms

    Andy - You've confirmed the suspicion I've had all along. I am able to do what I want but I have to use software that few people know about. It's called APL. For now I will be looking to get VB. Thanks for your reply. -Mark
  6. autumn10

    VBA Userforms

    Thanks for your responses but this isn't doing it for me. I'm trying to create a pure window in code with the intention of adding controls later, also in code. The underlying application is Excel. See "UserForm Window" in the VBA help files. There, it says "Each form window has a Maximize...
  7. autumn10

    VBA Userforms

    How do I create a userform window (not dialogue box) with maximize, restore, & close buttons in the title bar? I want to do this under program control.
  8. autumn10

    VBA

    How do I rename a userform in \forms so that I actualy know it's been removed after method .Remove.
  9. autumn10

    Remove forms

    I want to remove forms under program control. They are in the Excel Project \forms folder.

Part and Inventory Search

Back
Top