Can not save information into another variable for the following calculations from QLineEdit objectHow do I access a class instance in a list when there is multiple classes?Change text of QLineEdit from another classQt 5.8. Can anyone explain me how can i save json from QLineEdit to a text.json file?How to append a list from QLineEdit with iterations (only last value is showing)Retrieving information from QLineEdit as soon as there is input?Getting an input from QLineEdit and sending it to another python file for calculationPyQt5 from QLineEdit to variablefailed to delete file by os.remove(), with PermissionError: [WinError 32]multiple gui python qt and switch between themPyTorch Fashion-MNIST (ETL)

How did early x86 BIOS programmers manage to program full blown TUIs given very few bytes of ROM/EPROM?

What is the object moving across the ceiling in this stock footage?

Why is this Simple Puzzle impossible to solve?

Different circular sectors as new logo of the International System

Can't remember the name of this game

Why is desire the root of suffering?

Is this resistor leaking? If so, is it a concern?

I unknowingly submitted plagiarised work

Full horizontal justification in table

Where did Wilson state that the US would have to force access to markets with violence?

How do I align equations in three columns, justified right, center and left?

Why does the 'metric Lagrangian' approach appear to fail in Newtonian mechanics?

Is CD audio quality good enough for the final delivery of music?

How to capture more stars?

How were these pictures of spacecraft wind tunnel testing taken?

How does an ARM MCU run faster than the external crystal?

Would the Geas spell work in a dead magic zone once you enter it?

Were pens caps holes designed to prevent death by suffocation if swallowed?

Integrating an absolute function using Mathematica

Plot twist where the antagonist wins

Rests in pickup measure (anacrusis)

I think I may have violated academic integrity last year - what should I do?

At what point in European history could a government build a printing press given a basic description?

Infinite Sequence based on Simple Rule



Can not save information into another variable for the following calculations from QLineEdit object


How do I access a class instance in a list when there is multiple classes?Change text of QLineEdit from another classQt 5.8. Can anyone explain me how can i save json from QLineEdit to a text.json file?How to append a list from QLineEdit with iterations (only last value is showing)Retrieving information from QLineEdit as soon as there is input?Getting an input from QLineEdit and sending it to another python file for calculationPyQt5 from QLineEdit to variablefailed to delete file by os.remove(), with PermissionError: [WinError 32]multiple gui python qt and switch between themPyTorch Fashion-MNIST (ETL)






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








0















Photo





link: Project is here
I created three windows(Main,Current,Deposit) in QtDesign and made connections between them. Two windows have QLineEdit objects and i can input information there. But how can I save this information and use further? Tried to use method like in this video to make sure that the data is stored https://www.youtube.com/watch?v=rYeTVRLpDu4



Examples of the QlineEdit objects which are located in BankingCurrent.py file and I need to save information which I input in them:



 self.lineSurnameDeposit_2 = QtWidgets.QLineEdit(self.centralwidget)
self.lineSurnameDeposit_2.setGeometry(QtCore.QRect(210, 30, 191, 22))
self.lineSurnameDeposit_2.setObjectName("lineSurnameDeposit_2")
self.lineDataDeposit_2 = QtWidgets.QLineEdit(self.centralwidget)
self.lineDataDeposit_2.setGeometry(QtCore.QRect(210, 70, 191, 22))
self.lineDataDeposit_2.setObjectName("lineDataDeposit_2")
self.lineSumDeposit_2 = QtWidgets.QLineEdit(self.centralwidget)
self.lineSumDeposit_2.setGeometry(QtCore.QRect(210, 110, 191, 22))
self.lineSumDeposit_2.setObjectName("lineSumDeposit_2")


In the photo you can see three lines filled("SomeInformation" "26.04.2019" "23000"). How can I store this information from these QLineEdit objects and use further?










