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, 3:12 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 ... 98 99 100 101 102 [103] 104 105 106 107 108 ... 222next
2551
General Software Discussion / Re: desktop sharing
« Last post by skwire on March 17, 2012, 07:33 PM »
I heard it doesnt support file transfer!!!

It does.
2552
Developer's Corner / Re: Potential Commission: "Super WebPage Post-Processor"
« Last post by skwire on March 15, 2012, 11:03 AM »
I'm going to pass on this one; I don't have time for such a complex project.
2553
Developer's Corner / Re: Potential Commission: "Super WebPage Post-Processor"
« Last post by skwire on March 15, 2012, 02:18 AM »
take X supported template, drop the note text into the middle of it, and resave the file, and recurse for all the eligible files in a folder.

Question, does the "note text" go into the same place in the template every time?

So, as an example:

1) Read in text contents of note_text_1.txt file.
2) Read in template.html file.
3) Insert note_text_1.txt file contents into a specified place within the template file.
4) Save off combined contents as note_text_1.html.
5) Lather, rinse, repeat for other note_text_#.txt files.

Is this what you're after?
2554
Finished Programs / Re: DONE: delete certain filetypes from fav folder
« Last post by skwire on March 14, 2012, 06:33 PM »
I really have no idea then.  I'm not all that well-versed in W7 so maybe somebody else can offer more.
2555
Finished Programs / Re: DONE: delete certain filetypes from fav folder
« Last post by skwire on March 14, 2012, 06:01 PM »
 :huh:  What happens if you bring up a command prompt and use one of those commands directly at the prompt?
