Search results for query: *

  1. ceobros

    Question Change keybind hotkeys

    Hi, I am using the HotkeyListener Nuget package and I am trying to update a hotkey. I have a label that displays what hotkey is being used which is F7, I added a click function to change the text. private void OnrecordPOSClick(object sender, EventArgs e) => recordPOS.Text...
  2. ceobros

    Resolved Help Exporting and Importing CSV

    My dumbass was overthinking of how I was supposed to do it. My apologies if this problem made you frustrated towards me. Thank You for your help
  3. ceobros

    Resolved Help Exporting and Importing CSV

    I seriously have no damn clue, literally no clue, I've looked at the documentation for literally hours and find no correlation to the problem I am having at all, There doesnt seem to even be a way to use fields either. I'm completely lost
  4. ceobros

    Resolved Help Exporting and Importing CSV

    Still stuck now with an error "InvalidArgument=Value of '1' is not valid for 'index'. Parameter name: index" private void openCoord_Click(object sender, EventArgs e) { OpenFileDialog openFileDialog = new OpenFileDialog(); openFileDialog.InitialDirectory...
  5. ceobros

    Resolved Help Exporting and Importing CSV

    had a brain fart but its still lingering. The data from the file still won't display in the listview private void openCoord_Click(object sender, EventArgs e) { OpenFileDialog openFileDialog = new OpenFileDialog(); openFileDialog.InitialDirectory =...
  6. ceobros

    Resolved Help Exporting and Importing CSV

    the string is very simple, its 4 columns, data is stored as such for example 1,2,3,4
  7. ceobros

    Resolved Help Exporting and Importing CSV

    Doesn't import anything into the ListView and I'm not sure what to replace "filePath" with private async void savCoord_Click(object sender, EventArgs e) { SaveFileDialog saveFileDialog = new SaveFileDialog(); saveFileDialog.InitialDirectory =...
  8. ceobros

    Resolved Help Exporting and Importing CSV

    the thing is that it isn't opened at all anywhere.
  9. ceobros

    Resolved Help Exporting and Importing CSV

    Hi, not sure what filepath is from, but I replaced it with "openFileDialog.FileName" but when I try to import data it says the file is in use. What am I missing here?
  10. ceobros

    Resolved Help Exporting and Importing CSV

    I need a way to open a csv file and write the contents of it into a listview component. I tried but it doesn't work. Here is my export from listview to csv: private async void savCoord_Click(object sender, EventArgs e) { SaveFileDialog saveFileDialog = new...
Back
Top Bottom