Posts by Filipizaum • 109 points
6 posts
-
1
votes2
answers90
viewsA: Is there a possibility of versioning files other than code?
Yes, it is possible. I see that you are looking for a solution regarding the versioning of Jasper reports. I searched the Internet and found a procedure which may be useful to you if your intention…
versioninganswered Filipizaum 109 -
3
votes1
answer36
viewsQ: Why does "is" not work when comparing the replace of a string?
I tried to do in CLI Python 2.7.6 the following command: 'foo bar'.replace(" ", "") is 'foobar' But returned False Despite 'foo bar'.replace(" ", "") return 'foobar' Does anyone have any logical…
-
0
votes1
answer287
viewsQ: How to pass data to Activity itself after the camera is called?
I have a Activity with a EditText and a Button. When the button is clicked, the typed text is saved in a Activity and the camera is opened with the method startActivityForResult(). When the user…
-
3
votes1
answer115
viewsQ: What is the difference between the quit and Exit methods of qApp?
I’m testing the example Getting Started Programming with Qt Widgets and found a call for a method to exit the application: void Notepad::on_quitButton_clicked() { qApp->quit(); } I took a look at…
-
2
votes1
answer115
viewsA: What is the difference between the quit and Exit methods of qApp?
The variable qApp is a global pointer that refers to the single object application. It is equivalent to the pointer returned by the function QCoreApplication::instance(), except that, in GUI…
-
1
votes3
answers346
viewsA: Variable error within the function
The variables you are trying to use in the object method $paymentRequest shall be initialised within the main (main), so they will be recognized in the scope.