Click here to Skip to main content
15,861,125 members
Home / Discussions / Free Tools
   

Free Tools

This forum is for discussing and recommending Free tools for software development. Please post direct links to tools, and not just links to pages that review or list tools.No shareware and no commercial products allowed. Please report spammers by voting to remove their messages and reporting their accounts.

 
GeneralImage (VirtualBox/VmWare/Hyper-V) with Windows-10 & VS Dev Envoirnment Pin
akvbsoft31-Dec-18 10:40
akvbsoft31-Dec-18 10:40 
GeneralRe: Image (VirtualBox/VmWare/Hyper-V) with Windows-10 & VS Dev Envoirnment Pin
OriginalGriff2-Jan-19 11:03
mveOriginalGriff2-Jan-19 11:03 
GeneralRe: Image (VirtualBox/VmWare/Hyper-V) with Windows-10 & VS Dev Envoirnment Pin
Eddy Vluggen2-Jan-19 22:16
professionalEddy Vluggen2-Jan-19 22:16 
GeneralRe: Image (VirtualBox/VmWare/Hyper-V) with Windows-10 & VS Dev Envoirnment Pin
Nelek14-Jan-19 19:40
protectorNelek14-Jan-19 19:40 
GeneralWinMerge PinPopular
Bassam Abdul-Baki8-Dec-18 16:33
professionalBassam Abdul-Baki8-Dec-18 16:33 
GeneralC# Communication Pin
Member 140454285-Nov-18 23:28
Member 140454285-Nov-18 23:28 
GeneralRe: C# Communication Pin
Richard MacCutchan5-Nov-18 23:48
mveRichard MacCutchan5-Nov-18 23:48 
GeneralRe: C# Communication Pin
RedDk9-Nov-18 6:28
RedDk9-Nov-18 6:28 
I'm not sure what THIS makes me but I'll go ahead and empty my clipboard (code copied from here GS - one of many[^] ). What I do when I have questions like yours is use Google. Sometimes there's nothing and I get flummoxed. Other times there's something which inspires me to continue working and not just pack it in for the day and get some exercise.

using System;
using System.IO.Ports;
using System.Windows.Forms;

namespace SerialPortExample
{
  class SerialPortProgram
  {
    // Create the serial port with basic settings
    private SerialPort port = new SerialPort("COM1",
      9600, Parity.None, 8, StopBits.One);

    [STAThread]
    static void Main(string[] args)
    { 
      // Instatiate this class
      new SerialPortProgram();
    }

    private SerialPortProgram()
    {
      Console.WriteLine("Incoming Data:");

      // Attach a method to be called when there
      // is data waiting in the port's buffer
      port.DataReceived += new 
        SerialDataReceivedEventHandler(port_DataReceived);

      // Begin communications
      port.Open();

      // Enter an application loop to keep this thread alive
      Application.Run();
    }

    private void port_DataReceived(object sender,
      SerialDataReceivedEventArgs e)
    {
      // Show all the incoming data in the port's buffer
      Console.WriteLine(port.ReadExisting());
    }
  }
}

GeneralMessage Removed Pin
4-Nov-18 12:24
Arbnor Osmani4-Nov-18 12:24 
GeneralEverything Pin
Ron Nicholson25-Sep-18 11:29
professionalRon Nicholson25-Sep-18 11:29 
GeneralRe: Everything Pin
Member 1197251323-Apr-19 19:02
Member 1197251323-Apr-19 19:02 
GeneralMessage Removed Pin
11-Sep-18 3:16
wanderleyolv11-Sep-18 3:16 
GeneralDaVinci Resolve 15 Pin
Bassam Abdul-Baki23-Aug-18 8:21
professionalBassam Abdul-Baki23-Aug-18 8:21 
GeneralNeed help with a formula or equation? Pin
kmoorevs12-Aug-18 5:53
kmoorevs12-Aug-18 5:53 
NewsClipboard Plus Pin
sanjeev.5679-Jul-18 0:44
sanjeev.5679-Jul-18 0:44 
GeneralRe: Clipboard Plus Pin
rnbergren3-Aug-18 3:25
rnbergren3-Aug-18 3:25 
AnswerStickies Pin
thatraja2-Jul-18 3:05
professionalthatraja2-Jul-18 3:05 
GeneralOnline code beautifier - C and C++ Pin
OriginalGriff28-Jun-18 18:39
mveOriginalGriff28-Jun-18 18:39 
GeneralRe: Online code beautifier - C and C++ Pin
Randor 2-Jul-18 5:59
professional Randor 2-Jul-18 5:59 
GeneralRe: Online code beautifier - C and C++ Pin
Libbyjenny22-Sep-18 1:08
professionalLibbyjenny22-Sep-18 1:08 
QuestionWhere is the Source Tree in Sourcetree Pin
Ger Hayden22-May-18 22:03
Ger Hayden22-May-18 22:03 
AnswerRe: Where is the Source Tree in Sourcetree Pin
jschell23-Jun-18 5:09
jschell23-Jun-18 5:09 
GeneralRe: Where is the Source Tree in Sourcetree Pin
Ger Hayden23-Jun-18 7:16
Ger Hayden23-Jun-18 7:16 
GeneralRe: Where is the Source Tree in Sourcetree Pin
jschell30-Jun-18 5:24
jschell30-Jun-18 5:24 
GeneralMessage Removed Pin
13-May-18 23:07
reneeteng13-May-18 23:07 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.