VS 2008 - Unable To Delete Text File?
Apr 5, 2010
I ran into a problem trying to delete certain text files. 99% of the time everything works fine but every once in a while I get a problem trying to delete certain text files. The exception thrown has a lot to say so here's a screen shot of it. :
Attachment 77319
Here's the code I use to delete the text files.
If File.Exists(StringForTextFile) = True Then
Try
My.Computer.FileSystem.DeleteFile(StringForTextFile)
Catch ex As Exception
[Code] .....
I was thinking that maybe if you tried to send the file to the recycle bin it would always allow that. What would the correct code for :
My.Computer.FileSystem.SendFileToRecycleBin(StringForTextFile)
View 3 Replies
ADVERTISEMENT
May 15, 2012
Sub Main()
Try
Dim output, filename1, filename2, filename3, date1, date2 As String
[code]....
i'm getting the following error:
in DeleteFile The process cannot access the file'c:empfilename2.doc' because it is being used by another process.
am i supposed to release any processes before deleting the files? what am i missing?
EDIT: here is my "Send Email" function that sends out the files
Public Sub SendEmail(ByVal msgTo As String, ByVal msgBody As String, ByVal date1 As String)
Dim mail As New MailMessage()
Dim objSMTP As New SmtpClient()
[code]....
View 2 Replies
Oct 20, 2011
I cannot able to delete the database file. File also not in use.[code]...
View 3 Replies
Jul 6, 2009
I have a routine that will check a text file for a line to be deleted and deletes it when found. Now the problem i have found is that the lines can be slightly different depending on what the user has done. Now in the TXTSETUP.SIF which is a file in the Windows Source you have the following lines FIG 1. FIG 1: It may look like this: ascent.jpg = 1,,,,,,,,3,3autumn.jpg = 1,,,,,,,,3,3
View 1 Replies
Dec 27, 2009
remove line from text file?
View 6 Replies
Jan 4, 2010
the way i have my code i grab values from my listview (dynamic integers that vary depending on user choices up to 6 long) then perform actions with them in afor loop, at the end i was trying to delete that value so the loop wouldn't use it again but i can';t seem to get the syntax to delete the value.
[code]...
i thought listviewIDs.Items.Remove(listviewIDs.Items(x).Text) would have worked but no
View 2 Replies
Aug 31, 2011
What I want, is for my text file to be read into the array named "CFiles()". Then once this is complete to delete the file But I get the error, The process cannot access the file 'C:UsersAndrewDesktopNew.txt' because it is being used by another process. On 3rd to last line. My code is below:
[Code]...
View 2 Replies
Aug 31, 2011
What I want, is for my text file to be read into the array named "CFiles()". Then once this is complete to delete the fileButI get the error, The process cannot access the file 'C:\Users\Andrew\Desktop\New.txt' because it is being used by another process. On 3rd to last line.My code is below:
Public Class Form1
Dim File As String = "C:\Users\Andrew\Desktop\New.txt"
Dim CFiles() As String
[code].....
View 3 Replies
Jun 3, 2011
I am using MS Access 2007 as database and VB 2008 to build an application to show the content of 2 tables as a single table.I have two tables in MS Access and i have linked both the tables using "ID" as primary key(1st Table),foreign key(2nd Table). I used Query Wizard to show the data of both tables in a single table(3rd Table).I am able to view the content of all 3 tables using datagridview in vb 2008(Using Code), but i am unable to add,delete,save and search the content of the table using code. My concern is,i will be able to do all these operations using codes only.Would you please help me out in this.
View 5 Replies
Feb 8, 2012
I want to create a file removal which revieve directory files to delete from a text file..[code]
View 2 Replies
Jun 6, 2011
Below is my code for DELETE button. What i want is if the user select the transaction from the listview and press the DELETE button it must be able to delete the transaction from listview and text file(temporary log file) which i keep all the transaction record. At the same time the list view must able show the total current balance from the deleted trnsaction.
[Code]...
View 11 Replies
Feb 13, 2011
How can be find out which file is going to delete when, user provides command like DELETE or SHIFT + DELETE or by programmatically gives DELETE command. Well I know about FileSystemWatcher Class, but this class doesn't provide information before delete...
View 1 Replies
Aug 24, 2010
While displaying the .RTF file in rich text box control. It displays all the rtf formatting strings. how to display rich text in rich text box control.
View 21 Replies
May 13, 2010
I am trying to delete the last line of a text file, then append new text to the end - The problem I have is that the code I have is set up to search for an Index, not a String, or the EOF line - I tried to modify it to search for the end string in the file, but that didn't work, either - Here's what I have:
'Delete last line
Dim lines As New List(Of String)(IO.File.ReadAllLines(LocalAppData & "settings.txt"))
'Remove the line to delete, e.g.
[code].....
View 4 Replies
Oct 31, 2011
I want to know how to delete last text line of text file..Most that I found in the internet is delete last line of text file which is blank line in the text file. I want to delete last text in the text file. Here is my code, but this code is use to delete specific text in text file. How to modify this code?[code...]
View 12 Replies
May 9, 2010
Trying to write to a text file using GetAsyncKeyState in user32, the only issue that I am having is when I press the backspace I get the ansi code character, but this is not what I want. I want it to really backspace, I know its doing this since that is how I coded it.
Here is my code
For BKey = 8 To 8 'THIS SETS THE BACKSPACE
CountKeys = 0 ' Seting the key code back to 0
CountKeys = GetAsyncKeyState(BKey)
If CountKeys = -32767 Then
[Code]...
View 3 Replies
Nov 22, 2008
I have a project where you type something then it looks through a text file for what you typed. I would then like to make a way to edit the text file once I find what I'm looking for. So, how do you delete text from a .txt file that you are searching through? Also, how do you re-write in that place you just deleted the text from?
View 3 Replies
Apr 7, 2012
I have a gridview that contains value of every rows read from a text file. What I want to do is, edit and delete the selected row on the gridview. I already have the code to show every row on the textfile:
[code]...
What I am going to ask is, how do I get the index of selected row return and fill the value to the textbox then update it to the textfile?
View 2 Replies
Apr 26, 2012
I am working on a program with a list box that displays text from a selected text file. I have already made it to delete the item from the listbox but I don't know how to get it to delete that same line from the text file so it doesn't just display it again when you reopen the dialog. Any help? I am using streamwriter and streamreader.
View 2 Replies
Mar 1, 2010
I have a sample application, in which I am trying to load a text file in WebBrowser control. I have a html file through which I am calling Javascript function to open text file. But it is showing me error like; Cannot find 'file:///C:/temp/test%2520page.txt'. Make sure the path or Internet address is correct. File exist at this location and its name is; test page.txt. I am not getting what is happening.
View 1 Replies
Dec 19, 2009
i want to save String in File Who not Able to open in Text Editor Open it Only on my Application Suposly i want to save Phone Book Contact In this file
Three Text Boxes
1. Name
2. Phon Number
3. @mail Address
i already read these stuff but still not Understand i already check Kaymaf Provided link , but i m not understand Create Your Own Custom File Type
View 1 Replies
Jul 9, 2009
Deleting a line from a text file. This is for an ASP.net Webpage. I will have a file called Sources.txt. Example data of this file looks like this[cde]...
View 8 Replies
Jun 18, 2012
i want to delete an item on a listview, this is my code
If ListView1.SelectedItems.Count > 0 AndAlso MessageBox.Show("Do you want to delete this item?", "Confirm", MessageBoxButtons.YesNo) = Windows.Forms.DialogResult.Yes Then 'make sure there is a selected item to delete
ListView1.SelectedItems(0).Remove()
End If
now my problem is i want to delete that item on the text file line
( using streamreader and streamwriter)
View 1 Replies
Jun 30, 2010
I'm going nuts with this. Obviously I cannot open the reader ard writer on the same file simultaneously.
[Code]...
View 1 Replies
Jan 20, 2010
I've seen posts on deleting the lines from a text file that are specified as a function parameter, but I only need to delete the first and last lines from the file.
I'm still a newbie when it comes to working in files, but it seems that it should be simple to delete the first line... Just delete all text from BOF to the first CrLf character. Am I right?
As for the last line, I understand that I'll have to get a count of the lines in the text file to find it (as the file won't always be x amount of lines long).
View 3 Replies
Feb 27, 2009
blic Class Form1
Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
[code]....
View 10 Replies
Feb 8, 2012
Dim filepathName As String = HttpContext.Current.Server.MapPath("/CaseStudyImages/" &ID & "/")
' DeleteDirContents(New IO.DirectoryInfo("filepathName"))
[Code].....
its giving me error directory is not empty how can i delete directory having files in it
View 6 Replies
Aug 7, 2011
Here is the code that I am using, every time i run it i get an error message
Error Message: Syntax error (missing operator) in query expression '(((? = 1 AND BlankP IS NULL) OR (BlankP = ?)) AND (StudentID = ?) AND ((? = 1 AND Studentame IS NULL) OR (Studentame = ?)) AND ((? = 1 AND 1t IS NULL) OR (1t = ?)) AND ((? = 1 AND 2t IS NULL) OR (2t = ?)) AND ((? = 1 AND 3t IS NULL) OR (3t = ?)) AND ((? ='.[code.....
View 2 Replies
Mar 31, 2009
i want to delete few lines from a big text file , normally this lines are at the starting of the text file , so it is possible that i can enter the line no from input box and the vb.net can delete that particular line number from the text file ,
[Code]...
View 8 Replies
Jan 15, 2012
I am writing a program that manipulates text file using console application. What I want to do is to delete 1 specific line based on the ID entered by the user.[code]My program should delete the line with the ID DR-02, but my program deletes items from DR-02 to DR-04 instead of DR-02 only.[code]
View 3 Replies