Setting The Initial Directory In A Savefiledialog Object?
Oct 11, 2011
I have a problem setting the initial directory in an savefiledialog object. when the dialog opens it always opens up in the directory I specified in an earlier version of the application.
Public Sub New(ByVal animalManager As AnimalManager)
InitializeComponent()
InitializeDialog()
'declare and initialize a default directory for storing application data files
[code].....
The message box show the current directory of the applcation as expected.
View 2 Replies
ADVERTISEMENT
May 11, 2009
When i open a file with the proces method en i try to open another file, the openFileDialog box start with the last directory and filename. In the property i write a initial directory. How can reach the situation that the box always start with the initial directory i give.
View 1 Replies
Apr 26, 2011
I am trying to select a folder from an initial directory and store the initial directory with the selected directory in Folder1Dir. Also not sure how to dimension OpenFileDialog1.
[Code]...
View 2 Replies
Jul 21, 2010
It is may be not so important, but very interesting to know why when in programm use SaveFileDialog.ShowDialog() I can't delete selected path?
don't help even: SaveFileDialog.Dispose()
View 4 Replies
Oct 19, 2010
I am trying to get the savefiledialog (when it opens) to open under the following directory:
C:Garman SoftwareThe Bible Study ToolAnnotations
I set the InitialDirectory property to this in the properties settings and also in code....but the damn thing keeps opening up in MyDocuments.I am using VS2008 (VB)
View 15 Replies
Dec 13, 2011
I am working on an assignment, so need to pass the file to the instructor. I thought I remembered a way to input a placeholder character(s) that tells the computer that the path is flexible until the point where I declare the actual path.
For example: if the directory is C:documentsMyProjectinDebug on my machine, and is F:usersownerclass assignmentscis101StudentAMyProjectinDebug on the instructor's machine, can I put a "wildcard" type of character that points to the ...MyProjectinDebug file that will work on both machines in the Initial Directory property?
View 3 Replies
May 8, 2012
I tryed searching for an user in active directory using the code below but it gives me the error in the title of this post above:
AD = New DirectoryEntry("LDAP://OU=SchoolOUhere,OU=Staff,DC=garrard,DC=ketsds,DC=net", "", "", AuthenticationTypes.Secure)
AD2 = New DirectoryEntry("LDAP://OU=_Groups,OU=Staff,DC=garrard,DC=ketsds,DC=net", "", "", AuthenticationTypes.Secure)
[Code]...
Once you eliminate the impossible, whatever remains, no matter how improbable, must be the truth. - "Sherlock holmes" "speak softly and carry a big stick" - theodore roosevelt. Fear leads to anger, anger leads to hate, hate leads to[URL]...
View 4 Replies
May 2, 2012
I have a code section in my current active directory program in which it gives the error in the title above at the line:
If results.Path = "" Then from below code:
Dim results As SearchResult = Nothing
[code].....
View 5 Replies
May 6, 2010
I'm trying to set ACL's on a folder using Directory.SetAccessControl. More specifically, I want to grant "Users" full control on a folder. AddFileSecurity works perfectly. AddFolderSecurity does not. It's result is that "Users" will get added to the folder's ACL but "Full Control" is not checked off (nor are any other permissions). Here is the code I am using which is basically taken right from MSDN documentation [URL]
Imports System.IO
Imports System.Security.AccessControl
Module Module1
[code]....
View 7 Replies
Jun 3, 2009
I have the following code:
My
.Computer.FileSystem.CreateDirectory(Environment.GetFolderPath(CommonApplicationData) & "ASKOEdgeMasterDatabase")
[Code]....
View 1 Replies
Oct 4, 2011
I'm writing a function like this:
Private Function mostRecent(ByVal folder As Directory) As Date
'function to convert the given directory param as a path obj
Dim foldPathStr = Path.GetFullPath(foldPath)
[Code].....
I'd like to fill in that commented line with a built-in command, if available. If not, guess I'll change the parameter.
View 1 Replies
Sep 5, 2009
I am new to .net and am wondering what Index is in .net. In vb6 I could set a index value to any object and then duplicate them and use the same code. Does .net have something like this?
View 3 Replies
May 20, 2009
In my application, a user clicks a "save" button and is then presented with a MsgBox confirmation simply stating "Are you sure you want to save?", or something along those lines.
It's been hit or miss, but occasionally, this MsgBox will load behind the browser rather than be the center of attention with focus. How can I stop this from happening?
View 3 Replies
Sep 14, 2011
I've made a ComboBox in my form where I add some classes of my own design. Unfortunately they get a generic name when they are displayed in the ComboBox. How can I set their names in the Form?
Class Cabel
Public Sub New(ByVal IName As String, ByVal IConstant As Double)
Name = IName
Constant = IConstant
[Code] .....
cbCurrentCabel and cbNewCabel are the names of my two combiboxes
View 2 Replies
Aug 21, 2009
I am trying to get some objects invisible as I fill a dialog, but it doesn't work when coding from the dialog.
how to get this code working
ProductTypeIdtext = "0"
SingleLineTransfer.grnuminfoPSTN.Visible = True
SingleLineTransfer.grwholesale.Visible = True
[Code].....
View 8 Replies
Aug 1, 2010
I need to change the color of an oval on the user interface form based on a variable being true or faulse.
View 10 Replies
Sep 8, 2009
I want to modify the default Object text size for all objects I place on my form. When I am teaching, it is hard to see the text on the objects. I have changed the code area to 16 pt, but I have not seen how to modify the default font size of the object. They all are 8.8 pt.
View 1 Replies
Nov 3, 2011
I use the following VB code to execute a scalar function on my sql server:
cmd.CommandText = "[STFRA].[dbo].MyScalarFunc"
cmd.Parameters.Add("@Fastener", SqlDbType.Int)
cmd.Parameters("@Fastener").Value = 4148
[code].....
View 2 Replies
Aug 19, 2011
I am having some issues with the following script for adding an object to AD - The object being a user and then modifying the properties on it.
Error
Line 350:
Line 351: Dim adUsers As DirectoryEntries = dirEntry.Children
Line 352: Dim newUser As DirectoryEntry = adUsers.Add("CN=" & sUserName, "user")
Line 353:
Line 354: newUser.Properties("givenname").Add(sFirstName)
Description:
An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details:
System.Runtime.InteropServices.COMException: Unknown error (0x80005000)
End of Error
Partial class Add
Me.CreateAdAccount(uname.Text, pword.Text, fname.Text, sname.Text, Nothing)
Public Sub CreateAdAccount(ByVal sUserName As String, _
ByVal sPassword As String, _
ByVal sFirstName As String, ByVal sLastName As String, _
[Code] .....
View 1 Replies
May 25, 2009
I have several forms that have a DataGridView object in them. I recently discovered the AllowUserToOrderColumns attribute. I set it to true and I can reorder the columns at will. The problem is that the order for these columns is lost once the form is closed. Ok, how do you save the order for these columns and then restore them to the form once it has been reopened?
View 4 Replies
Jul 6, 2010
I've been searching and trying out code all day.Nothing errors on this code but it doesn't delete any user accounts.[code]...
View 8 Replies
Feb 2, 2008
With this code I can see what happening I'm just showing you what've I've done so far. Basically I want to use an If statement to see if an active directory object contains one of the keywords found in an INI file. I was wondering is this possible with just an IF statement or do I have to use a loop or a for each and how would I do that using one of those two
View 3 Replies
May 15, 2012
I was wondering i have a try block setup but need to catch an object exists error so I can continue in my code and ignore that user because she/he exists already in another ou.Once you eliminate the impossible, whatever remains, no matter how improbable, must be the truth. - "Sherlock holmes" "speak softly and carry a big stick" - theodore roosevelt. Fear leads to anger, anger leads to hate, hate leads to[url]...
View 4 Replies
Jan 21, 2009
Im working on a small program that is suppost to make my life easier but im running into a little problem:I want to search active directory using the Description field as the search field but somehow my code below doesnt return anything.[code]
View 2 Replies
Jul 16, 2010
With this code I can see what happening I'm just showing you what've I've done so far. Basically I want to use an If statement to see if an active directory object contains one of the keywords found in an INI file. I was wondering is this possible with just an IF statement or do I have to use a loop or a for each and how would I do that using one of those two. [code]
View 2 Replies
Mar 15, 2011
I have this problem that just recently started happening.I've created this snippet that isolates the problem, which is basically, the same VBScript that used to return all of my users from Active Directory, now only returns the first 100 users.If I filter by group, then i get all of the groups (which is more than 100).The problem started happening last November, then went away for a while and has come back.The server guys tell me that nothing should have changed there.When I run this script for various domains, i get a numbered list of just the first 100 users.I'm running this on IIS (which hasn't changed)[code]
View 2 Replies
Jan 11, 2012
I'm looking to add reference object libraries relating to excel and none are available to select from my directory. I have Microsoft Office Excel 2010 Express installed. Where can I retrieve this object library (and others?). Looking to import and export data to/from excel.
View 7 Replies
May 4, 2006
I'm trying to obtain the Terminal Services Profile Path for a user using VB.Net and the System.DirectoryServices.DirectorySearcher. I am able to get the user object's first name, last name, city, state, zip, etc. However, there is one property that eludes me. I cannot manage to find a way to get the terminalservicesprofilepath property.This is how I did it in VB6 and it worked perfect:
visual basic code:
Dim TSPath as string
Dim FirstName as string
[code].....
View 5 Replies
May 10, 2011
I have an application that creates desktop shortcuts. To do this I have to reference the Windows Script Host Object Model. When I add it as a reference, it always creates the DLL, Interop.IWshRuntimeLibrary.dll, in the objx86Debug directory, then references itself to it, rather than looking at wshom.ocx. Even if I add reference wshom.ocx it reverts to saving the file in the objx86Debug directory. The problem is if I move my application to another computer without that DLL being present, the program fails to run.
View 1 Replies
Sep 19, 2011
We have an interactive windows based application written in VB .Net 2010. It uses Word Object to display documents in MS Word. We have a form with a button. When the button is clicked we open the Word document and maximize the Word Windowstate. When we have the Visual Studio Tool running, the Word Document is maximized and has focus, even if we are running the exe from the bin folder outside of the tool. However, if Visual Studio is not running and we run the exe, focus remains on the original form window and the document stays in the task bar.
View 5 Replies