.NET
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
Setting Path value of Insert window.
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Hi,
Using .Net code
How i can i set the value for Path field of "Insert" window.
Please advise.
Regards,
Raman
Re: Setting Path value of Insert window.
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
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
-------------------------------------------------------------------------
Re: Setting Path value of Insert window.
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
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
