Click here to Skip to main content
16,021,823 members

Comments by k5054 (Top 200 by date)

k5054 9-Sep-24 12:50pm View    
There is not a great deal of QT expertise around here. You will probably get better results asking your question at a QT specific forum.
k5054 20-Aug-24 22:05pm View    
I've never seen !! either. And its not listed here : https://en.cppreference.com/w/c/language/operator_precedence
Can you cite an example?
k5054 4-Aug-24 9:32am View    
Do you need to evaluate over all possible combinations of x1 .. x12? If not, could your innermost loop be expressed in terms of a single array containing all the members of x1 ... x12?
k5054 6-Jun-24 16:31pm View    
Go back and re-read my solution. In particular pay attention to the call to TRACE_Function when wanting to use QTextEdit::append
I've reformatted that part to make things a little more clear
k5054 22-May-24 12:23pm View    
1: I think maybe you replied at the wrong place, and this should be a reply to one of the solutions, below
2: If this is a static string, why go through the work of extracting things later? Why not just create your extracted objects at the get go? Seems like unnecessary work to me, with the added possibility of having to debug later. Creating the aggregate string from those objects shouldn't pose too much difficulty.