• Industries
  • Products
  • Buy
  • Services & Support
  • Communities
  • Discussion Groups

    .NET

    Reply
    Valued Contributor
    RamanSBV
    Posts: 85
    Registered: ‎02-28-2012

    Setting Path value of Insert window.

    96 Views, 2 Replies
    03-01-2012 01:42 AM

     

    Hi,

     

    Using .Net code

    How i can i set the value for Path field of "Insert" window.

     

     

    Please advise.

     

    Regards,

    Raman

    Please use plain text.
    *Expert Elite*
    Posts: 6,432
    Registered: ‎06-29-2007

    Re: Setting Path value of Insert window.

    03-03-2012 06:45 AM in reply to: RamanSBV

    Hi,

     

    mybe I don't understand the question, but the path-field (that I know in the _INSERT dialog) can't be set before you select a file! It does just report the path to the file you have selected. Without selection ... no path of a selection ;(

     

    - alfred -

    -------------------------------------------------------------------------
    Alfred NESWADBA
    Ingenieur Studio HOLLAUS ... www.hollaus.at
    -------------------------------------------------------------------------
    Please use plain text.
    Active Contributor
    Posts: 28
    Registered: ‎03-02-2012

    Re: Setting Path value of Insert window.

    03-03-2012 07:09 AM in reply to: RamanSBV

    Do you mean the insert value as in the location of the dialog on the screen?

    If so:

     

            '' dialog
            Dim ss As New DiaglogName
            Application.ShowModelessDialog(ss)
            ' Location of window
            Dim x As Integer = ((PrimaryScreen.WorkingArea.Width) / 2) - (ss.Width / 2)
            Dim y As Integer = ((PrimaryScreen.WorkingArea.Height) / 2) - ((ss.Height / 100) * 65)
            ss.Location = New System.Drawing.Point(x, y)

     

    Sorry if I missed the point

    http://www.designprosoftware.co.uk/
    Please use plain text.