Good Day;
I'm trying to design a small application for myself to keep track of maintenance for my trucks and other details regards to them.
I'd like to enter a truck number, and then hit submit(xbutton) then have input boxes autofill with data that is stored in a CSV file.
TRUCKNUMBER = Input.GetText("TRUCK_NUMBER_INPUT");
-- Gets the truck number from the input
datecompleted = Table.Concat("DB\\TRUCKNUMBER.txt", ",", 1, 1);
-- Grab data from csv file, however I don't know how to choose the .txt file based on the truck number.
-- IF i entered 22, it should compute out to 22.txt
Input.SetText("mileagecheck_date_completed_text", datecompleted);
-- Set the text based on the data in the CSV file that was found earlier.
How can I resolve this issue?
Thanks
I'm trying to design a small application for myself to keep track of maintenance for my trucks and other details regards to them.
I'd like to enter a truck number, and then hit submit(xbutton) then have input boxes autofill with data that is stored in a CSV file.
TRUCKNUMBER = Input.GetText("TRUCK_NUMBER_INPUT");
-- Gets the truck number from the input
datecompleted = Table.Concat("DB\\TRUCKNUMBER.txt", ",", 1, 1);
-- Grab data from csv file, however I don't know how to choose the .txt file based on the truck number.
-- IF i entered 22, it should compute out to 22.txt
Input.SetText("mileagecheck_date_completed_text", datecompleted);
-- Set the text based on the data in the CSV file that was found earlier.
How can I resolve this issue?
Thanks
Comment