topbanner_forum
  *

avatar image

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

Login with username, password and session length
  • Tuesday November 11, 2025, 1:27 am
  • 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 ... 6 7 8 9 10 [11] 12 13 14 15 16 ... 23next
251
Post New Requests Here / Tiny Barebones Editor Needed
« Last post by nkormanik on July 07, 2016, 07:41 PM »
I want to place a small editable word box on screen on top of various graphs (off to the side), the small box will say what the graph is, maybe a little note.  Then I'll take a snapshot of the screen (using Screenshot Captor).

I'd prefer controlling font size, perhaps color.  There should be word-wrap.  No menu.  Default options can be kept in an .ini file.  Word box should be movable, and resizable.

In effect, a super barebones text editor.  Sans menu.

Such might already exist somewhere out there in cyberland.  I did search, though, and failed to find one.

Your thoughts greatly appreciated.

Nicholas Kormanik

252
Finished Programs / Re: DONE: Basic Pop-Up Notice/Reminder Window
« Last post by nkormanik on June 08, 2016, 03:55 PM »
Fantastic!  Hope others out there find and can use this little gem.
253
Finished Programs / Re: DONE: Basic Pop-Up Notice/Reminder Window
« Last post by nkormanik on June 07, 2016, 06:55 PM »
Chris, another idea would be to include a "count-up" timer, as opposed to displaying the current time.

I didn't think of that because I figured showing current time would be easiest.

Count-up from time of MessagePop execution seems a great idea.

Thanks!
254
Finished Programs / Re: DONE: Basic Pop-Up Notice/Reminder Window
« Last post by nkormanik on June 03, 2016, 02:51 AM »
Chris, would it be possible to show the current time -- that is, when MessagePop executes?  Just the static time is all.  No dynamic updating to the real current time.

Exactly as you show the current date, in your example file.

For instance:  User is running a long statistical analysis in a math program, and ends the series of statistics steps by having a batch file run which calls MessagePop.  He/she knows when the stats program started -- let's say, noon.  He/she goes away, comes back around 4pm, sees MessagePop display the time 1:30pm.  That was the very end of the stats analysis, when batch file calling MessagePop fired up.  Thus he/she knows that the entire stats analysis took one-and-a-half hours -- from noon to 1:30pm.

The new countdown timer is pretty cool, too.  Not what I was asking for, though.

255
Finished Programs / Re: DONE: Basic Pop-Up Notice/Reminder Window
« Last post by nkormanik on June 02, 2016, 04:55 PM »
You da man, Chris!  Thanks a bazillion.
256
Post New Requests Here / Re: Move/Organize Files Into Folders
« Last post by nkormanik on June 01, 2016, 07:49 PM »
Here, by the way, is the C# code someone else did to solve the issue.  Author gave permission to post.:

Code: C# [Select]
  1. using System;
  2. using System.IO;
  3. using System.Linq;
  4.  
  5. namespace FileOrganizer
  6. {
  7.     class Program
  8.     {
  9.         static void Main(string[] args)
  10.         {
  11.             // Options
  12.             var filePattern = "*.url";
  13.             var filesPerFolder = 10;
  14.  
  15.  
  16.  
  17.  
  18.  
  19.             var currentDir = new DirectoryInfo(Environment.CurrentDirectory);
  20.  
  21.             var files = currentDir.GetFiles(filePattern, SearchOption.AllDirectories);
  22.  
  23.             var sortedFiles = files.OrderBy(x => x.Length).ToList();
  24.  
  25.             for (var i=0; i < sortedFiles.Count; i++)
  26.             {
  27.                 var sourceFilePath = sortedFiles[i].FullName;
  28.                 var targetFolderName = (i / filesPerFolder).ToString("X8");
  29.                 var targetFolderPath = Path.Combine(Environment.CurrentDirectory, targetFolderName);
  30.                 var targetFilePath = Path.Combine(targetFolderPath, sortedFiles[i].Name);
  31.  
  32.                 if (i % filesPerFolder == 0)
  33.                 {
  34.                     Directory.CreateDirectory(targetFolderPath);
  35.                 }
  36.  
  37.                 File.Move(sourceFilePath, targetFilePath);
  38.             }
  39.         }
  40.     }
  41. }
257
Finished Programs / Re: DONE: Basic Pop-Up Notice/Reminder Window
« Last post by nkormanik on June 01, 2016, 07:38 PM »
Chris, is there a code I can include in the .ini file that would show the current time (that is, when MessagePop executes.  not dynamically updating to current time.)

Really appreciate your work.  Thanks so much!
258
Post New Requests Here / Re: Move/Organize Files Into Folders
« Last post by nkormanik on March 29, 2016, 09:13 PM »
AbteriX, I had no idea PowerShell could be so powerful.  Thanks for a masterful demonstration!  And another solution.
259
Post New Requests Here / Re: Move/Organize Files Into Folders
« Last post by nkormanik on March 29, 2016, 12:53 AM »
Thanks Lintalist, a lot of work you put in there.  Seems to do the job as advertised.