2556
General Software Discussion / Re: build website
« Last post by skwire on March 14, 2012, 05:50 PM »
I know some folks will scoff at the idea of a database-less CMS but, if it's a small-ish site, you can always use something like FlatPress.  That's what I use for my Skwire Empire site.
2557
Finished Programs / Re: DONE: delete certain filetypes from fav folder
« Last post by skwire on March 14, 2012, 02:14 PM »
Seems to work fine here in a quick test on my wife's laptop (W7/64).  Are you positive the paths are the same?
2558
Skwire Empire / Re: Birthdays (simple birthday tracking app)
« Last post by skwire on March 14, 2012, 09:03 AM »
Ah, crap.  I apologise for this and, after some digging, I know what caused it.  It has to do with compiling as Unicode but trying to read the older ANSI birthdays.txt file.  Man, what a stupid oversight on my part.  I hope I didn't cause you guys too much work.   :( :( :(  I am very sorry.
2559
Skwire Empire / Re: Birthdays (simple birthday tracking app)
« Last post by skwire on March 13, 2012, 06:45 AM »
Damnit, I fixed this for my wife earlier this year but neglected to upload it.   :-[  Thanks for reporting it.

Website | Download
v1.0.9 - 2012-03-13
    ! Ages weren't updating properly after the turn of a new year.  (Thanks, V. Holmes & oblivion)
    ! Notes window settings sometimes weren't saved properly.
2560
Living Room / Re: A reminder for those who have recently donated
« Last post by skwire on March 10, 2012, 09:08 PM »
Thanks for the donation, TaoPhoenix.  Much appreciated.
2561
N.A.N.Y. 2010 / Re: NANY 2010 Release: ClipTrap
« Last post by skwire on March 10, 2012, 09:06 PM »
Website | Download
v1.0.7 - 2012-03-10
    * Made a slight change/tweak to the "Copy window text" functionality to
      try and preserve CR/LF line endings.  (Thanks, N. Richardson)
2562
What about the send direct to text files?  Thoughts?

This is rather easy in AutoHotkey with a simple script.  In other words, I really don't want to make a full-fledged application out of it.  Consider this example (change the DestPath variable to suit your needs):

Code: Autohotkey [Select]
  1. DestPath := "c:\tmp"
  2. Startup := 1
  3. Return ; End of auto-execute section.
  4.  
  5.  
  6. OnClipboardChange:
  7. {
  8.     If ( Startup )
  9.     {
  10.         Startup := 0
  11.         Return
  12.     }
  13.    
  14.     FileAppend, % Clipboard, % DestPath . "\ClipSave_" . GenUniqueFilename( DestPath ) . ".txt"
  15. }
  16. Return
  17.  
  18.  
  19. GenUniqueFilename( sPath )
  20. {
  21.     Loop
  22.     {
  23.         If FileExist( sPath . "\ClipSave_" . A_Index . ".txt" )
  24.         {
  25.             Continue
  26.         }
  27.         Else
  28.         {
  29.             Return A_Index
  30.         }
  31.     }
  32. }
2563
Nick, you did see that I added zero padding to Chopping List, right?
2564
N.A.N.Y. 2010 / Re: NANY 2010 Release: ClipTrap
« Last post by skwire on March 09, 2012, 09:23 AM »
Good to hear.  Thanks for the report.
2565
N.A.N.Y. 2010 / Re: NANY 2010 Release: ClipTrap
« Last post by skwire on March 08, 2012, 11:56 PM »
Website | Download
v1.0.6 - 2012-03-08
    + Tray icon now changes with toggle state.
    + Configurable hotkey to toggle monitoring.  (Thanks, lanux128)
2566
Yeah, I was afraid of that.  I changed the priority of the OnClipboardChange thread which should have buffered stuff better.  However, doing that sometimes affect other things out of my control.  I'll revert that change.  I'm curious, though, about what you observed with that version.

In the meantime, I've added the following:

Website | Download
v1.0.6 - 2012-03-08
    + Tray icon now changes with toggle state.
    + Configurable hotkey to toggle monitoring.  (Thanks, lanux128)


2567
General Software Discussion / Re: browse view of pdf and doc files of a folder
« Last post by skwire on March 08, 2012, 03:00 PM »
Universal Viewer can do this (Ctrl+PgUp and Ctrl+PgDn).  The Pro version is not free, though.
2568
General Software Discussion / Re: How to quickly autonumber text lists?
« Last post by skwire on March 08, 2012, 12:21 PM »
I really like ReNamer because it lets you set up separate renaming "steps" and then save them all as a preset to easily use over and over.  Good stuff.
2569
Doh, I went back and re-read your request and now I understand what you were asking for.  Sorry about that.   :-[  Here you go:

Website | Download
v1.0.3 - 2012-03-07
    + Option to specify number of leading zeros to pad filenames with. (Thanks, nkormanik)
2570
General Software Discussion / Re: How to quickly autonumber text lists?
« Last post by skwire on March 07, 2012, 06:49 PM »
Can ListNumberer work from the command line?

No, it cannot.

Would be nice to set it up in a process chain so that, say, 'zero-padding' a folder of files (with titles numbered 1.txt through 1000.txt) is a single 'double-click' operation.

Hmmm...List Numberer is not a file renamer.  If you're looking to easily renumber files like that, take a look at one of my favourite renamer applications called, oddly enough, ReNamer.  You can easily set up a ruleset that will do what you want like this:

2012-03-07_185204.png
2571
Thanks, mouser.   :D

Nicholas, try this build:  ClipTrap v1.0.5.2

I made a single change to the clipboard watcher thread that may or may not work.  I still would suggest inserting delays in between your copy operations, though.
2572
I'd think that word-wrap off would be less intensive but I don't have anything to back that up.
2573
I think that is outside the scope of the application.  However, you may be able to leverage my List Numberer program to do what you want.
2574
The clipboard can be a fickle beast.  That being said, I never really designed ClipTrap to be a heavy-duty clipboard manager.  I wrote it to fill a gap between having no clipboard manager and the heavy-duty ones.  If it's missing captures, I'm not sure writing the data to disk is really going to help anything, you know?  How much data are you copying at a time?
Pages: prev1 ... 98 99 100 101 102 [103] 104 105 106 107 108 ... 222next