share|improve this question






























    0















    Photo





    link: Project is here
    I created three windows(Main,Current,Deposit) in QtDesign and made connections between them. Two windows have QLineEdit objects and i can input information there. But how can I save this information and use further? Tried to use method like in this video to make sure that the data is stored https://www.youtube.com/watch?v=rYeTVRLpDu4



    Examples of the QlineEdit objects which are located in BankingCurrent.py file and I need to save information which I input in them:



     self.lineSurnameDeposit_2 = QtWidgets.QLineEdit(self.centralwidget)
    self.lineSurnameDeposit_2.setGeometry(QtCore.QRect(210, 30, 191, 22))
    self.lineSurnameDeposit_2.setObjectName("lineSurnameDeposit_2")
    self.lineDataDeposit_2 = QtWidgets.QLineEdit(self.centralwidget)
    self.lineDataDeposit_2.setGeometry(QtCore.QRect(210, 70, 191, 22))
    self.lineDataDeposit_2.setObjectName("lineDataDeposit_2")
    self.lineSumDeposit_2 = QtWidgets.QLineEdit(self.centralwidget)
    self.lineSumDeposit_2.setGeometry(QtCore.QRect(210, 110, 191, 22))
    self.lineSumDeposit_2.setObjectName("lineSumDeposit_2")


    In the photo you can see three lines filled("SomeInformation" "26.04.2019" "23000"). How can I store this information from these QLineEdit objects and use further?










    share|improve this question


























      0












      0








      0








      Photo





      link: Project is here
      I created three windows(Main,Current,Deposit) in QtDesign and made connections between them. Two windows have QLineEdit objects and i can input information there. But how can I save this information and use further? Tried to use method like in this video to make sure that the data is stored https://www.youtube.com/watch?v=rYeTVRLpDu4



      Examples of the QlineEdit objects which are located in BankingCurrent.py file and I need to save information which I input in them:



       self.lineSurnameDeposit_2 = QtWidgets.QLineEdit(self.centralwidget)
      self.lineSurnameDeposit_2.setGeometry(QtCore.QRect(210, 30, 191, 22))
      self.lineSurnameDeposit_2.setObjectName("lineSurnameDeposit_2")
      self.lineDataDeposit_2 = QtWidgets.QLineEdit(self.centralwidget)
      self.lineDataDeposit_2.setGeometry(QtCore.QRect(210, 70, 191, 22))
      self.lineDataDeposit_2.setObjectName("lineDataDeposit_2")
      self.lineSumDeposit_2 = QtWidgets.QLineEdit(self.centralwidget)
      self.lineSumDeposit_2.setGeometry(QtCore.QRect(210, 110, 191, 22))
      self.lineSumDeposit_2.setObjectName("lineSumDeposit_2")


      In the photo you can see three lines filled("SomeInformation" "26.04.2019" "23000"). How can I store this information from these QLineEdit objects and use further?










      share|improve this question
















      Photo





      link: Project is here
      I created three windows(Main,Current,Deposit) in QtDesign and made connections between them. Two windows have QLineEdit objects and i can input information there. But how can I save this information and use further? Tried to use method like in this video to make sure that the data is stored https://www.youtube.com/watch?v=rYeTVRLpDu4



      Examples of the QlineEdit objects which are located in BankingCurrent.py file and I need to save information which I input in them:



       self.lineSurnameDeposit_2 = QtWidgets.QLineEdit(self.centralwidget)
      self.lineSurnameDeposit_2.setGeometry(QtCore.QRect(210, 30, 191, 22))
      self.lineSurnameDeposit_2.setObjectName("lineSurnameDeposit_2")
      self.lineDataDeposit_2 = QtWidgets.QLineEdit(self.centralwidget)
      self.lineDataDeposit_2.setGeometry(QtCore.QRect(210, 70, 191, 22))
      self.lineDataDeposit_2.setObjectName("lineDataDeposit_2")
      self.lineSumDeposit_2 = QtWidgets.QLineEdit(self.centralwidget)
      self.lineSumDeposit_2.setGeometry(QtCore.QRect(210, 110, 191, 22))
      self.lineSumDeposit_2.setObjectName("lineSumDeposit_2")


      In the photo you can see three lines filled("SomeInformation" "26.04.2019" "23000"). How can I store this information from these QLineEdit objects and use further?







      python-3.x pyqt5 qlineedit






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Mar 24 at 7:25









      eyllanesc

      93.4k123768




      93.4k123768










      asked Mar 23 at 21:54









      Ярослав ВакулкоЯрослав Вакулко

      93




      93






















          0






          active

          oldest

          votes












          Your Answer






          StackExchange.ifUsing("editor", function ()
          StackExchange.using("externalEditor", function ()
          StackExchange.using("snippets", function ()
          StackExchange.snippets.init();
          );
          );
          , "code-snippets");

          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "1"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55318759%2fcan-not-save-information-into-another-variable-for-the-following-calculations-fr%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55318759%2fcan-not-save-information-into-another-variable-for-the-following-calculations-fr%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

          Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

          Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript