CLI/C++ UI Display image from web using Textbox and a Button Picturebox

Hello!

I'm trying to make a program (UI) that shows my schedule (from the internet) so I thought that I might try out CLI as I have some knowledge in C++ not much but a bit.
This is how it looks:
https://gyazo.com/fe407527370bf4cbdf6cdcb0bbe5cec3

I want the person to enter what class they go in the Textbox (For example: EE2)and then after they have done that they should press the "Show me" button for it to take the Textbox text and open the URL (Example: www.myshedule.com/EE2) in that URL it will show a .PNG image of the shedule.

But I have no idea on how to do it, I was hoping for it to be similar to regular C++ but I had wrong and I have been looking all over the internet without sucess.

Any help would be great!

MyForm.h: http://pastebin.com/7VX0gQfA
Last edited on
Basically you need to create an eventhandler for the button - just double-click on the button.

Then you take the Text from the Textbox and append it to the url(www.myshedule.com/). Finally you load the image in the PictureBox.

Have alook at this tutorials:
http://www.functionx.com/vccli/controls/picturebox.htm
http://www.functionx.com/vccli/
Topic archived. No new replies allowed.