|
Hello All,
I'm seriously having a brain hiccup...
Can you point me to the 'best way/most efficient way' to complete the following:
- I will pull two reports from a system (I get it in report format)
- I need to merge the information from the two files together into one file
- I need to create a report with information from specific fields
- I need to add additional information to make a well rounded email
- I need to review complete file and allow approval prior to sending
- I need to send via email
Which path / program would you use to complete something like above?
Insight appreciated.
Thanks,
CE
|
|
|
|
|
Why have you posted this here, it has nothing to do with Free Tools? Please read the preamble at the top of the page.
|
|
|
|
|
I posted here because I was looking for a 'free tool' that was readily available, not a 'paid tool' and
...that is why. I was seeking any insight into what free tool would allow me to do what was mentioned in the note.
I also noted that I was having a brain hiccup...
Since then, I built something from scratch myself.
Thanks.
CE
|
|
|
|
|
Member 14151984 wrote: Can you point me to the 'best way/most efficient way' to complete the following:
Hire someone that knows something about architecture, programming and requirements gathering.
|
|
|
|
|
yeah. I ended up building it myself.
As my note said, I was having a brain hiccup.
...seriously thought I would be able to get kind feedback that would trigger something for me.
Thanks.
CE
|
|
|
|
|
It all depends on what format the reports are coming in and what tools/development languages do you already know.
Social Media - A platform that makes it easier for the crazies to find each other.
Everyone is born right handed. Only the strongest overcome it.
Fight for left-handed rights and hand equality.
|
|
|
|
|
Thanks ZurdoDev.
I ended up getting over the brain hiccup and built something myself.
Have a great day and thanks for responding.
CE
|
|
|
|
|
canopy - f#rictionless web testing
Quote:
canopy is a web testing framework with one goal in mind, make UI testing simple:
Solid stabilization layer built on top of Selenium. Death to "brittle, quirky, UI tests".
Quick to learn. Even if you've never done UI Automation, and don't know F#.
Clean, concise API.
.net Standard 2.0.
MIT License.
This is useful just for web automation during development independently of actually writing tests. Although it's F# you can just copy and edit from his starter examples. It's far easier than learning Selenium itself.
Install-Package canopy
Kevin
|
|
|
|
|
|
|
This is a really nice free Hex Editor*.
And it is the portable app version so you can even run it off a USB drive or whatever.
Frhed Portable (hex editor) | PortableApps.com[^]
*I tried to search the forum to make sure it hasn't been posted before.
|
|
|
|
|
There are a lot of resources for finding information about zip codes and populations on this website. Enter any zip code and it will do a radius search, up to date congressional districts. It can do this for the U.S. and Canada.
Zip Code Database - Free tools[^]
|
|
|
|
|
Message Removed
modified 31-Jan-19 15:13pm.
|
|
|
|
|
Is there any Image available with Full Access (internet/usb port open) for VS Development Environment, with some 3rd Party tools like DevExpress or Telerik installed .. any help for home user for Free/ or minimum cost and goes beyond 30/90 days) as Student and home user
It would be more interesting if NCrunch or some likewise tools in it ..
Any other solution or component help is highly appreciated
|
|
|
|
|
Even if there was, we would not be providing them to you: what you are doing is in breach of at least 2 copyright and licencing agreements, and counts as malicious behaviour.
We do not condone, support, or assist in any way with such activities: this is a professional site for professional developers, many of whom earn their money writing software with such licence terms included.
If you want to know such things, you will have to visit hacker sites. But ... be sure to disable all firewall and anti-virus products before connecting or they will not trust you enough to help.
Sent from my Amstrad PC 1640
Never throw anything away, Griff
Bad command or file name. Bad, bad command! Sit! Stay! Staaaay...
AntiTwitter: @DalekDave is now a follower!
|
|
|
|
|
If you are new to programming, keep away from the "shiny buttons libraries". It is more important that the thing does as expected than that it has the latest shiny buttons.
Bastard Programmer from Hell
If you can't read my code, try converting it here[^]
"If you just follow the bacon Eddy, wherever it leads you, then you won't have to think about politics." -- Some Bell.
|
|
|
|
|
Eddy Vluggen wrote: It is more important that the thing does as expected than that it has the latest shiny buttons. tell that Microsoft...
M.D.V.
If something has a solution... Why do we have to worry about?. If it has no solution... For what reason do we have to worry about?
Help me to understand what I'm saying, and I'll explain it better to you
Rating helpful answers is nice, but saying thanks can be even nicer.
|
|
|
|
|
|
Hello,
I am a beginner in C #, I would like to know if there is a way and how to establish a conexion between a Winform interface and a measuring device in order to remotely control from a pc using a communication protocol (ModBus, RS232 etc)
Thank you
|
|
|
|
|
Please read the preamble at the top of the page, and use the correct forum for your question.
From your question I would say that the answer will depend on the measuring device, so you need to consult the documentation.
|
|
|
|
|
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
{
private SerialPort port = new SerialPort("COM1",
9600, Parity.None, 8, StopBits.One);
[STAThread]
static void Main(string[] args)
{
new SerialPortProgram();
}
private SerialPortProgram()
{
Console.WriteLine("Incoming Data:");
port.DataReceived += new
SerialDataReceivedEventHandler(port_DataReceived);
port.Open();
Application.Run();
}
private void port_DataReceived(object sender,
SerialDataReceivedEventArgs e)
{
Console.WriteLine(port.ReadExisting());
}
}
}
|
|
|
|
|
Message Removed
modified 15-Jan-19 1:40am.
|
|
|
|
|
VoidTools[^] makes a file search program. It is limited to files and/or folders. It won't search inside a file for text.
Adding it here for future searchers.
Jack of all trades, master of none, though often times better than master of one.
|
|
|
|
|
Everything is a great tool I use a lot. I use the PortableApps version on my USB drives and have a copy of it running on my harddrive as well.
|
|
|
|
|
Message Removed
modified 31-Oct-18 4:53am.
|
|
|
|