Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~4K People Reached
Favorite Forums
Favorite Tags
Member Avatar for m1234ike

Hello Daniweb, I need to write a program to change the extension of all the files in a folder from a certain extension to another. My code is shown below, however, I have one problem: i.e. Say we want to change all files with the extension "*.tx" to "*.txt" but …

Member Avatar for Reverend Jim
0
1K
Member Avatar for m1234ike

Hello Daniweb, I am starting this thread to receive some help about a permissions problem with overwriting files when moving files to a Cleanup folder from the Desktop. I have researched the issue and it says to modify the permissions in the app.manifest to something like: [ICODE] <requestedExecutionLevel level="requireAdministrator" uiAccess="false" …

0
64
Member Avatar for m1234ike

Hello DaniWeb, I have a new idea for an app: I have an external harddrive and I usually backup my desktop with a cleanup folder which I usually move to the external harddrive. The problem is: when I search for a file (i.e. example.mp3) I will find multiple copies which …

Member Avatar for codeorder
0
273
Member Avatar for m1234ike

Hello DaniWeb, I have a new idea for an app: I have an external harddrive and I usually backup my desktop with a cleanup folder which I usually move to the external harddrive. The problem is: when I search for a file (i.e. example.mp3) I will find multiple copies which …

0
72
Member Avatar for m1234ike

Hello Daniweb, I am writing a program to execute the command prompt command "getmac /v >> MACLIST.txt" using a Visual Basic form, including: 2 buttons(getmac and filter the text file) , 2 textboxes (alternate text file name and user name), and two radiobuttons (default text file name or custom name). …

Member Avatar for m1234ike
0
387
Member Avatar for m1234ike

Hello Daniweb, I am writing an App that uses two buttons, two radiobuttons, and a textbox to use the Windows shell command to print the "getmac" command to a text file: i.e. "getmac /v >> whatever.txt" I want to save the "wireless" MAC addresses to a text file from a …

Member Avatar for m1234ike
0
235
Member Avatar for m1234ike

Hello, I am starting this thread to inquire about if anybody knows any ways to manipulate an image by dragging the perimeter of the image and by doing so, re-shaping the image. I.E. A web site logo or company banner with some text inside a Superman diamond. Sounds cool? Does …

0
84
Member Avatar for m1234ike

Hello, I need some help making a "Windows-Like" copy and replace prompt with this folder cleanup application below. The application uses a Windows Form and two buttons: one to create the separate subfolders in the main Cleanup folder and another for special folders. Take a look: *************************************************************** [code] Imports IWshRuntimeLibrary …

0
69
Member Avatar for m1234ike
Member Avatar for m1234ike

Hello, I am trying to create an application that cleans the current directory i.e Cleanup/text folder >> test.txt and 2test.txt ect... I have two problems: 1st I cannot cleanup all of the Shortcut files i.e. Adobe.lnk ect... ########################################################################### Here is what I have so far for the .lnk files: [code] …

Member Avatar for Huntondoom
0
128
Member Avatar for m1234ike

[code] Dim myPathsix As String = IO.Path.Combine(My.Computer.FileSystem.CurrentDirectory, "Cleanup/Programs") IO.Directory.CreateDirectory(myPathsix) Dim count As Integer = 1 If Not IO.Directory.Exists(myPathsix) Then IO.Directory.CreateDirectory(myPathsix) '// create if it does not exist. For Each foundFile2 As String In My.Computer.FileSystem.GetFiles _ (My.Computer.FileSystem.CurrentDirectory, _ FileIO.SearchOption.SearchTopLevelOnly, "*.exe" & "*.pl" & "*.jar" & "*.zip" & "*.rar") count = ++count …

Member Avatar for Huntondoom
0
222
Member Avatar for m1234ike

I am making application that sends all the programs (.exe) into a created folder on the current directory. The application is setup by first creating a folder at the push of a button. Next, a try catch is used to send all of the .exe files into the new folder. …

Member Avatar for Huntondoom
0
139
Member Avatar for m1234ike

######################################################################################## My question is : How do you specify shortcuts: (i.e. Firefox shortcut on desktop) in VB? I want to make a program that creates a folder for shortcuts. Thanks in advance, Mike

Member Avatar for sandeepparekh9
0
72
Member Avatar for m1234ike

I want to create a program that I can create a Text file folder on my desktop and move all the text files into the folder. Here is what I have so far: Below is where I create the Text folder: [code]Dim myPath As String = IO.Path.Combine(My.Computer.FileSystem.SpecialDirectories.Desktop, "Text") IO.Directory.CreateDirectory(myPath)[/code] Here …

Member Avatar for codeorder
0
609