+ Reply to Thread
Results 1 to 12 of 12

Can macro create another macro?

  1. #1
    VK
    Guest

    Can macro create another macro?

    Hi, all!
    An macro from Personal.xls create a new sheet, now i need another macro
    available in that new sheet. How do I do it, that macro create another
    macro?
    Reg, VK

  2. #2
    Bob Phillips
    Guest

    Re: Can macro create another macro?

    If it is an event macro, use something like

    Dim iStartAs Long

    With ActiveWorkbook.VBProject.VBComponents("ThisWorkbook").CodeModule
    iStart = .CreateEventProc("BeforeSave", "Workbook") + 1
    .InsertLines iStart, _
    "Dim ans" & vbCrLf & _
    " ans = Msgbox( ""All OK"",vbYesNo)" & vbCrLf & _
    " If ans = vbNo Then Cancel = True"
    End With

    If it just another macro in Module1 say, then use

    Dim iNext As Long

    With ThisWorkbook.VBProject.VBComponents("Module1").CodeModule
    iNext = .CountOfLines + 1
    .InsertLines iNext, _
    "Sub myProc()" & vbNewLine & _
    " Msgbox ""Tesing new procedure"" " & vbNewLine & _
    "End Sub"
    End With

    --

    HTH

    RP
    (remove nothere from the email address if mailing direct)


    "VK" <"myname"@example.invalid> wrote in message
    news:3fm3h6F8dua6U1@news.dfncis.de...
    > Hi, all!
    > An macro from Personal.xls create a new sheet, now i need another macro
    > available in that new sheet. How do I do it, that macro create another
    > macro?
    > Reg, VK




  3. #3
    VK
    Guest

    Re: Can macro create another macro?

    > If it is an event macro, use something like
    >
    > Dim iStartAs Long
    >
    > With ActiveWorkbook.VBProject.VBComponents("ThisWorkbook").CodeModule
    > iStart = .CreateEventProc("BeforeSave", "Workbook") + 1
    > .InsertLines iStart, _
    > "Dim ans" & vbCrLf & _
    > " ans = Msgbox( ""All OK"",vbYesNo)" & vbCrLf & _
    > " If ans = vbNo Then Cancel = True"
    > End With
    >
    > If it just another macro in Module1 say, then use
    >
    > Dim iNext As Long
    >
    > With ThisWorkbook.VBProject.VBComponents("Module1").CodeModule
    > iNext = .CountOfLines + 1
    > .InsertLines iNext, _
    > "Sub myProc()" & vbNewLine & _
    > " Msgbox ""Tesing new procedure"" " & vbNewLine & _
    > "End Sub"
    > End With
    >


    Thanks! I'll try it out
    Reg. VK

  4. #4
    Jef Gorbach
    Guest

    Re: Can macro create another macro?


    "VK" <"myname"@example.invalid> wrote in message
    news:3fm4vgF8gch8U1@news.dfncis.de...
    > > If it is an event macro, use something like
    > >
    > > Dim iStartAs Long
    > >
    > > With

    ActiveWorkbook.VBProject.VBComponents("ThisWorkbook").CodeModule
    > > iStart = .CreateEventProc("BeforeSave", "Workbook") + 1
    > > .InsertLines iStart, _
    > > "Dim ans" & vbCrLf & _
    > > " ans = Msgbox( ""All OK"",vbYesNo)" & vbCrLf & _
    > > " If ans = vbNo Then Cancel = True"
    > > End With
    > >
    > > If it just another macro in Module1 say, then use
    > >
    > > Dim iNext As Long
    > >
    > > With ThisWorkbook.VBProject.VBComponents("Module1").CodeModule
    > > iNext = .CountOfLines + 1
    > > .InsertLines iNext, _
    > > "Sub myProc()" & vbNewLine & _
    > > " Msgbox ""Tesing new procedure"" " & vbNewLine & _
    > > "End Sub"
    > > End With
    > >

    >
    > Thanks! I'll try it out
    > Reg. VK


    Would like todo same with about 5 multi-page routines, so wonder if instead
    of embedding the new code in the copying macro (per above), if its possible
    to copy an existing macro between files, say from personal.xls to book1.xls
    ??

    ie:

    Sub test()
    Workbooks("Book1").VBProject.VBComponents.Import _
    (Workbooks("Personal").VBProject.vbcompoents("aging_report").codemodule)
    End Sub

    seems logical, but returns "runtime error 438: object does not support this
    property or method"





  5. #5
    Bob Phillips
    Guest

    Re: Can macro create another macro?

    You cannot import a module from another workbook, you must import from a
    file. So you export from Personal.xls to a file, and then import that file
    into another book.

    --

    HTH

    RP
    (remove nothere from the email address if mailing direct)


    "Jef Gorbach" <Jefgorbach@aol.com> wrote in message
    news:OCiqjbhYFHA.2796@TK2MSFTNGP09.phx.gbl...
    >
    > "VK" <"myname"@example.invalid> wrote in message
    > news:3fm4vgF8gch8U1@news.dfncis.de...
    > > > If it is an event macro, use something like
    > > >
    > > > Dim iStartAs Long
    > > >
    > > > With

    > ActiveWorkbook.VBProject.VBComponents("ThisWorkbook").CodeModule
    > > > iStart = .CreateEventProc("BeforeSave", "Workbook") + 1
    > > > .InsertLines iStart, _
    > > > "Dim ans" & vbCrLf & _
    > > > " ans = Msgbox( ""All OK"",vbYesNo)" & vbCrLf & _
    > > > " If ans = vbNo Then Cancel = True"
    > > > End With
    > > >
    > > > If it just another macro in Module1 say, then use
    > > >
    > > > Dim iNext As Long
    > > >
    > > > With ThisWorkbook.VBProject.VBComponents("Module1").CodeModule
    > > > iNext = .CountOfLines + 1
    > > > .InsertLines iNext, _
    > > > "Sub myProc()" & vbNewLine & _
    > > > " Msgbox ""Tesing new procedure"" " & vbNewLine & _
    > > > "End Sub"
    > > > End With
    > > >

    > >
    > > Thanks! I'll try it out
    > > Reg. VK

    >
    > Would like todo same with about 5 multi-page routines, so wonder if

    instead
    > of embedding the new code in the copying macro (per above), if its

    possible
    > to copy an existing macro between files, say from personal.xls to

    book1.xls
    > ??
    >
    > ie:
    >
    > Sub test()
    > Workbooks("Book1").VBProject.VBComponents.Import _
    >

    (Workbooks("Personal").VBProject.vbcompoents("aging_report").codemodule)
    > End Sub
    >
    > seems logical, but returns "runtime error 438: object does not support

    this
    > property or method"
    >
    >
    >
    >




  6. #6
    VK
    Guest

    Re: Can macro create another macro?

    Bob Phillips wrote:
    > If it is an event macro, use something like
    >
    > Dim iStartAs Long
    >
    > With ActiveWorkbook.VBProject.VBComponents("ThisWorkbook").CodeModule
    > iStart = .CreateEventProc("BeforeSave", "Workbook") + 1
    > .InsertLines iStart, _
    > "Dim ans" & vbCrLf & _
    > " ans = Msgbox( ""All OK"",vbYesNo)" & vbCrLf & _
    > " If ans = vbNo Then Cancel = True"
    > End With
    >
    > If it just another macro in Module1 say, then use
    >
    > Dim iNext As Long
    >
    > With ThisWorkbook.VBProject.VBComponents("Module1").CodeModule
    > iNext = .CountOfLines + 1
    > .InsertLines iNext, _
    > "Sub myProc()" & vbNewLine & _
    > " Msgbox ""Tesing new procedure"" " & vbNewLine & _
    > "End Sub"
    > End With
    >


    It works with simple macros. I'm using on another mashine some add-on
    for Excel with special code to interact with another application. When
    "parent" macro try to append another macro to VB Project, I'm getting
    errors. It cannot compile unknown commands from add-on. Is it possible
    to disable compilation for this part of code?

    Thanks anyway!

    Reg, VK

  7. #7
    Bob Phillips
    Guest

    Re: Can macro create another macro?

    Why not load add-in?

    --

    HTH

    RP
    (remove nothere from the email address if mailing direct)


    "VK" <"myname"@example.invalid> wrote in message
    news:3g1cstF9pjsrU1@news.dfncis.de...
    > Bob Phillips wrote:
    > > If it is an event macro, use something like
    > >
    > > Dim iStartAs Long
    > >
    > > With

    ActiveWorkbook.VBProject.VBComponents("ThisWorkbook").CodeModule
    > > iStart = .CreateEventProc("BeforeSave", "Workbook") + 1
    > > .InsertLines iStart, _
    > > "Dim ans" & vbCrLf & _
    > > " ans = Msgbox( ""All OK"",vbYesNo)" & vbCrLf & _
    > > " If ans = vbNo Then Cancel = True"
    > > End With
    > >
    > > If it just another macro in Module1 say, then use
    > >
    > > Dim iNext As Long
    > >
    > > With ThisWorkbook.VBProject.VBComponents("Module1").CodeModule
    > > iNext = .CountOfLines + 1
    > > .InsertLines iNext, _
    > > "Sub myProc()" & vbNewLine & _
    > > " Msgbox ""Tesing new procedure"" " & vbNewLine & _
    > > "End Sub"
    > > End With
    > >

    >
    > It works with simple macros. I'm using on another mashine some add-on
    > for Excel with special code to interact with another application. When
    > "parent" macro try to append another macro to VB Project, I'm getting
    > errors. It cannot compile unknown commands from add-on. Is it possible
    > to disable compilation for this part of code?
    >
    > Thanks anyway!
    >
    > Reg, VK




  8. #8
    Onfrek
    Guest

    Re: Can macro create another macro?

    Because it is on another machine


  9. #9
    Forum Contributor
    Join Date
    01-21-2005
    Location
    Colorado
    MS-Off Ver
    2000,2003,2007
    Posts
    481
    This is a page on Chip Pearson's website which discusses copying macros between workbooks which you both may find helpful

    http://www.cpearson.com/excel/vbe.htm

    Hope this helps.

  10. #10
    Bob Phillips
    Guest

    Re: Can macro create another macro?

    I just tried to reproduce what you get but I couldn't.

    Can you post the code that failed so that I can try it? I have a couple of
    ideas.

    --

    HTH

    RP
    (remove nothere from the email address if mailing direct)


    "Onfrek" <onfrek@yahoo.com> wrote in message
    news:1117555162.545423.294480@f14g2000cwb.googlegroups.com...
    > Because it is on another machine
    >




  11. #11
    VK
    Guest

    Re: Can macro create another macro?

    Bob Phillips wrote:
    > I just tried to reproduce what you get but I couldn't.
    >
    > Can you post the code that failed so that I can try it? I have a couple of
    > ideas.
    >


    Unfortunately, I can't.
    I solved the problem, copying data from one worksheet with first macro
    to another worksheet, where second macro already exist. Thanks for your
    help.
    Reg. VK

  12. #12
    VK
    Guest

    Re: Can macro create another macro?

    Bob Phillips wrote:
    > I just tried to reproduce what you get but I couldn't.
    >
    > Can you post the code that failed so that I can try it? I have a couple of
    > ideas.
    >



    This is the code to append



    Sub ScreenPrint()
    lpr = DDEInitiate("win", "wwk")
    Call DDEExecute(lpr, "lpr-0" & ActiveCell.Text & "PRINT")
    Call DDETerminate(lpr)
    End Sub

    Cheers, VK

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1