Skip to content

Free Tools

Free Tools - reviews and recommendations

This category can be followed from the open social web via the handle free-tools@forum.codeproject.com

732 Topics 1.7k Posts
  • HELP ME!

    help
    2
    0 Votes
    2 Posts
    2 Views
    Richard DeemingR
    You've posted this demand for someone to do your work for you to the wrong forum, on the wrong site. This forum is for discussing free tools, not for programming questions. And this site does not provide code-to-order. We'll help you with specific questions about code you have written, but nobody here is going to do your work for you. You need to find a site that will let you hire a developer, and you'll need to give them a lot more detail than you have here before they'll give you a quote for the job. "These people looked deep within my soul and assigned me a number based on the order in which I joined." - Homer
  • https://goldencondor.org/enduro-stack-testo-boost/

    data-structures help
    1
    0 Votes
    1 Posts
    2 Views
    No one has replied
  • Simple and Free Help Authoring Tool

    html com help tutorial
    4
    0 Votes
    4 Posts
    3 Views
    G
    Unit Converter[^]
  • 0 Votes
    1 Posts
    1 Views
    No one has replied
  • Where is the Source Tree in Sourcetree

    data-structures tutorial question
    6
    0 Votes
    6 Posts
    3 Views
    J
  • Online code beautifier - C and C++

    c++ com beta-testing
    3
    0 Votes
    3 Posts
    4 Views
    L
    Nice
  • PrintDocument1_PrintPage vb.net

    csharp graphics
    1
    0 Votes
    1 Posts
    1 Views
    No one has replied
  • PrintDocument1_PrintPage vb.net

    csharp graphics help tutorial
    2
    0 Votes
    2 Posts
    4 Views
    Richard DeemingR
    Wrong forum: "This forum is for discussing and recommending Free tools for software development." Post your question in the Visual Basic forum[^] instead. "These people looked deep within my soul and assigned me a number based on the order in which I joined." - Homer
  • Get technical support for Norton software

    asp-net sales collaboration help
    1
    0 Votes
    1 Posts
    1 Views
    No one has replied
  • Get technical support for Norton software

    asp-net sales collaboration help
    1
    0 Votes
    1 Posts
    1 Views
    No one has replied
  • DaVinci Resolve 15

    html com graphics design tools
    1
    0 Votes
    1 Posts
    1 Views
    No one has replied
  • Need help with a formula or equation?

    com help tutorial question career
    1
    0 Votes
    1 Posts
    1 Views
    No one has replied
  • Clipboard Plus

    c++ visual-studio com design
    2
    0 Votes
    2 Posts
    2 Views
    R
    Personally, I use ClipX ClipX[^] Has all your features and a few more. It is very handy and has a hotkey feature with Shift-Ctrl-V and you can select what to paste. I set mine for 25 items in the paste history and it runs on start up. To err is human to really mess up you need a computer
  • Which are the best exchange edb recovery tools?

    html com sysadmin tools question
    1
    0 Votes
    1 Posts
    1 Views
    No one has replied
  • Graph/chart trends analysis

    csharp data-structures help tutorial
    1
    0 Votes
    1 Posts
    1 Views
    No one has replied
  • 0 Votes
    1 Posts
    2 Views
    No one has replied
  • Stickies

    1
    0 Votes
    1 Posts
    1 Views
    No one has replied
  • sakoonedil

    com
    1
    0 Votes
    1 Posts
    2 Views
    No one has replied
  • 0 Votes
    3 Posts
    2 Views
    D
    Though I could easily have implemented it as a Visual Basic script, I prefer a compiled EXE because its use does not depend upon a working Visual Basic Scripting interpreter, which is not a given in some locked down environments. Nevertheless, for fun, below is my improved implementation, which took maybe an hour to cobble together and test. Option Explicit ' ============================================================================ ' ' Script Name: SoundOff.VBS ' ' Objective: Cause a shell script to play a sound file to completion. ' ' Command Arguments: SoundFileName = Name of sound file to play ' ' Remarks: This script is a port of SountOff.exe. ' ' ---------------------------------------------------------------------------- ' Revision History ' ---------------------------------------------------------------------------- ' ' Date By Synopsis ' ---------- --- ------------------------------------------------------------- ' 2018/05/28 DAG Script created, tested, and deployed ' ============================================================================ const ARGS_NONE = 0 const ARRAY_FIRST_ELEMENT = 0 const ERROR_SUCCESS = 0 ' The status code variable is initialized with the standard Windows "success" status code. const ERROR_NEEDS_CSCRIPT = 1 ' Status code 1 is reserved for scripts run in Wscript that require CScript. const ERROR_NO_ARGS = 2 ' Status code 2 is reserved for scripts that require one or more command line arguments to report being called without any. const ERROR_FILE_NOT_FOUND = 3 const SLEEP_TIME_100_MILISECS = 100 const WMP_PLAY_STATE_STOPPED = 1 dim intExitCode : intExitCode = ERROR_SUCCESS ' Anticipate success. dim oArgs : Set oArgs = WScript.Arguments dim iArgLast : iArgLast = oArgs.Count if iArgLast > ARGS_NONE then dim sFileSpec : sFileSpec = oArgs ( ARRAY_FIRST_ELEMENT ) dim oFSO : set oFSO = CreateObject ( "Scripting.FileSystemObject" ) if oFSO.FileExists ( sFileSpec ) then dim oPlayer : Set oPlayer = CreateObject ( "WMPlayer.OCX" ) oPlayer.URL = sFileSpec ' Define the location / name of the file. oPlayer.controls.play
  • Free Json Tool

    json
    1
    0 Votes
    1 Posts
    2 Views
    No one has replied