How To Save On A Specific Directory
Dec 15, 2011i have here a code that allows me to draw on a picturebox, but my problem is i want it to save on a specific directory for example: "C:image". how can i do this?[code..]
View 6 Repliesi have here a code that allows me to draw on a picturebox, but my problem is i want it to save on a specific directory for example: "C:image". how can i do this?[code..]
View 6 RepliesIn vb.net how do you check if a ANY directory exists inside a directory I would need to know if there is a folder inside the c:windows directory (WITHOUT knowing if there is ANY directory is in there).
View 4 RepliesI am trying to find a specific file in a specific directory and then i need to get the full path of the file.Is this possible i cant find any help topics about a specific file.
View 5 RepliesI'm creating a simple .NET console application where I want to save a file in a folder that's part of the root project, like so: SolutionName.ProjectNameTestData. I want to put test.xml into the TestData folder. However, when I go to save my XDocument, it saves it to SolutionName.ProjectNameinx86Debug Console est.xml.
View 3 RepliesI need some advise how to get a specific file from a directory?for example i want to take all file that have name like "vid" from directory name "film" and in the directory,there are files like "vid12","vid232" how to get all file that have the word vid?
View 1 Replieshow to count the content of a specific directory?And how do you delete an old file (ex. say your old program that create a back-up. But it has already created many back-ups and now it takes to much of the space in your hardisk.)
View 3 RepliesI am trying to copy a directory structure and .txt files to a duplicate directory in a different location.
Example:
Source Location: \MyServerProjectsProjectA
This directory will contain .txt files in the following locations that will vary from project to project. So the locations would be unknown going in.
\MyServerProjectsProjectAdocsallfiles.txt
[Code]....
At the moment I am using this:
Dim Open As New OpenFileDialog
Open.ShowDialog()
TextBox2.Text = Open.FileName
But that only allows me to open specific files. Can I make it so I can open a folder?
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)
I am trying to find a way to allow my users to choose the directory to save files into, THe file name is automatically generated as it has a naming convention and i am able to pre program a location to save to but i d like to be able to allow my users to decide themselves which directory they want to save the files to and to have the ability to choose which directory to save to
[Code]...
I use Visual studio 2008 I use MYSQL 5.1 I want only to backup database Test to to a specific directory.I use the application settings to determine which directory(see attachment).Green shaded code works perfect.
Red shaded code works not!! This is with My.settings.I can not see the error code, it goes too fast, I can not capture this with:
[Code]...
how to count the content of a specific directory?And how do you delete an old file (ex. say your old program that create a back-up. But it has already created many back-ups and now it takes to much of the space in your hardisk.)
View 1 RepliesHow can I combine multiple *.txt files in a specific directory into one txt file in another directory using VB.NET? (And to delete blank lines at the end of the new file)
I know how to do it in vbscript:
Const ForReading = 1
Const ForWriting = 2
Set objFSO = CreateObject("Scripting.FileSystemObject")
Set objOutputFile = objFSO.CreateTextFile("C:logsimportoutput.txt")
[Code] .....
Am writing a windows app using vb.net 2005. The app captures a string variable from the user. As each file within a directory is read, I want to match the stored string within each file. If I find a match to the string, I want a list box to be populated with the name of the file. I have added Imports System.Text.RegularExpressions and tried using the match collection.
For example: My direcotry has 5 text files. I want to match a string "PARENT" in the text of all these 5 files. The list box should output the name of each file where the string was found.
Is there any way of being able to read the structure of a specific directory in tree view. [code]
View 2 RepliesFor Each foundFile As String In My.Computer.FileSystem.GetFiles("C:Documents and Settings oeDesktopMy Music2", _
FileIO.SearchOption.SearchAllSubDirectories, "*.mp3")
My.Computer.FileSystem.CopyFile(foundFile, "C:Documents and Settings oeMy DocumentsMy Music" & foundFile)
Next
Error message is on the third line:
The given files path's format is not supported.
I have tried all variations to this without any luck.
what is probably a very stupid and basic question, I'm new to Visual Basic I currently coding a program which deletes specific files that are part of a game. It finds and deletes all the files in the "program files" directorys but there are also certain files in My Documents that must be deleted.
The problem is the filepath to My Documents includes a username which is unique to different users, meaning on any other pc the program will not work.
The path on my computer is: C:UsersShaneDocumentsElectronic Arts
How can I get the program to find this folder on other computers? I'm totally lost.
I'm simply trying to create a small tool, to create a username / password / OU group, and a few properties on a new user from a form with a few text boxes, and a button.I know how to connect to LDAP, though i'm having a problem getting this done.
View 3 RepliesI want to get a list of all users and groups that belong to a specific department (entered by the user) from Active Directory using VB.Net and DirectoryServices.
View 2 Repliesi want save image in directory path and also save path in database...sqlserver 2005 and retrieve in in same folder and path?
View 1 RepliesI would like to modify SaveFileDialog to instead save a new directory (which will contain new files automatically generated for the user based on the name of the directory). I can produce the necessary code to carry out the intended functionality, but I want the dialog to prompt for a 'folder name' instead of 'file name' and to not display 'save as type'. Is this possible? Is there a better solution for a create new folder/directory dialog? I know about folderbrowsedialog, but I need to force the user to name a new directory and identify the location
View 8 RepliesI'm trying to fill a pdf with iTextsharp and save a new file with a different name to a directory. I'm not getting any errors when I run it, nor do I see anything in the code as an error. But I'm missing something. Maybe I'm not writing the file to the directory correctly. I removed several af.SetField's for brevity.
Public Sub fill_form(ByVal Source As Object, ByVal e As EventArgs)
Dim newFile As String = "D:\Inetpub\wwwroot\pdfs\" + data1.Text + ".pdf"
Dim ps As PdfStamper = Nothing
Try
[code].....
I am using Visual Basic 2010, and i am trying to save a directory with a name "AP Backup" and assign also the current date on Directory Name.e.g. AP Backup 29-11-2011.
View 4 RepliesI'm making a program and I want the program to save a form as an executable file(.exe). Is this possible?
View 9 RepliesMy web and sql db are on two different servers. I'm developing a component in my vb.net web app which uses sql dbmail to send mail. That part is already working but part of the requirement is to allow the users to add an attachment to their email. SQL dbmail requires an absolute path for the email attachment for example, in sql:Declare @Attachments nvarchar(max)
Select @Attachments = 'D:emp ewreport.pdf'So currently in my vb code I have the following:
[Code]...
I Have a folder in this path C:UsersXXXDesktopOriginalXXXinDebugBackup And when I save my project with "XXX" name the same time I need to change the Backup Folder using that save filedialog name and it shouldn't overwrite it.
Private Sub SaveProject_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles SaveProject.Click
Using sfdlg As New Windows.Forms.SaveFileDialog
sfdlg.OverwritePrompt = True
sfdlg.InitialDirectory = "C:"
[code]...
This is a new question based on the response from an older post. I needed to save a value when my app is run for the first time that would be applicable to all users who logon to the PC and use my application. The setting is only known at the time of the install so Application settings with application or user scope are unsuitable. I was advised to save the setting to an external file and save/read it as needed. The obvious choice was to save the file to the projects application path (keeping things tidy). Everything worked fine during testing but when the application is installed on a PC, the application path becomes C:program files application nameetc. When I try to execute the code that saves the file, I get a permissions denied error. I understand that it's part of the UAC control but when did it become acceptable to stop developers programmatically creating files in their own application folder?
View 16 Replieshow to set destination directory path to save file
View 4 RepliesI am using the following code to send an email through Outlook, but I want the email to be saved in a predefined directory. Under the Sent Items folder I have a sub folder called "Simon". What I want is when the email is sent for the email to be saved here.I have tried using the following code, but it appears that it does not use string values to specify the folder location but a value. I am unable to determine what value the "Sent Items\Simon" folder is.
MailFolder = tempNS.GetDefaultFolder(Outlook.OlDefaultFolders.olFolderSentMail & "\Simon")
Dim tempNS As Outlook.NameSpace
Dim MailFolder As Outlook.MAPIFolder
[code]....
how to save specific settings (IE: splitter bar.distance inside of a split container, listview column widths and positions)
View 5 Replies