Link: @CplusplusQt Embedded: @EMBCpp • Allowed Topics: C++ and everything related to Qt • Use only English • No Private Message without asking user's permission • No NSFW • No Spam • No unauthorized Bots • No Offtopic • No Self Promotions
C# is actually cross platform nowadays, but only the core language. The default graphical frameworks (windows forms and WPF) are windows only. There are others though.
Читать полностью…AFAIK, C# is for MS Windows only, so if you aim at cross-platforming then go for C++.
I'm not using C# but have seen code in it at times and guess C++ needs less code.
can i ask this question, i'm thinking of coding a desktop application, but i'm not certain as to which language should use , whether c# or c++, for c# i'm scared it will be cracked soon and c++, i scared it will take me longer, do u think we have any obfuscation techniques for c# i can purchase or learn or what addvise can any give me?
Читать полностью…@eng_amreisa do you want it exactly like that, or is there something specific in you current solution that needs improvement?
Читать полностью…I need qcombobox that have popup like treeview same as one explore in Windows XP
Читать полностью…Welcome to the group, @AliKhanhp! :-)
Wanna share your story of how you started with Qt, QML or C++? Maybe some nice feature that made you stick with it.
Rules are set on the description of the group. :)
Welcome to the group, @brookiestein! :-)
Wanna share your story of how you started with Qt, QML or C++? Maybe some nice feature that made you stick with it.
Rules are set on the description of the group. :)
Hello Community!
https://www.reddit.com/r/QtFramework/comments/1ez0rpu/whats_the_best_learning_path_for_developing/?utm_source=share&utm_medium=web3x&utm_name=web3xcss&utm_term=1&utm_content=share_button
Please help me on this
I switch to use the 'QStandardPaths::writableLocation(QStandardPaths::DownloadLocation);' then can use QFile to create and save file to the local path. I think the real issue is the permission.
Читать полностью…Like this one: https://www.qt.io/blog/whats-new-for-qml-modules-in-6.5
Читать полностью…I have read it quickly, but I haven’t dived into all details
Читать полностью…can i ask this question, i'm thinking of coding a desktop application, but i'm not certain as to which language should use , whether c# or c++, for c# i'm scared it will be cracked soon and c++, i scared it will take me longer, do u think we have any obfuscation techniques for c# i can purchase or learn or what addvise can any give me?
Читать полностью…https://doc.qt.io/qt-6/qtreeview.html#signals
https://doc.qt.io/qt-6/qabstractitemview.html#signals
Best is double clicked or when you press enter
All I want treeview have parents & children. And get selected index.
Читать полностью…I need qcombobox that have popup like treeview same as one explore in Windows XP
Читать полностью…I need some help please with https://godbolt.org/z/sr884jf11 I try to view treeview in good way, How I can fix this ?
Читать полностью…when execute "QFileDialog::saveFileContent(data, fileName);" it can create the fileName under this directory, but can not write the data to the new created file.
Читать полностью…hello, I use the QFileDialog to open and selected a directory, then I want create and store a file under this directory,
but in android device, the path = QFileDialog::selectedFiles().first() is the url format: "content://com.android.externalstorage.documents/tree/primary%3ADownload%2Fbrowser",
if I want create a file which named "AAA.txt", then I try to append the "%2FAAA.txt" to the path to get the fileName,
then use the QFile file(fileName); file.open(QFileMode::ReadWrite) to open or create the file, but the return value is -1. does anyone know how to store file in android device by Qt?