Beste HofCAD,
Thanks.
Groetjes Rob.
Thanks.
Groetjes Rob.
Deze sectie stelt je in staat om alle bijdragen van dit lid te bekijken. Je kunt alleen de bijdragen zien waar je op dit moment toegang toe hebt.
Toon bijdragen MenuCitaat van: EddyBeerke op ma 02 03 2015, 16:24:08Beste Eddy,
Met welke versie werk je?
AutoCAD civil3d ???? of Maps ????
Citaat van: EddyBeerke op di 10 02 2015, 09:40:17
Ik blijf erbij... transparant werkt het... gaat toch om wat ik bedoel???
Citaat van: robbie op ma 09 02 2015, 09:33:44
PS Zie http://docs.autodesk.com/ACD/2010/ENU/AutoCAD%202010%20User%20Documentation/index.html?url=WS1a9193826455f5ffa23ce210c4a30acaf-5128.htm,topicNumber=d0e338160
FROM (Command Modifier)
Locates a point offset from a reference point within a command.
Toolbar: Object Snap
Command entry: At a prompt to locate a point, enter from
Base Point: Specify a point to use as a base point
of <offset>: Enter a relative offset
At a prompt for locating a point, enter from, and then enter a temporary reference or base point from which you can specify an offset to locate the next point. Enter the offset location from this base point as a relative coordinate, or use direct distance entry.
NoteYou cannot use this method during dragging in commands such as MOVE and COPY. Specifying an absolute coordinate, either by keyboard entry or with a pointing device, cancels the FROM command.
Citaat van: EddyBeerke op ma 09 02 2015, 08:03:55Beste Eddy,
Misschien bedoel je het transparante comando "FROM"?
Of de Osnap: Extention
Citaat van: bart op di 14 05 2013, 11:49:48Beste Bart,
Als je die pdf's gewoon opend in een adobe of zo zijn ze dan wel goed ?
kan je een pdf die niet zichtbaar is op het forum zetten ?
Imports Autodesk.AutoCAD.Runtime
Public Class Form1
<CommandMethod("Cursus1")> Public Sub Toonformulier()
Me.Show()
End Sub
Private Sub TextBox1_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox1.TextChanged
End Sub
Private Sub Label1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Label1.Click
End Sub
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim a As Double
a = Me.TextBox1.Text
a = a + 1
Me.Label1.Text = a
End Sub
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
End Sub
End Class