topbanner_forum
  *

avatar image

Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
  • Thursday November 27, 2025, 12:25 pm
  • Proudly celebrating 15+ years online.
  • Donate now to become a lifetime supporting member of the site and get a non-expiring license key for all of our programs.
  • donate

Recent Posts

Pages: prev1 ... 84 85 86 87 88 [89] 90 91 92 93 94 ... 222next
2201
Finished Programs / Re: DONE: make folder set out of a txt file
« Last post by skwire on October 25, 2012, 10:46 AM »
Hi, mandolin, and welcome to the DonationCoder site.  Let me give your request some thought.  You are aware you can create subfolders by using backslashes, right?  For example, to create your example above, you could use:

c:\folder1\subfolder1
c:\folder1\subfolder2\subsubfolder2
c:\folder1\subfolder3
2202
N.A.N.Y. 2010 / Re: NANY 2010 Release: ClipTrap
« Last post by skwire on October 25, 2012, 10:43 AM »
As of right now ClipTrap overwrites an existing file without any notice.  Poof.  All the previous clippings saved vanish and are substituted with a new set.  User ought to at least get a warning.

I'm not sure what you're getting at.  If you try to save using a filename that already exists, you will get the standard "blah blah already exists.  Do you want to replace it?"  Is that not notice enough?
2203
N.A.N.Y. 2010 / Re: NANY 2010 Release: ClipTrap
« Last post by skwire on October 24, 2012, 09:35 PM »
Website | Download
v1.1.4 - 2012-10-24
    + Last used filename is now saved.  (Thanks, nkormanik)
    * No longer writes the Unicode BOM to files.
2204
General Software Discussion / Re: replace files in batch
« Last post by skwire on October 23, 2012, 08:38 AM »
Here's an AuotHotkey snippet that should do it (adjust variables as necessary).  However, run it on a test folder structure first.

Code: Autohotkey [Select]
  1. myDir := "c:\tmp6"                 ; Will be recursed.
  2. myFileName := "File.txt"           ; Filename to look for.  Name only, no path.
  3. myReplacementFile := "c:\File.txt" ; Full path to replacement file.
  4.  
  5. Loop, % myDir . "\*.*", 0, 1
  6. {
  7.     If ( A_LoopFileName = myFileName )
  8.     {
  9.         FileCopy, % myReplacementFile, % A_LoopFileFullPath, 1
  10.     }
  11. }
2205
General Software Discussion / Re: replace files in batch
« Last post by skwire on October 22, 2012, 08:18 PM »
This is easy to do but there is one caveat.  Do you want to replace the "contents" of these filenames with your specific file or do you want to replace the entire file with a new file.  For example:

Assume the files that need replacing are named File.txt.  Assume the file you want to use as a replacement is named NewFile.txt.

1) Did you want to replace the contents of File.txt with the contents of NewFile.txt (thus leaving the original File.txt name in place)?

2) Or, did you want to completely replace File.txt with NewFile.txt.

Of course, this scenario is moot if you're looking to replace File.txt with a completely different file that is also named File.txt.
2206
N.A.N.Y. 2010 / Re: NANY 2010 Release: ClipTrap
« Last post by skwire on October 22, 2012, 08:27 AM »
Hi, Cattleya, and welcome to the DonationCoder site.  My software is freeware but it's not open source.  Was there a particular feature you'd like to see added to ClipTrap?
2207
General Software Discussion / Re: Text scraper (TextCatch for windows 7)
« Last post by skwire on October 19, 2012, 08:18 PM »
Based on their web page, TextCatch is compatible with Windows 7.

