functions where can I start and how ??


hello everyone again =D

I want create something like this by c++ :

https://i.postimg.cc/qRc269qv/Untitled.png

Note : it's created by c#

I created platform like this :

https://i.postimg.cc/FF8hJ7t1/Untitled1.png

https://i.postimg.cc/pTkY1wH1/Untitled2.png

and I have this file :

https://1drv.ms/u/s!AqPOyLnFsNTOglRuS1SK4Q___Z7e?e=jSWh0t

but the only problem now I don't know where can I start with the functions and how I can do it ?? anyone can tell me steps please ❤️
I means like this ...

step 1 : go to ...
step 2 : create for loop to do this ...
step 3 : do this ...
.
.
.
ect

please anyone can ?!! ❤️ ❤️ ❤️

Last edited on
I posted the topic on another site and this was the response hhhhhh :'(
...

this sentence I wrote it in the site when he ask me what I tried : "actually I tried nothing just I will go to search in google"

So go. Do some research.

We are more than willing to help those that are stuck: but that doesn't mean that we are here to do it all for you! We can't do all the work, you are either getting paid for this, or it's part of your grades and it wouldn't be at all fair for us to do it all for you.

So we need you to do the work, and we will help you when you get stuck. That doesn't mean we will give you a step by step solution you can hand in!
Start by explaining where you are at the moment, and what the next step in the process is. Then tell us what you have tried to get that next step working, and what happened when you did.

If you are having problems getting started at all, then this may help: How to Write Code to Solve a Problem, A Beginner's Guide[^]


it's very nice reply ❤️ ❤️ ❤️
Last edited on
The first question is whether you are using C++ or C++/cli (managed C++ using .net) or possibly C++/WinRT? C++ & C++/cli are not the same.

From the image, it looks like you're using C++/cli?

@seeplus hello bro Yes it's C++/cli (.net)

can I ask you please what different between all sorry hhhh
You might have heard of the concept of 'software layers' with regard to software. The bottom layer with regard to Windows in terms of writing code for Windows is known as the Windows API (Application Programming Interface). Numerous programming languages can be used to call Windows Api functions. In terms of C or C++, one can call the Windows Api functions directly. One could write an entire program for Windows - either console or GUI (Graphical User Interface), with nothing else than these functions provided by Microsoft. However, most, by far the vast majority, of programs written for Windows, use additional 'layers' that sit on top of the raw API. One such layer everyone uses (nearly everyone, anyway) who use C or C++ are code libraries (binary components) containing the C and C++ Standard Library functions, for example, C's printf, or C++'s std::cout. These libraries form a 'layer' that sits on top of the Windows Api. Their internal implementation would involve calling lower level layer Windows Api functions.

The next layer up above all this would be the Microsoft .NET Application Framework. I believe C++/CLI coding involves interaction mostly or totally with that software 'layer'. I believe that's where you are at.
@freddie1

whowh Thank you so much bro for all your information ❤️
Topic archived. No new replies allowed.