topbanner_forum
  *

avatar image

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

Login with username, password and session length
  • Wednesday November 26, 2025, 10:14 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 ... 22 23 24 25 26 [27] 28 29 30 31 32 ... 222next
652
General Software Discussion / Re: tool to check if TIFF files compressed ?
« Last post by skwire on October 07, 2016, 12:03 PM »
Small update for you, tomos.  =]

Website | Download
v1.1.1 - 2016-10-07
    + Added a hidden INI setting to allow a custom delimiter when exporting to a
      CSV file.  Close tiffInfoGUI and add the following entry under the
      [Settings] section where ? is the delimiter character: CSVDelimter=?
      (Thanks, tomos)
    + Added an "Info box" that will display an entire row's data with copy to
      clipboard buttons for each data field, too.  Access it via the F1 hotkey
      or the Edit menu.
653
General Software Discussion / Re: tool to check if TIFF files compressed ?
« Last post by skwire on October 05, 2016, 07:43 AM »
Wondering if it possible to change the separator in the csv file -- it appears to be using comma: the resolution column gets exported to two columns (so the columns are out of sync with the headers.

As per the CSV standard, if a cell's data has a comma in it, that data will have double-quotes around it in the raw CSV file.  TIFFInfoGUI exports its data this way but, unfortunately, not all CSV readers follow the standard.  NirSoft's CSVFileView is one that does; here's a screenshot of it showing a CSV export from TIFFInfoGUI (note the resolution column):

2016-10-05_074019.png

What are you using to view the CSV file?
654
N.A.N.Y. 2010 / Re: NANY 2010 Release: Anuran
« Last post by skwire on October 03, 2016, 04:14 PM »
Not expecting you to support Wine but space key doesn't work when typing in the pop up, is the reason something known?
Latest stable Wine release and Mint 17.3

I haven't a clue.   :huh:  Apologies.
655
N.A.N.Y. 2010 / Re: NANY 2010 Release: Anuran
« Last post by skwire on October 03, 2016, 07:57 AM »
In Options, timestamp for titlebar is listed as:
yyyy-MM-dd hh:mm tt

Change the hh to HH if you want 24-hour format.  The "tt" should set AM/PM.
656
@dominicanghost: You're very welcome.  I'm glad you find the application useful.   :Thmbsup:
657
Finished Programs / Re: DONE: Right Click any file and create New Folder by its Name
« Last post by skwire on September 27, 2016, 09:46 PM »
The only other thing I've been told can work is to disable any anti-virus you have running, do the above sequence of steps, and re-enable your anti-virus.  Which OS are you using?  Files 2 Folder has been developed and tested to work on Windows 7.  I've received reports from users of Windows 8 and Windows 10 that they were able to get it to work, though.  That said, I cannot support those operating systems as I do not own them.
658
General Software Discussion / Re: SFW (Seattle Film Works) files
« Last post by skwire on September 27, 2016, 04:58 PM »
sorry i meant to type sfw; corrected.

 :D  I only mentioned it because IrfanView can, in fact, open both SFW and SWF files.
659
General Software Discussion / Re: SFW (Seattle Film Works) files
« Last post by skwire on September 27, 2016, 04:54 PM »
It also says the nice free image viewer irfanview can open most swf files: http://www.irfanview.com/

SFW != SWF    :P
660
 :huh:  Are these clients changing hosting services so often that a tool like this is needed?  Or, is this a situation where the client is attempting to host their own services on a connection which does not have a static IP, i.e., they have a dynamic IP?  Some more detail, or an example situation, would be helpful.
661
Finished Programs / Re: DONE: Right Click any file and create New Folder by its Name
« Last post by skwire on September 27, 2016, 01:39 PM »
How can I get F2F to work without making it the default program for all the extensions?

Try this, please:

  • Download this: http://skwire.dcmemb...folder/Unreg_F2F.zip
  • Extract that zip file into some folder.  Right-click the Unregister_F2F_Shell_Extension.exe file and choose Run As Administrator.  That should unregister the shell extension.
  • Put your Files2Folder.exe file where you want and run it with Administrator rights as well.  DO NOT run it directly from the zip file and you MUST run it with Administrator rights. It  should ask you if you want to register the shell extension again so accept this.
  • Now try right-clicking a file and see if it works.
663
Finished Programs / Re: DONE: One Click File Extension Changer
« Last post by skwire on September 14, 2016, 06:55 PM »
Sorry for not seeing that myself. It works like a charm. Much appreciated!

Good to hear.  I'll move this to the Finished section.
664
Finished Programs / Re: DONE: One Click File Extension Changer
« Last post by skwire on September 13, 2016, 08:48 PM »
Thanks, but no joy. I saved the code as "ExtSwitch.ahk", double-clicked that file, selected an .epub file, and pressed Ctrl + ` (the hotkey). Nothing happened; no error message, either.

I think I looked at your hotkey wrong and substituted an apostrophe for the backtick you had.  Please recopy the code above and try it again.
665
Finished Programs / Re: DONE: One Click File Extension Changer
« Last post by skwire on September 12, 2016, 11:33 PM »
Here's one way to do it via AutoHotkey.  It should be pretty easy to follow so modify it as necessary.

Code: Autohotkey [Select]
  1. ^`::
  2. {
  3.     ; Get the highlighted selection onto the clipboard and crack its path.
  4.     Send, ^c
  5.     myFile := Clipboard
  6.     SplitPath, myFile, OutFileName, OutDir, OutExtension, OutNameNoExt, OutDrive
  7.    
  8.     ; Determine current and new extensions.
  9.     If ( OutExtension = "epub" )
  10.     {
  11.         myExtension := "zip"
  12.     }
  13.     Else If ( OutExtension = "zip" )
  14.     {
  15.         myExtension := "epub"
  16.     }
  17.  
  18.     ; Check that the destination file doesn't already exist.
  19.     If ! FileExist( OutDir . "\" . OutNameNoExt . "." . myExtension )
  20.     {
  21.         ; Destination file does not exist so rename existing file with new extension.
  22.         FileMove, % myFile, % OutDir . "\" . OutNameNoExt . "." . myExtension
  23.     }
  24.     Else
  25.     {
  26.         ; Destination file exists.  Warn user and do nothing.
  27.         MsgBox, Destination file already exists.  Aborting...
  28.     }
  29. }
  30. Return
666
Skwire Empire / Re: Release: SFV Ninja (Simple File Verification application)
« Last post by skwire on September 06, 2016, 10:31 PM »
Hi, jammmie900, and welcome to the DonationCoder site.

Can you add right click on SFV and MD5 files to scan/check ? need to drag the files every time.  :(

If you want SFV Ninja to open with SFV and MD5 files, do the following:

  • Shift+right-click an SFV file and choose Open with > Choose default program from the menu.
  • Click the Browse... button and navigate to the SFVNinja.exe file.
  • Ensure the Always use the selected program to open this kind of file checkbox is ticked.
  • Click the OK button.

Repeat the same procedure for MD5 files.  At this point, you should be able to double-click either an SFV or an MD5 file and it should automatically load into SFV Ninja.
667
Finished Programs / Re: txt 2 folders query
« Last post by skwire on September 06, 2016, 08:18 PM »
txt 2 folders is my saviour, is there any way the timestamp token can be set in the text file?? I know you can include it in the txt file but can it be set as well??

I'm not quite sure what you're asking for.  Can you please explain in a bit more detail, give an example, or provide a screenshot?
668
General Software Discussion / Re: calendar that is happy in Windows and on tablet
« Last post by skwire on September 05, 2016, 04:56 PM »
Now I want similar in calendars. I would like to avoid a 2-step, working though something like a Google Calendar as an intermediary.

I run a tiny Radicale CalDAV service on my server at home.  Client devices include my family's various Android phones and tablets, iOS phones, Windows, and Linux boxes.
669
N.A.N.Y. 2014 / Re: NANY 2014 Release - epCheck
« Last post by skwire on September 05, 2016, 03:56 PM »
It's no different than the regular version.  To do a fresh install, unzip the epCheck_.zip file into a new folder and run epCheck.exe.
670
N.A.N.Y. 2014 / Re: NANY 2014 Release - epCheck
« Last post by skwire on September 05, 2016, 03:41 PM »
671
N.A.N.Y. 2014 / Re: NANY 2014 Release - epCheck
« Last post by skwire on September 05, 2016, 02:22 PM »
Use whichever version you want.  Again, there are two versions you can use right now.  The v1.1.5.1 release, available on my website or the v1.1.5.166 beta available here on the forums.  The v1.1.5.166 beta has the revamped Options section and the Monthly view.  If you like those features, stay with v1.1.5.166 beta.
672
N.A.N.Y. 2014 / Re: NANY 2014 Release - epCheck
« Last post by skwire on September 05, 2016, 01:59 PM »
1) The latest version available on my website is v1.1.5.1.
2) The latest beta is 1.1.5.166, available only here on the forums.
3) Both versions will work with the config.ini colour reset procedure.
673
N.A.N.Y. 2014 / Re: NANY 2014 Release - epCheck
« Last post by skwire on September 05, 2016, 01:48 PM »
skwire please answer  my version is  1.1.5 build 166  it says Latest Version:  1.1.5 which is the right up to date version ?

