Jump to content

C++ visual?

- - - - -

This topic has been archived. This means that you cannot reply to this topic.
12 replies to this topic

#1
RobotGymnast

RobotGymnast

    Programmer

  • Members
  • PipPipPipPip
  • 143 posts
How do I get started making a visual interface? I could use the standard Visual C++ one, but I sort of feel like making it myself, how do I do that?

#2
MeTh0Dz

MeTh0Dz

    Writes binary right handed and hex left handed

  • Members
  • PipPipPipPipPipPipPipPipPip
  • 2,119 posts
Learn WinAPI.

#3
RobotGymnast

RobotGymnast

    Programmer

  • Members
  • PipPipPipPip
  • 143 posts
I've gotten recommendations against that, but I guess okay.
Thanks

#4
MeTh0Dz

MeTh0Dz

    Writes binary right handed and hex left handed

  • Members
  • PipPipPipPipPipPipPipPipPip
  • 2,119 posts
And who gave you these recommendations?

If you are going to code for Windows and want to make GUIs, you obviously learn WinAPI first.

I'd like to know who told you that...

#5
RobotGymnast

RobotGymnast

    Programmer

  • Members
  • PipPipPipPip
  • 143 posts
Okay, true.
and lol it was my 15 year-old friend. I can assume he recommended that because he's lazy.. his exact words were "we could do that, but WinAPI's a b**** to learn"

#6
MeTh0Dz

MeTh0Dz

    Writes binary right handed and hex left handed

  • Members
  • PipPipPipPipPipPipPipPipPip
  • 2,119 posts
That guy is just lazy yeah. Learn WinAPI, then you have some other options available once you have a solid foundation.

#7
WingedPanther

WingedPanther

    A spammer's worst nightmare

  • Moderators
  • 16,831 posts
What's challenging to learn will depend a LOT on the skill, talent, and background of the learner. I like cross-platform development, so I look for toolkits. Methodz sticks to Windows, so he uses the WinAPI. A toolkit can often be just as challenging to work with as the API, so sometimes it's a matter of taste, style, or purpose.
Programming is a branch of mathematics.
My CodeCall Blog | My Personal Blog

#8
MeTh0Dz

MeTh0Dz

    Writes binary right handed and hex left handed

  • Members
  • PipPipPipPipPipPipPipPipPip
  • 2,119 posts
WingedPanther, I code for Nix and Windows. It's just it makes more sense to learn WinAPI first if you are going to code for Windows as opposed to starting straight off with a CrossPlatform Toolkit that just sits up higher.

#9
RobotGymnast

RobotGymnast

    Programmer

  • Members
  • PipPipPipPip
  • 143 posts
Alright, WinAPI it is. Thanks

#10
butidonot

butidonot

    Newbie

  • Members
  • PipPip
  • 14 posts
I could use the standard Visual C++ one, but I sort of feel like making it myself, how do I do that?
MCSE

ccna

#11
WingedPanther

WingedPanther

    A spammer's worst nightmare

  • Moderators
  • 16,831 posts
@Methodz: I guess for me, I plan on all my code being cross platform, so I don't want to re-engineer anything after the fact.
Programming is a branch of mathematics.
My CodeCall Blog | My Personal Blog

#12
MeTh0Dz

MeTh0Dz

    Writes binary right handed and hex left handed

  • Members
  • PipPipPipPipPipPipPipPipPip
  • 2,119 posts
I usually code for a specific platform.