Search results for query: *

  1. T

    Insert Null Values into a Sqlite Table

    @Skydiver, my Brother, I don't want a ready-made code, I just want to understand, I'm not going to use AI, I want to learn, I'm just an amateur thinking out loud maybe, :) I managed to do it with an if() condition, it was long and ugly, but it's working, until I find another better way I'll...
  2. T

    Insert Null Values into a Sqlite Table

    @Skydiver, I'm very grateful for taking your board to help me. Unfortunately I couldn't change your code, I'm trying to understand... I thought about trying to get the 15 numbers from the Json file and load them into 25 Labels respecting the nulls, after that it would be easy...
  3. T

    Insert Null Values into a Sqlite Table

    I've already warmed up my brains thinking about how to build this, but I haven't been successful, I'll do some more research. Thank you very much for responding. a hug.
  4. T

    Insert Null Values into a Sqlite Table

    @Skydiver Thank you very much for helping me many times. but this time what I need to do is create a condition that, that saves each number in its field. as there are only 15 random numbers out of a total of 0 to 25 numbers, 10 numbers would be blank in the table. Here comes my problem, how to...
  5. T

    Insert Null Values into a Sqlite Table

    Connection to the Database: public static string path = Directory.GetCurrentDirectory() + "\\ResultadoDB.sqlite"; private static SQLiteConnection sqliteConnection; private static SQLiteConnection DbConnection() { sqliteConnection = new SQLiteConnection("Data...
  6. T

    Insert Null Values into a Sqlite Table

    Hello Colleagues, I have a cruel doubt tormenting me, I need to include 15 numbers from a jSon list in a table with 25 fields. Example of the jSon File where 15 Numbers from 0 to 25 are drawn { "tenslist": [ "01", "03", "04", "08", "10", "11", "13", "14", "17", "18", "19", "21", "22 ","23"...
  7. T

    error when fetching json file from C# website

    @Skydiver would you have any suggestions for this problem? I don't have much knowledge in APIs...
  8. T

    error when fetching json file from C# website

    @Skydiver Thanks for responding I'm using the same version of the .NET Framework 4.5.2, I created Setup.exe in November 2023, until a week ago it worked perfectly. Using the browser, I can access the updated link page.
  9. T

    error when fetching json file from C# website

    Hello Colleagues, here I am again asking colleagues for advice. I have two methods in my application that are giving me a headache, one reads a json file and saves it in txt and the other prints some results on the screen, everything was working perfectly until a week ago, and suddenly an...
  10. T

    Question transfer content from Form2's TextBox to Form1's DataGridView

    @jmcilhinney, I unfortunately don't know how to do this, I'm trying to understand the logic, but thank you for your explanation. Thank you very much. hug
  11. T

    Question transfer content from Form2's TextBox to Form1's DataGridView

    Hi @jmcilhinney, the use of dynamic TextBoxes is because there is already one in the project, but it can be in the designer too, no problem, I thought it would be better to pass the data to the other form
  12. T

    Question transfer content from Form2's TextBox to Form1's DataGridView

    Hello, Thanks for replying, I will be more careful when using "DataGrid", I am using DataGridView, My question is not very objective, so I will rephrase it here. I have Form1 with a Button that Calls Form2, in Form2 I have a TextBox array with 5 indices and an OK Button. I can do it from Form1...
  13. T

    Question transfer content from Form2's TextBox to Form1's DataGridView

    Hello guys, here I am again asking for support. I have a Form1 that contains a DataGrid and a 'Call' Button that calls Form2, on Form2 I have 2 TextBox and an 'OK' Button I need to transfer the contents of the TextBox from Form2 to the Grid of Form1 when clicking the OK Button, I did a lot of...
  14. T

    Resolved Error when Editing and Deleting in SqLite

    ...Text file, I got the same result, however when I commented on the code snippet for the Search Button removing the check (Verificar Existencia()) *(Comment 5/6 )* everything started to work perfectly, both in VS 2015 and VS 2019, Maybe this happens because my search array only searches for the...
  15. T

    Resolved Error when Editing and Deleting in SqLite

    Hello @Skydiver, @Pablo, @cjard, first I apologize for so much inconvenience. Following my colleagues' tips, my code continued to give the same error. So I started commenting on some codes, I came to the conclusion that the error is in this part of the code. private void btnBuscar_Click(object...
  16. T

    Resolved Error when Editing and Deleting in SqLite

    I'm sorry, but that's not exactly what I meant, I'm using Google Translate, my English is weak.
  17. T

    Resolved Error when Editing and Deleting in SqLite

    I'm going to dedicate myself to this post, I'm going to redo the project based on these tips, because my code is all messed up, as soon as I'm finished I'll come back here to inform everyone, thank you all. a hug.
  18. T

    Resolved Error when Editing and Deleting in SqLite

    Hi everyone, I'm very grateful to everyone, I learned a lot here in this post, I realized that I have to study a lot, and that's what I've been trying to do, but there are so many things that make my brain rack, I tried every way. I took the tip from @Pablo and it kept giving the error, the tips...
  19. T

    Resolved Error when Editing and Deleting in SqLite

    Hi everyone, @Skydiver, @Pablo, @cjard, I apologize for not responding sooner, I don't know why I didn't receive the notifications in my email, I always did, but this time it didn't come, @cjard about the 58MB size of the completed project that I send Sutup together, #Pablo I was looking for a...
  20. T

    Resolved Error when Editing and Deleting in SqLite

    Project with some comments in English
Back
Top Bottom