Fixed width text file column selection control
-
Is there a control available for .Net (preferably with source - C# if possible) for selecting the columns of a fixed width text file? I'm looking for something similar to Excel for the Text Import wizard (step 2 of 3) that provides the functionality for selecting the columns that the fields start. Thanks, cvogt61457
-
Is there a control available for .Net (preferably with source - C# if possible) for selecting the columns of a fixed width text file? I'm looking for something similar to Excel for the Text Import wizard (step 2 of 3) that provides the functionality for selecting the columns that the fields start. Thanks, cvogt61457
Check this article[^] right here on CodeProject for this function. You may need to modify it to make a wizard-like control, but ti does the basic function of parsing a fixed-width or delimited text file.
"A Journey of a Thousand Rest Stops Begins with a Single Movement"
-
Check this article[^] right here on CodeProject for this function. You may need to modify it to make a wizard-like control, but ti does the basic function of parsing a fixed-width or delimited text file.
"A Journey of a Thousand Rest Stops Begins with a Single Movement"
Thanks for the help. I'm looking for the UI portion - the part to select the columns graphically. The data reading and parsing is the easy part. I did find this Column Definition Control[^]. I may have to convert this to C# for my use.