Search results for query: *

  • Users: muro
  • Content: Threads
  • Order by date
  1. muro

    update the dataset designer

    One more question dear friends. When updating my table in the sql, how can i update it in the dataset designer without having to delete the table and add it again, because all my queries get removed too and i have to recreate them all again. It is a lot of work when i have bigger tables with...
  2. muro

    SImple Bindingsource.Filter problem

    myBindingSource.Filter = $" StartTime not like 'now' AND (OrderTime >= #{DateTime.Now:MM/dd/yyyy}# AND OrderTime < #{DateTime.Now.AddDays(1):MM/dd/yyyy}#)"; I had this code and it worked good but then i decided to change OrderTime coloumn type in sql to nvarchar , it used to be datetime2...
  3. muro

    Streamreader skips lines

    Dear friends, i have got this code where the Streamreader sometimes reads the file fine and sometimes skips a few lines and i have absoloutely no idea why it is doing this. FtpWebRequest request = (FtpWebRequest)WebRequest.Create("ftp://myfile.txt"); request.Method =...
  4. muro

    discord

    Do we have a discord server, if not what woudl you think about having one?
  5. muro

    Bindingsource Filter show all rows

    Hello dear friends, I have 2 Tables which are related to each, i made the relationship in the dataset xsd window. When selecting a row in the parent table all child rows are shown and it works perfect. However when i filter the bindingsource only the current selected parent rows child rows are...
  6. muro

    Database changes not shown in dataset.xsd correctly

    Dear friends, when i change things in my sql database, for example i add a new column, delete one, change datatype of a column and stuff like that and then update my dataset with the wizard the changes are not shown correctly. Some things are updated correctly some not and only if i delete the...
  7. muro

    Relationship between 2 tables

    Hello dear friends, I have 2 tables, parent and child relationship. When i select a row from the parent table all rows are shown in the childtable that belong to this parent, so far so good. Now i have another form, where i only need the childtable so i drag drop the dgv on the form. now comes...
  8. muro

    Question expression to filter bindingsource

    Dear friends, i have a column of type string which is holding values like 22.04.2018 17:30. I want to use bindingsource.filter and keep only the records of Today. i tested: dataTable1BindingSource.Filter = $"Datum like '{DateTime.Now.ToShortDateString()}'"; it works when i put some values in...
Back
Top Bottom