I answered your question here: https://www.donation....msg401988#msg401988

The latest version on my website is 1.1.5.1 (v1.1.5 build 1).  You have the 1.1.5.166 beta (v1.1.5 build 166).  You have the latest available version of epCheck.
674
N.A.N.Y. 2014 / Re: NANY 2014 Release - epCheck
« Last post by skwire on September 05, 2016, 01:29 PM »
to reset the colors:
    Close epCheck.
    Navigate to epCheck's folder and open the config.ini file in Notepad.
    Delete the lines starting with ColorToday, ColorTomorrow, and ColorYesterday.
    Save the file and restart epCheck.
is this right ?

Yes, to reset the colours for the Past/Today/Future colour options, perform those steps.
675
N.A.N.Y. 2014 / Re: NANY 2014 Release - epCheck
« Last post by skwire on September 05, 2016, 12:49 PM »
1 I opened epCheck today fonts are to small I never changed em I can not make em big seen in screenshot

You can change the fonts in the Options > Fonts panel to whatever, and however big, you like.

2 I am using version 1.1.5 build 166 is their a new version ?

No, you have the latest version I've released.

and dose it have this   

Close epCheck.
    Navigate to epCheck's folder and open the config.ini file in Notepad.
    Delete the lines starting with ColorToday, ColorTomorrow, and ColorYesterday.
    Save the file and restart epCheck.the fonts are like this in screenshot what is the fix

No, it does not.
Pages: prev1 ... 22 23 24 25 26 [27] 28 29 30 31 32 ... 222next