Skwire, unless you or someone else wants to add anything, this one looks solved.
260
Post New Requests Here / Re: Move/Organize Files Into Folders
« Last post by nkormanik on March 24, 2016, 05:03 PM »
Skwire, if you want to make it.  Surprisingly dividing a sorted collection into sets, say, by size, is lacking presently.  Go figure.  I'd think there would be a desire to have such functionality.

There IS the ability to separate based on other criteria, such as extension.  I think you yourself made such a program already.
261
Excellent suggestions all.  Thank you!

Though I will definitely keep your code and try it out, the solution I did the little task with was a Firefox extensions called Shelve:

https://addons.mozil...irefox/addon/shelve/

That did the trick.

Thanks again!
262
Post New Requests Here / Re: Move/Organize Files Into Folders
« Last post by nkormanik on March 21, 2016, 05:09 PM »
Thanks to both of you!  I'll look into the program mentioned.  Always good to have another tool handy.  Skwire, if you do have the chance and inclination, go for it.

A friend of mind wrote some C-sharp code that does the job, too, more or less as requested.  But one must edit the code a tiny bit, and then compile.  Not sure if I should somehow post his code, or what.
263
Folder A contains one simple text file with 10 website urls: Sites.txt

Have web browser (any) visit the 10 sites, and save the corresponding 'page' of each visited site to a separate file.

At the end of the process..., Folder B will contain the 10 files, 'xyz_01.html' ... 'xyz_10.html', from the list in Folder A.

Any thoughts and help greatly appreciated.

Nicholas Kormanik
264
Post New Requests Here / Move/Organize Files Into Folders
« Last post by nkormanik on March 13, 2016, 07:58 PM »
I seem to recall a program for what I'm asking.  If you know of one, please mention it.  Any and all thoughts appreciated.

I have 600,000 midi files, in a single folder.  I'd like to move/organize into folders.  100 midi files per new folder.  Sorted by size of files.

So, the smallest 100 midi files will go into, say, folder 0001.

Second 100 smallest midi files will go into folder 0002.

Etc.

Will need to create all the required folders.

Assume same drive for all actions.

Prefer to leave original filenames, though adding a prefix (suffix?) would be okay.  That's actually how I'll handle this little chore if I have to on my own.

Solution should be able to handle any sort of file, so others out there can find this topic and use solution for their own interests.

Thanks much!

Nicholas Kormanik

265
Beautifully done.  Works like a charm.  Even between different drives.

Thanks very much, 4wd.  Great job.

Nicholas

266
Rename.  Add suffix, say, 001, etc.

Thanks much for asking.
267
Skrommel's Software / MoveOut: Please allow "Recursive" option
« Last post by nkormanik on March 12, 2015, 01:09 AM »
Suppose c:\downloads\ contains some downloaded zips, with some pdf files in them.  I unarchive these zip files, and now have folders (let's say xyz1, xyz2, etc).

I would like MoveOut to go recursively into all the subfolders it finds in c:\downloads\, and if/when it finds pdf files, to move those pdf files over to c:\library\pdf\.

What do you say?

Thanks!

268
make 100% sure that your files are tagged properly

Anyone have a suggestion on a program which automatically tags mp3 files -- by downloading any needed info from the Internet?

Manually tagging a huge collection of tunes would be nearly impossible.

Thanks!

269
Finished Programs / DONE: Move files, replace with shortcuts to those files
« Last post by nkormanik on March 11, 2015, 11:07 PM »
Move a number of files (let's suppose pdfs) from Folder A, to Folder B.

Create in Folder A corresponding shortcuts to each moved file, now in Folder B.

Any suggestions?

Assume that Folder B already has lots of files, and the ones you are moving over will get mixed with the rest there -- not a simple matter of moving to an empty folder.

Thanks!

Nicholas Kormanik

270
Question:  I'm really curious why RightNote is free.

One generally thinks, "free", must not be so good.

However, RightNote seems to be a great outlining program.

Yes, there are the two charged-for versions, standard and pro.  But the free version is super as is.

Please explain.

Thanks,
Nicholas Kormanik

271
Just a quick question, not really a request for a program -- that is, unless you think that's possible....

Setup is laptop + TV via HDMI cable.  My preferred image viewer program is ACDSee.  I can get the ACDSee program to appear on the TV.  But when I double-click on an image to make it full-screen on the TV, the full-screen happens on the laptop.

I really need for full-screen of the image to appear on the TV.

Really frustrating.

Any thoughts appreciated.

Nicholas Kormanik

272
Finished Programs / Re: DONE: Batch adjust shortcut targets
« Last post by nkormanik on November 15, 2014, 02:01 AM »
Slow but steady, 4wd.  Slow but steady.
273
4wd is indeed correct.  Just by turning off the "Show all Commands in SubMenu" under the Options menu, "Move to..." now appears directly in the right-click context menu, exactly as I was wanting.

Many thanks, 4wd.

Hope others might possibly find this discussion useful.  I sure have.

Skwire, another one done.

274
Moo0 RightClicker Pro is similar to FileMenu Tools, but pay-ware.  FileMenu Tools is donation-ware.

275
A fourth point:

4)  If someone can code "MoveStuff.reg" it would be interesting to study that code, and see how it can be done.

Pages: prev1 ... 6 7 8 9 10 [11] 12 13 14 15 16 ... 23next