c++ gul

06/14/2019 07:55 ahmed1234550#1
hi everyone, im new into c++ alot of programmers use c++ to make game hacks but they are making it in a gui not console
i wanna know the ways of creating a gui in c++
06/14/2019 19:59 IceTrailer#2
C++' standard template library itself does not offer GUI classes. Depending on your platform, you might use the functions of the [Only registered and activated users can see links. Click Here To Register...] or [Only registered and activated users can see links. Click Here To Register...].
But I would recommend C++ [Only registered and activated users can see links. Click Here To Register...] or [Only registered and activated users can see links. Click Here To Register...] which is both cross platform.
06/14/2019 20:42 ahmed1234550#3
Quote:
Originally Posted by IceTrailer View Post
C++' standard template library itself does not offer GUI classes. Depending on your platform, you might use the functions of the [Only registered and activated users can see links. Click Here To Register...] or [Only registered and activated users can see links. Click Here To Register...].
But I would recommend C++ [Only registered and activated users can see links. Click Here To Register...] or [Only registered and activated users can see links. Click Here To Register...] which is both cross platform.
thanks for your reply
i think i heard about Qt before, so there is no other way except win32 and cross platforms?
also c++ app written in Qt can be decompiled?
06/14/2019 20:57 IceTrailer#4
Everything can be "decompiled" in code. See [Only registered and activated users can see links. Click Here To Register...]
But in low level languages such as C/C++ it is not as easy as in Java/C#.
Don't worry about decompiling.
When you want GUI stuff, use one of them above. Or use high level languages e.g.
06/14/2019 21:08 ahmed1234550#5
Quote:
Originally Posted by IceTrailer View Post
Everything can be "decompiled" in code. See [Only registered and activated users can see links. Click Here To Register...]
But in low level languages such as C/C++ it is not as easy as in Java/C#.
Don't worry about decompiling.
When you want GUI stuff, use one of them above. Or use high level languages e.g.
alright thanks for your help :)