http://www.skesoft.com/textcatch.htm
2209
Finished Programs / Re: DONE: make folder set out of a txt file
« Last post by skwire on October 17, 2012, 06:07 AM »
You're very welcome.   :D  I assume you were able to make it work how you like?
2210
Finished Programs / Re: DONE: make folder set out of a txt file
« Last post by skwire on October 16, 2012, 05:07 PM »
Here you go.  Apologies for taking so long.   :-[

Website | Download
v1.1.0 - 2012-10-16
    + Added ability to specify a date/timestamp token for use when creating folders.  (Thanks, rogerrabbit)
2211
Finished Programs / Re: DONE: make folder set out of a txt file
« Last post by skwire on October 10, 2012, 02:59 PM »
Hi, rogerrabbit, and welcome to the DonationCoder site.

Is there any way that the current date can be added automatically to the folder name?

Not currently, but I certainly could add the functionality.  Stay tuned.   :D
2212
Finished Programs / Re: IDEA: Attach or upload to FTP utility
« Last post by skwire on October 05, 2012, 01:44 AM »
Welcome to the site, huismus.  The biggest obstacle in your idea is almost certainly going to be trying to capture that drag & drop event.  Personally, I don't think it can be done elegantly from outside of MS Outlook.
2213
Coding Snacks / MOVED: right-click audio file bit rate info
« Last post by skwire on October 02, 2012, 10:45 PM »
2215
Finished Programs / Re: DONE: command line program to strip ID tags from WMA files
« Last post by skwire on September 29, 2012, 04:28 PM »
Welcome to the site, ohad188, and thanks for sharing.  Much appreciated.  =]
2216
Hi, ConstanceJill, and welcome to the site.  I had meant to reply to your original post but it slipped my mind.  Apologies.

In regards to your request, does it have to be physical buttons on the GUI?  Interfaces like that can get really messy if you plan on adding a large number of these commands.  What about using a listview where you can double-click a row to run a command.  Or, highlight a row and click a single button to run a command?
2217
Post New Requests Here / Re: IDEA: Generic savĂ­ng reminder
« Last post by skwire on September 28, 2012, 09:58 AM »
We've been working offline on this.  On first run, the program creates an INI file.  Adjust as necessary and choose reload from the tray menu.

Source/Binary: http://skwire.dcmemb...nacks/meReminder.zip
2218
General Software Discussion / Re: xkill
« Last post by skwire on September 27, 2012, 02:59 PM »
2219
Website | Download
v1.0.8 - 2012-09-24
    + Added progress bar in the statusbar area.
    ! Added code to prevent a potential recursive issue when using the
      same folder for source and destination.
    ! Tags that use a "/" or a "\" will use a dash when creating a folder
      name from it.  (Thanks, Eduardo)
2220
Coding Snacks / MOVED: Difficult Finder
« Last post by skwire on September 24, 2012, 04:28 PM »
2221
Welcome to DonationCoder, Andem.  Care to share your website links?
2222
Unfinished Requests / Re: UNFINISHED: Upload files listed in text file
« Last post by skwire on September 23, 2012, 11:50 PM »
will Windows' command-line FTP app handle FTP that requires encryption? In other words, could it be used to upload files to DonationCoder via a script?

No, I use Alex FTPS for that.  http://ftps.codeplex.com/
2223
Skwire Empire / Re: Release: SFV Ninja (Simple File Verification application)
« Last post by skwire on September 22, 2012, 04:21 PM »
Website | Download
v1.1.4 - 2012-09-22
    * No longer writes the Unicode BOM to checksum files.


@Cornucopiae: This version should allow you to use the Unicode version and still generate checksum files that are compatible with non-Unicode apps like QuickSFV.

2224
Clipboard Help+Spell / Re: Remote Desktop / mstsc / rdpclip Woes
« Last post by skwire on September 20, 2012, 05:25 PM »
FWIW, I don't think this is a CHS-specific issue; moreso, I think it's a generic clipboard or clipboard manager issue.

I use ArsClip and have occasionally experienced exactly what you describe with RDP sessions.  It doesn't happen that often (maybe once every few weeks) and a reboot of the remote side seems to fix things for me.  Note that I use this RDP session daily for several hours per day so an occurrence once every few weeks isn't that often.
2225
Skwire Empire / Re: Release: sWeather (tray-based weather app)
« Last post by skwire on September 19, 2012, 02:12 PM »
Thanks, it worked. It was my old friend UAC lurking in the wings. Actually, I checked "run as administrator" in my shortcut and it worked.

Great to hear and thanks for reporting back.  I hope you like the application.  =]
Pages: prev1 ... 84 85 86 87 88 [89] 90 91 92 93 94 ... 222next