OberonPlace.com Forums  

Go Back   OberonPlace.com Forums > Corel User Forums > CorelDRAW > General

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 08-09-2012, 06:15
IngoInternet IngoInternet is offline
Junior Member
 
Join Date: Sep 2012
Posts: 2
Default Problem with printing through a macro

hello,
i hope i can find help in your forum.
i am working with corel draw x6 and going to print some shapes by pressing a button on a vba form.
i created the vba code by recording it by the macro recorder.
if i press the button on blank page, the print information window comes up and i can change the printer, the page layout ...
if i copy some files from another layer to the print layer, i created, corel draw x6 will hang up.

i created a button that activates a layer (viewable,brintable,editable) wich was deactivated. selects the shapes on the layer. deactivates the layer again and activates another layerand paste's the shapes on it.
now the print macro is going to run and taataaaa, corel draw x6 is going to hang up.

i asked the corel draw support but they told me, that is not a problem from the software, its a problem of the macro.

i recorded the macro with a tool from the software (corel draw x6) and i run the macro with a tool from the software.

The macro i call is : ActiveDocument.PrintSettings.ShowDialog

thank you for your time

IngoInternet

21 is only the half of the answer to life, the universe and everything
Reply With Quote
  #2  
Old 09-09-2012, 17:52
shelbym's Avatar
shelbym shelbym is offline
Senior Member
 
Join Date: Nov 2002
Location: Cheyenne, WY
Posts: 1,791
Blog Entries: 15
Send a message via ICQ to shelbym Send a message via AIM to shelbym Send a message via MSN to shelbym Send a message via Yahoo to shelbym
Default Printing

Can you post your code, and the exact steps that you are wanting it todo. I am sure we can solve this for you.

-Shelby
Reply With Quote
  #3  
Old 18-09-2012, 06:30
IngoInternet IngoInternet is offline
Junior Member
 
Join Date: Sep 2012
Posts: 2
Default Printing

Hello Shelbym,

thank you for Your answer, here ist the complete Macro code:



Dim doc As Documents

Private Sub ChkBox1_Click()
Ausgrauen
End Sub

Private Sub ChkBox2_Click()
Ausgrauen
End Sub


Private Sub CmdBut_Abbruch_Click()

ActiveLayer.Shapes.All.Delete
UserForm1.Hide
'ActiveDocument.Save = False
'MsgBox (ActiveDocument.Name)

'ActiveDocument.Close


End Sub

Private Sub CmdBut_Beenden_Click()

On Error Resume Next

UserForm1.Hide
'ActiveDocument.Activate
'ActiveDocument.Save
'MsgBox (ActiveDocument.Name)

ActiveDocument.Close

End Sub

Private Sub CmdBut_Delete_Click()

ActiveLayer.Shapes.All.Delete

End Sub

Private Sub CmdBut_OK_Click()

OB = "Ordner Breit"
OM = "Ordner Mittel"
OS = "Ordner Schmal"

ActivePage.Layers("Druckrahmen").Activate

If OptBut_Breit.Value = True Then

COPY_Master (OB)

ElseIf OptBut_Mittel.Value = True Then

COPY_Master (OM)

ElseIf OptBut_Schmal.Value = True Then

COPY_Master (OS)

End If

ThisDocument.Activate

End Sub

Function COPY_Master(OrdnerTyp)

ActiveDocument.MasterPage.Layers(OrdnerTyp).Editable = True
ActiveDocument.MasterPage.Layers(OrdnerTyp).Visible = True
ActiveDocument.MasterPage.Layers(OrdnerTyp).Printable = True

ActiveDocument.CreateSelection ActiveDocument.MasterPage.Layers(OrdnerTyp).Shapes(9)
ActiveDocument.AddToSelection ActiveDocument.MasterPage.Layers(OrdnerTyp).Shapes(8)
ActiveDocument.AddToSelection ActiveDocument.MasterPage.Layers(OrdnerTyp).Shapes(7)
ActiveDocument.AddToSelection ActiveDocument.MasterPage.Layers(OrdnerTyp).Shapes(6)
ActiveDocument.AddToSelection ActiveDocument.MasterPage.Layers(OrdnerTyp).Shapes(5)
ActiveDocument.AddToSelection ActiveDocument.MasterPage.Layers(OrdnerTyp).Shapes(4)
ActiveDocument.AddToSelection ActiveDocument.MasterPage.Layers(OrdnerTyp).Shapes(3)
ActiveDocument.AddToSelection ActiveDocument.MasterPage.Layers(OrdnerTyp).Shapes(2)
ActiveDocument.AddToSelection ActiveDocument.MasterPage.Layers(OrdnerTyp).Shapes(1)

