Search results for query: *

  • Users: kwhelchel
  • Content: Threads
  • Order by date
  1. K

    Win32Exception Issues

    Console application that is made to execute the USOClient.exe with the switch of "StartDownload". Error states as follows "System.ComponentModel.Win32Exception: 'The system cannot find the file specified' " static void Main(string[] args) { System.Diagnostics.Process...
  2. K

    Question DataGrid Export Csv

    This is what I ave datagrid first 3 columns are from a csv file. The rest of the columns will be a column combobox with a list of times in it. The combobox will reflect a day of the week with an in out time for each row. I have the combobox displaying a drop down which works on a double click...
  3. K

    Resolved wpf combobox column?

    OK I am working on this project now in wpf. I have to bring in data from a csv file on column 0,1 and 11. so far I have column 0,1,2 and not 11 figure i can get to that slowly. That is all I am pulling from the csv file. In mt datagrid I get my 3 columns from the csv file no problem there. But...
  4. K

    Resolved CSVHelper Write Function

    I have been trying to figure out how to get csvhelper to write the data that is in my datagridview. The datgridview is populated by the following. First 3 are populated from a csv file with a class that has the csvhelper attributes to grab certiam columns from the csv file. Then the rest of the...
  5. K

    Resolved How to handle insert to ?

    ok I have this json string that needs to have the input fields of the requested data input. I will be storing the imputed vales in a sqlite table to be used. But I am not sure what I am looking at to do this exactly. This info we be used in several places also. var thisJsonStr =...
  6. K

    Resolved JSON to a ListBox not displaying correctly

    OK so two things going on here. First I am getting this when the ListBox items gets added. "OK - System.Collections.Generic.List`1[System.String] - System.Collections.Generic.List`1[ClassLibraryApi.Report]" Other times it loads nothing and this is the exception it pulls...
  7. K

    Question Help with a setup

    OK I am stumped on this problem I am stuck on. In the image here the dashboard is my main and the sendmail is just a class. Now what I want to do is this. Dashboard is my configuration setup page, then the sendemail is the action that takes place from a bat file trigger. So can this be done...
  8. K

    Answered Display ini info in textbox

    so what I have is a layout that will take the info that is added into a textbox and then add it to an INI file. Everything there works fine but when the form is reopened I want it to read what is in the INI file and display it into the proper textboxs. I have looked around and finding nothing...
  9. K

    Question WPF Report Builder

    Ok so I have been able to connect and build reports in winforms with not much problem but with WPF I am getting lost on it. Been trying a few differnt things I have found but they never seem to be clear enough for me. I have tried this and get lost 3/4 the way down wpf rdlc. I am still trying...
  10. K

    Resolved CS1061 Error - missing definition

    I am getting an error CS1061 on the cd.Closeout with in this button click event to load data to a datagrid. Been trying to figure this out but with no luck. Error as listed Severity Code Description Project File Line Suppression State Error CS1061...
  11. K

    Resolved WPF ListBox Binding Stumped

    Ok so yes working my way through WPF and a struggle lol. But so far I agree it is worth it @Skydiver thanks. ok so I can bind my database with a Datagrid and get it to display but when I work with the list box i get all turned around for some reason. But the Datagrid is a bit more to my liking...
  12. K

    Answered WPF Please Explain

    @Skydiver I see you posting a lot of times saying learn WPF ? So my question is what is the Biggest reason ? and will someone else be able to work with it like winforms? Also my project has a lot of variables with daily sales data and I need to be able to create reports from that data. I am...
  13. K

    Question Name does not exist in current context

    Having problem with a setup and can not figure this one out. Line 53 is stumping me with this. using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using...
  14. K

    Question csv file import failing

    The following csv file fails on the last column ot TYPSPEC field. And I am not sure what I am missing here? and or if I should be using varchar on it. Thanks
  15. K

    Resolved Listbox selection of sql data items

    Hello, First off thanks for all the help I have been given from people here :) The pic that I am posting is where I am at this time with things. Listboxes go from left to right in order. So what I am doing is in listbox1 is reports that will be built to run. Listbox 2 is report object/filters...
  16. K

    Answered Stored procedure problems

    created a stored procedure in ssms 2019 CREATE PROCEDURE usp_Close AS BEGIN SELECT [closeid], [e_date] FROM [dbo].[close1] END which ran find and I see my procedure in ssms, but when i go to test i get this when trying to pull up the sql data in a listbox...
  17. K

    Resolved DBF Files To Sql

    IS there anyone familiar with migrating DBF files to SQL? I have an application that is going to dump data to a DBF file then I need to get it into SQL for reporting on the data. Thanks
  18. K

    Resolved Multiple ListBox selection

    Hi there, What I am attempting to do is this with in my project. Using 3 separate listboxs to present data to be selected and then a run button. the idea is this layout. Listbox1 contains a list of rdlc reports that is created Listbox2 will contain a list of filters that can be selected if...
Back
Top Bottom