Jump to content
Developer Wiki and Function Reference Links ×

Printing layers


DKVArchi

Recommended Posts

hello,we use VW 8.5.2 and a script to print layers, but if you want to print more layers you must hit the enter key for every layer. Is there a way to disable that whitout thirt party software ??this is the script we use :procedure printlayers;var i,j : Integer; myH : Handle; aStr : String;

begin i := 0; DoMenuText('Active only'); myH := FLayer; while myH <> NIL do begin i := i + 1; aStr := GetLName(myH); Layer(aStr); Redraw; DoMenuText('Print?'); myH := NextLayer(myH); end;end; Run(printlayers);

Thanks..

Link to comment

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...