ActiveSelection.Copy

ActiveDocument.MasterPage.Layers(OrdnerTyp).Editable = False
ActiveDocument.MasterPage.Layers(OrdnerTyp).Visible = False
ActiveDocument.MasterPage.Layers(OrdnerTyp).Printable = False

ActiveLayer.Paste

ActiveSelection.Shapes("TxtFld-Zeile1").Text.Story = TxtBox_Zeile1.Value

ActiveSelection.Shapes("TxtFld-Zeile2").Text.Story = TxtBox_Zeile2.Value

ActiveSelection.Shapes("TxtFld-Zeile3").Text.Story = "Projekt Nr.: " + TxtBox_Zeile3.Value

ActiveSelection.Shapes("TxtFld-Zeile4").Text.Story = TxtBox_Zeile4.Value

ActiveSelection.Shapes("TxtFld-Zeile5").Text.Story = TextZerlegung(TxtBox_Zeile5.Value)

ActiveSelection.Shapes("TxtFld-Zeile6").Text.Story = TxtBox_Zeile6.Value

If OptBut_Rahmen = True Then ActiveSelection.Shapes("Schnittmarken").Delete

If OptBut_Schnittmarke = True Then ActiveSelection.Shapes("Rahmen").Delete

If OptBut_SchnittRahmen = True Then
ActiveSelection.Shapes("Rahmen").Delete
ActiveSelection.Shapes("Schnittmarken").Delete
End If

End Function

Private Sub CmdBut_Print_Click()

If ActiveLayer.SelectableShapes.Count = 0 Then

MsgBox ("kein Ordnerrücken zum Drucken gefunden!")

Else


Dim OrigSelection As ShapeRange
Set OrigSelection = ActiveSelectionRange
With ActiveDocument.PrintSettings
End With

End If

End Sub

Function TextZerlegung(Text)

Platz = InStr(1, Text, "+", 1)
If Platz < 1 Then
Exit Function
Else
Laenge = Len(Text)

vorher = Left(Text, Platz - 2)
Nachher = Right(Text, Laenge - Platz - 1)
End If

TextZerlegung = vorher + Chr(13) + "+" + Chr(13) + Nachher

End Function

Function Ausgrauen()
If UserForm1.ChkBox1.Value = True Then
UserForm1.TxtBox_Zeile1.BackColor = &H8000000F
UserForm1.TxtBox_Zeile1.Locked = True
Else
UserForm1.TxtBox_Zeile1.BackColor = &H80000005
UserForm1.TxtBox_Zeile1.Locked = False
End If

If UserForm1.ChkBox2.Value = True Then
UserForm1.TxtBox_Zeile5.BackColor = &H8000000F
UserForm1.TxtBox_Zeile5.Locked = True
Else
UserForm1.TxtBox_Zeile5.BackColor = &H80000005
UserForm1.TxtBox_Zeile5.Locked = False
End If
End Function

Private Sub Frame2_Click()

Ausgrauen

End Sub

Private Sub UserForm_Initialize()

Ausgrauen

End Sub

'Private Sub UserForm_MouseMove(ByVal Button As Integer, ByVal Shift As Integer, ByVal X As Single, ByVal Y As Single)
'
' Ausgrauen
'
'End Sub




Hope You can help me.
Reply With Quote
  #4  
Old 02-10-2012, 01:04
shelbym's Avatar
shelbym shelbym is offline
Senior Member
 
Join Date: Nov 2002
Location: Cheyenne, WY
Posts: 1,791
Blog Entries: 15
Send a message via ICQ to shelbym Send a message via AIM to shelbym Send a message via MSN to shelbym Send a message via Yahoo to shelbym
Default Print

You stated that in your code you call: ActiveDocument.PrintSettings.ShowDialog

But I do not see this anywhere in your code. The only reference to Printing is: With ActiveDocument.PrintSettings
End With

And this by itself isn't going to do anything.

-Shelby
Reply With Quote
Reply

Tags
cdr x6, corel, corel draw, macro, problem


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
wOxxOm macro problem linearg Macros/Add-ons 2 20-01-2009 18:38
Problem with shortcut key and macro knowbodynow Macros/Add-ons 3 10-03-2006 05:15
Draw 12 : Printing Problem Hernán General 3 20-09-2004 10:54
Problem Printing Selected Only shelbym CorelDRAW/Corel DESIGNER VBA 5 20-07-2004 20:06
problem with script or macro. Dr Morpheus Macros/Add-ons 1 31-12-1969 18:22


All times are GMT -5. The time now is 12:00.


Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2023, Jelsoft Enterprises Ltd.
Copyright © 2011, Oberonplace.com