Search results for query: *

  1. sn_race

    Question Convert a curl call from JavaScript to C #

    I took a look and I will modify it that way as you advise me, in the meantime I had made some changes: I created the json string with "JsonConvert.SerializeObject", and added the "inputContexts" field that I had omitted, even though I had pasted it here in the code. Now it returns me this...
  2. sn_race

    Question Convert a curl call from JavaScript to C #

    Hello, could you help me convert the JavaScript code of the POST call found in the function: async function ryte ({useCaseId, inputContexts}) https://github.com/rytr-me/documentation/blob/main/samples/node/index.js In a C # code, I can't find the right way, I don't know much JavaScript, I...
  3. sn_race

    Question Translate a WinForm type application into multilingual

    It all works finally!!! I just had to include in the Setup project the 2 directories "en" and "ro" that Visual Studio creates, they are located in \bin\debug\ where inside there are the dlls: "Multilingual Setup Project.resources.dll"
  4. sn_race

    Multilingual project, does not work after installation

    using System; using System.Collections.Generic; using System.ComponentModel; using System.Globalization; using System.Linq; using System.Reflection; using System.Resources; using System.Threading; using System.Windows.Forms; namespace Multilingual_Setup_Project { public partial class Form1...
  5. sn_race

    Multilingual project, does not work after installation

    Ok, many thanks, i did as it says on StackOverflow, if I run from Visual Studio it loads me the text of the Button and the Label but it doesn't load me all the rest, so the Text of Form1, the contents of the ComboBox and the languages for the MessageBox, after the installation on win it...
  6. sn_race

    Multilingual project, does not work after installation

    Hello, I developed this sample test to create a Setup project for a Multilingual WinForm application. I used Visual Studio 2022 and .resx files to translate into three languages. The test project has only Form1 as a user interface, so the .resx files are: Form1.resx = Italian (default)...
  7. sn_race

    Question Translate a WinForm type application into multilingual

    You didn't tell me I'm a kid but you treated me like a kid, it's possible it's the google translation that works badly, it doesn't matter, forget it, I don't like to argue if I'm not face to face with the person, it was a misunderstanding.
  8. sn_race

    Question Translate a WinForm type application into multilingual

    Yes, I looked at it but for those who don't know how to do it, they seem like a list of examples for various occasions, an example link I meant an example of a blog where it says how to do it on one occasion. But then who are you to tell me that I did not "deign", I'm not a kid, you have to...
  9. sn_race

    Question Translate a WinForm type application into multilingual

    Do you have links where I can see an example of how to use it? I made 3 rows: lang.resx lang.en.resx lang.ro.resx lang.resx is the default language, for me "Italian" Where within them there are all String fields and their respective value. In the class that I have shown I change the language...
  10. sn_race

    Question Translate a WinForm type application into multilingual

    If I use a database I could transfer the result of the query in a static class and recall any item on the whole project, with the resource file I have to write twice item by item all the translations to be done in the entire software, I'll give you a little example: public static class...
  11. sn_race

    Question Translate a WinForm type application into multilingual

    Hello, I have developed a project in WinForm and I would like to implement multilingual translation as in commercial software. I tried using the resource file (.resx). Is it really the best approach to translate all user interfaces and messages? Wouldn't it be better something like using the...
Back
Top Bottom