Create A Message Box To Delete Folders In 2010 Express?
Sep 9, 2011
Is it possible to create a Message Box to delete folders in VB 2010 Express?This is what I have-If MessageBox.Show("Do you want to delete this folder ?", "Enter Title", MessageBoxButtons.YesNo) = DialogResult.Yes Then End If ,modify, delete or add code so that it is possible to delete a certain specified folder?
View 4 Replies
ADVERTISEMENT
May 31, 2009
i'm developing a program that must be able to create, delete and edit files or folders on a remote web address such as [URL]
View 2 Replies
Jan 17, 2011
I made an uninstaller which uninstalls certain application. However this application have lots of read-only files and folders and my uninstaller isn't able to remove any of them.
Here's the uninstaller code that I have:
Imports System.IO
Dim path As String
Dim tempstring As String
Dim totalbytes As Long
[Code] ......
View 8 Replies
Feb 11, 2010
My program actually downloads a zip file then extracts it onto their desktop. But I need an uninstall feature for it, which is basically deleting multiple folders and containing files. How can I do this in vb.net?
View 3 Replies
Oct 4, 2011
want to delete data from the database where the value of userID field is equal to the value inside txtUserID.Text. I have a problem about my query statement.
View 5 Replies
Sep 3, 2011
I have been working on a simple delete and update thrugh the TableAdapter in Express 2010 and can't get it to update after a delete query. The same TableAdapter works fine when I do an 'Add', but not after the delete. What am I missing? I could use the SQL commands, but would like to use the software commands instead. Here is the delete code:
[Code]...
View 11 Replies
Apr 7, 2010
I need help with file enumeration. I'm trying to create a program that can list files, folders and sub folders locations in a log file for diagnostic purposes. After it searches it can open notepad and display the results. The problem I'm having is that I'm a beginner and not familiar with file enumeration.
View 14 Replies
Feb 5, 2012
I'm using Visual Basic/Studio 2010 Express to run my VB program using MS Access database. I'm going to convert the Access database to a SQL Server Server Express data base so I downloaded SQL Server 2008 R2 Express onto my pc with Windows 7. The installation went fine and I actually converted my Access database to SQL server. I did not change anything in my VB program.My problem: When I run my normal program with the Access database (no changes), I now get an error when it executes the following code:
dr = cmd.ExecuteReader.
I get the error System.Data.OleDb.OleDbException was unhandled;
ErrorCode=-2147467259; Message=ODBC--connection to 'SQL ServerBilotta-pcsqlexpress' failed.
[code]....
It appears the ODBC is looking for the SQL server eventhough the program is pointing to the MS Access db. How do I get it to NOT look for the SQL db? Is there a default setting for the
View 2 Replies
Aug 19, 2011
If I create a DLL using VB 2010 express can it be used by previous versions of of .Net (3.5, 2.0)? Will the DLL use .Net 4.0 components, which is what I want. I don't see a way to force that to be the case.
View 1 Replies
Oct 3, 2011
I'm just using the default SQL Server Express in my vb 2008 express edition as my database server for my database operation. When I tried to update the records on my table I got a runtime error which indicates the error on this line 'myCommand.ExecuteNonQuery()'and it highlights a yellow background on it. The runtime error says "SqlException was unhandled: An expression of non-boolean type specified in a context where a condition is expected, near 'Number'. ".
Imports System.Data.SqlClient
Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click
Dim myConnection As New SqlConnection
Dim myCommand As New SqlCommand
[code]....
View 3 Replies
Aug 22, 2009
am created a function for deleting folder
Public Sub DeleteFolder(ByVal strPath As String)
Dim objDir As New DirectoryInfo(strPath)
objDir.Delete()
[code].....
View 4 Replies
Feb 1, 2009
how to delete them by using this My.Computer.FileSystem.DeleteDirectory("C:Your_Folder", FileIO.DeleteDirectoryOption.DeleteAllContents) but it says that that this path cannot be accessed.I run vista how can i get rid of that?
View 5 Replies
May 8, 2012
None of the explanation in the forum have worked, even though this has been asked many times.[code]It has been built, and registered with regsvr32. It returns the error message 'Entry point not found'.VBA recognises the Function but cannot run it.
View 5 Replies
Jun 26, 2012
I'm writing a little app that I can tell to delete files older than x amount of days.
You select a folder and click go and it does the job but it only does the files within that folder. What I want to do is also delete all the files in all the sub folders. [code]....
View 1 Replies
May 8, 2012
How can we delete folders older than 3 months based on file name I mean the folders need to be delete based on file name not based on modified date Folder name itself will be the date ( example : 20120825 ) this is YYYMMDD formate
View 7 Replies
Apr 17, 2012
How to delete Folders ( not the files ) older than 1 month old.
View 9 Replies
Feb 12, 2011
My program gives the user the ability to change where the files are saved. Is there a way to execute this
[Code]...
View 4 Replies
Mar 26, 2011
Why does a batch file run when I create it in Notepad, but not when I create it in my VB code?
Dim strStartFile As String = "C:Documents and SettingsAll UsersStartMenuProgramsStartupStarter.bat"
If Not File.Exists(strStartFile) Then
[code].....
View 1 Replies
Jan 3, 2011
I am relatively new to VB and want to do the best I can. I am current trying to develop an appointment form using windows form with VB 2010 express and what to know how to create a data file that can store and retrieve data entered into the appointment form. Or any other option in building this software. Since I am still new, please explain in detail.
View 3 Replies
May 5, 2012
I've got a chapter I'm supposed to be working through and cannot access the template for a blank solution. My instructions are as follows:From the "File" menu, select "New", select "Project", select "Other Project Types", select "Visual Studio Solutions", and select "Blank Solution."
I can see File, I then see "New Project", but not just "Project". I click on this and my only choices are :
Windows Form Application WPF Application Console Application Class Library WPF Browser Application
I've tried searching the installed templates for "Blank Solution", "Solution", "New Solution" and have no results. I've looked around for a couple hours hoping for a way around this and no luck so far.
View 16 Replies
Mar 24, 2011
I'm writing a vb.net (2010) app to extract a zip file in XP to a specific folder. That part works fine. Now I want to create a desktop shortcut to an application (if it exists I need to delete it first)
This should be an easy to find answer but I believe my eye is beginning to twitch!2 error messages: First Error: "Type expected" On Dim shortCut As IWshRuntimeLibrary.IWshShortcut = DirectCast(WshShell.CreateShortcut(FileName, IWshRuntimeLibrary.IWshShortcut), == this is a simple syntax error but I thought the type was the IWshShortcut ==
Second Error: On "With Shortcut" it fusses: " cannot refer to an instance member of a class from within a shared method or shared member initalizer without an explicit instance of the class."
[Code]...
View 3 Replies
Jan 17, 2011
I searched the forum for solving this issue, but couldn't find one. I made an uninstaller which uninstalls certain application. However this application have lots of read-only files and folders and my uninstaller isn't able to remove any of them. So I need a code that would do so. Here's the uninstaller code that I have:
[Code]...
View 5 Replies
Jan 17, 2011
I made an uninstaller which uninstalls certain application. However this application have lots of read-only files and folders and my uninstaller isn't able to remove any of them.
Here's the uninstaller code that I have:
Imports System.IO
Dim path As String
Dim tempstring As String
Dim totalbytes As Long
[Code] .....
View 4 Replies
Jun 16, 2010
ive been searching round the net but the only examples i can find are for vb6 which i know nothing about, i want to be able to scan a folder and all sub folders with in it and delete any folders which are empty.
This is all the code ive put together so far:
vb Dim folder2scan as string = Folderbrowser.selectedpath
If IO.Directory.GetFileSystemEntries(folder2scan).Length = 0 Then
End If
View 1 Replies
Sep 9, 2011
I am developing a VB.NET application which we will be running at user login on our corporate network which will be setting up the user's environment, this will include the start menu.
I have a method which is attempting to delete all files and folders located in the user's Start MenuPrograms folder (C:Users{user}AppDataRoamingMicrosoftWindowsStart MenuPrograms), our environment is Windows 7.[code]...
View 1 Replies
Jan 6, 2008
I am currently writing an application, where the user clicks a button, it scans for empty folders and then puts them in a listbox.The user can then then select the folders in the listbox and click delete. how to i get the scan button to find the empty folders?
View 6 Replies
Jan 21, 2009
I would like to know how to delete all files and folders under a certain directory. For example if I wanted to delete all files and folders in C:est how would I do that?
View 6 Replies
Jan 31, 2009
I Know how to delete files permanently like this
[Code]...
View 2 Replies
Jul 22, 2009
I'm fiddling around with a small program that can delete a directory, including its sub-folders and files.This is the code I'm using: (Note-I found it on the net, I didn't code it myself)
Private Sub filedelete(ByVal filename As String)
Dim filesystemobject As Object
filesystemobject = CreateObject("Scripting.filesystemobject")[code]..........
So on click of button '2' the folders are cleaned out, and on click of button '3' they are deleted - it works great.Now the problem is, if any of the folders in the directory 'test' are not accessible to the current user, the program throws the exception 'Access to the path is denied.Is it possible to skip folders that are not accessible, and just ignore them, and delete the ones that are accessible?What code needs to be added to enable this ability?
View 3 Replies
Jan 29, 2010
here is the code i use for adding folders to the treenode. it works great but i want a delete button for deleting both files and folders... and how can i make the treenode auto refreshing. or refreshing when exiting another form...
Private Sub PopulateTreeView(ByVal dir As String, ByVal parentNode As TreeNode)
Dim folder As String = String.Empty
Try
[Code]....
View 1 Replies