473,382 Members | 1,749 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,382 software developers and data experts.

creating interface with c++

FC
Hi all:
I am a Computer Engineering student, as part of my curriculum I have
taken quite a few programming classes. Most of them were given in C++. I
am almost done with my studies and I have yet to see a course where they
teach how to create an application that uses a GUI. By this I mean a
window that has menus like the usual file, edit, view, etc. I know that
can be done using C++ in conjunction with other technologies such as
ASP, ADO, and .NET. I also know that there are C++ programs that
interact with databases (Oracle, MSAccess, MySQL, etc). My question to
you guys/gals is: Where do I find the info to learn more about this
stuff? I would like to purchase a book. Assuming I am a fairly
proficient C++ programmer, what book would you recommend in order for me
to learn how to create an application that uses these technologies?
Please advise.

Best regards,

FC

PS: I hope I am not off topic.
Jul 23 '05 #1
7 2473
FC wrote:
I am a Computer Engineering student, as part of my curriculum I have
taken quite a few programming classes. Most of them were given in
C++. I am almost done with my studies and I have yet to see a course
where they teach how to create an application that uses a GUI. By
this I mean a window that has menus like the usual file, edit, view,
etc. I know that can be done using C++ in conjunction with other
technologies such as ASP, ADO, and .NET. I also know that there are
C++ programs that interact with databases (Oracle, MSAccess, MySQL,
etc). My question to you guys/gals is: Where do I find the info to
learn more about this stuff? I would like to purchase a book.
Assuming I am a fairly proficient C++ programmer, what book would you
recommend in order for me to learn how to create an application that
uses these technologies? Please advise.


There are many books that deal with Windows programming (I assume you
mean Windows since you mentioned ADO, MSAcces, and .NET). You are
hence strongly urged to ask about books that help with that in a forum
dedicated to Windows programming. See comp.os.ms-windows.programmer.*
or microsoft.public.dotnet.*.

V
Jul 23 '05 #2
"FC" writes:
I am a Computer Engineering student, as part of my curriculum I have taken
quite a few programming classes. Most of them were given in C++. I am
almost done with my studies and I have yet to see a course where they
teach how to create an application that uses a GUI. By this I mean a
window that has menus like the usual file, edit, view, etc. I know that
can be done using C++ in conjunction with other technologies such as ASP,
ADO, and .NET. I also know that there are C++ programs that interact with
databases (Oracle, MSAccess, MySQL, etc). My question to you guys/gals is:
Where do I find the info to learn more about this stuff? I would like to
purchase a book. Assuming I am a fairly proficient C++ programmer, what
book would you recommend in order for me to learn how to create an
application that uses these technologies? Please advise.


_Programming Windows_ by Charles Petzold is pretty munch regarded as the
bible for the Windows GUI.
Jul 23 '05 #3
FC wrote:
I am a Computer Engineering student, as part of my curriculum I have
taken quite a few programming classes. Most of them were given in C++. I
am almost done with my studies and I have yet to see a course where they
teach how to create an application that uses a GUI.
That's because C++ itself is best understood as a portable solution for hard
logical problems. All GUIs are platform-specific by nature, and learning to
use one compares to learning raw C++ essentially as driving a car compares
to rebuilding its engine.
By this I mean a
window that has menus like the usual file, edit, view, etc. I know that
can be done using C++ in conjunction with other technologies such as
ASP, ADO, and .NET.
Oooookay. Firstly, all those are MS-specific. That means a better sentence
with "other technologies such as" would go "Win32 SDK, Qt, Gtk+..." etc. The
sentence should cover the full breadth of the industry.

ASP is a ticklish HTML generating system, ADO is a data layer, and .NET is a
platform - a complete set of modules that provide complete services for
programs to use.
I also know that there are C++ programs that
interact with databases (Oracle, MSAccess, MySQL, etc). My question to
you guys/gals is: Where do I find the info to learn more about this
stuff?
www.google.com
I would like to purchase a book. Assuming I am a fairly
proficient C++ programmer, what book would you recommend in order for me
to learn how to create an application that uses these technologies?
The crisis here is between the generic and specific. If you ask for modern
Win32 textbooks, walk into the nearest large bookstore and look for books on
VC++. They will cover various ways to program "windows", including MFC and
ATL. The best way is WTL, but that might not have a book yet.
PS: I hope I am not off topic.


The questions "how to use C++ to...?" and "what's the best [generally
portable] library to...?" are on topic. The point of topicality is to entice
C++ generalists to work this newsgroup and give you the best answer.
Specific questions about the answers to these questions are best served in
their own respective forums, which might not be so impartial.

Assuming you don't want to run Linux, GNU, Gnome, KDE, Qt, or Tk, use
http://groups.google.com to find a microsoft-specific newsgroup that covers
these questions.

--
Phlip
http://industrialxp.org/community/bi...UserInterfaces

Jul 23 '05 #4
FC wrote:
Hi all:
I am a Computer Engineering student, as part of my curriculum I have
taken quite a few programming classes. Most of them were given in C++. I
am almost done with my studies and I have yet to see a course where they
teach how to create an application that uses a GUI. By this I mean a
window that has menus like the usual file, edit, view, etc. I know that
can be done using C++ in conjunction with other technologies such as
ASP, ADO, and .NET. I also know that there are C++ programs that
interact with databases (Oracle, MSAccess, MySQL, etc). My question to
you guys/gals is: Where do I find the info to learn more about this
stuff? I would like to purchase a book. Assuming I am a fairly
proficient C++ programmer, what book would you recommend in order for me
to learn how to create an application that uses these technologies?
Please advise.

Best regards,

FC

PS: I hope I am not off topic.

For VC++ 2003, a nice beginner to intermediate level book that you can read, and covers
all .NET facilities, including multithreading, is "Visual C++ .NET How To Program" by Deitel.
http://vig.prenhall.com/catalog/acad...373774,00.html

--
Ioannis Vranos

http://www23.brinkster.com/noicys
Jul 23 '05 #5
Ioannis Vranos wrote:
For VC++ 2003, a nice beginner to intermediate level book that you can
read, and covers all .NET facilities, including multithreading, is
"Visual C++ .NET How To Program" by Deitel.
http://vig.prenhall.com/catalog/acad...373774,00.html

Also I want to suggest you, not losing time learning the legacy Windows stuff like Win32,
MFC, etc. .NET is becoming the main platform now, and with the release of Longhorn in 2006
it becomes the main Windows API (WinFX). All recent releases of Windows APIs are all using
..NET (e.g. DirectX 9.0 is managed and not native, and requires .NET).
Recent releases of ADO etc are parts of .NET, now this one is called "ADO .NET" for example.


--
Ioannis Vranos

http://www23.brinkster.com/noicys
Jul 23 '05 #6
How is Win32 legacy code? .NET is still built on top of the Win32 API and
calls it behind the scenes. I stopped programming with .net as I still had
to make many Win32 calls as .net didn't have the functionality that I
needed.
"Ioannis Vranos" <iv*@remove.this.grad.com> wrote in message
news:1112524984.17754@athnrd02...
Ioannis Vranos wrote:
For VC++ 2003, a nice beginner to intermediate level book that you can
read, and covers all .NET facilities, including multithreading, is
"Visual C++ .NET How To Program" by Deitel.
http://vig.prenhall.com/catalog/acad...373774,00.html

Also I want to suggest you, not losing time learning the legacy Windows
stuff like Win32, MFC, etc. .NET is becoming the main platform now, and
with the release of Longhorn in 2006 it becomes the main Windows API
(WinFX). All recent releases of Windows APIs are all using .NET (e.g.
DirectX 9.0 is managed and not native, and requires .NET).
Recent releases of ADO etc are parts of .NET, now this one is called "ADO
.NET" for example.


--
Ioannis Vranos

http://www23.brinkster.com/noicys

Jul 23 '05 #7
FC wrote:
Hi all:
I am a Computer Engineering student, as part of my curriculum I have
taken quite a few programming classes. Most of them were given in C++. I
am almost done with my studies and I have yet to see a course where they
teach how to create an application that uses a GUI. By this I mean a
window that has menus like the usual file, edit, view, etc. I know that
can be done using C++ in conjunction with other technologies such as
ASP, ADO, and .NET. I also know that there are C++ programs that
interact with databases (Oracle, MSAccess, MySQL, etc). My question to
you guys/gals is: Where do I find the info to learn more about this
stuff? I would like to purchase a book. Assuming I am a fairly
proficient C++ programmer, what book would you recommend in order for me
to learn how to create an application that uses these technologies?
Please advise.

Best regards,

FC

PS: I hope I am not off topic.


Hi
I think that the most simple and best way, on win32, is WTL, but there
aren't books. You can look for a guide, or tutorial, here:
http://www.codeproject.com/wtl/
http://www.endurasoft.com/vcd/mfcwtl.htm
http://codeworks.gnomedia.com/wtl.php

For download WTL:
http://sourceforge.net/projects/wtl/
http://www.microsoft.com/downloads/d...displaylang=en

But when we speak about WTL, we do not have to forget ATL (ATL is very
complex because was created for developing COM applications, but you are
interested only the windowing part):
http://msdn.microsoft.com/library/de.../atlwindow.asp

Another way is gtkmm for linux and win32:
www.gtkmm.org

Best regards

Daniele
Jul 23 '05 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: Matthew Clubb | last post by:
Hi, I need help developing an expanding form I've decided that a use of PHP, Mysql and Javascript is the best platform for creating a selection of database interfaces which I'm trying to build...
3
by: Hal Vaughan | last post by:
I'm creating a sequence of JPanels that will each, in turn, be added to (then removed from) a window (kind of like a wizard). I want these panels to not only extend the JPanel class, but to...
0
by: Brett Selleck | last post by:
We have an issue where the JAXB generated classes are creating an interface which references itself. The Schema is valid, and I have not seen this ran into before. The code is below. What is...
2
by: Pawan | last post by:
Hi Guys, I have this current assignment where I have to develop online forms for local municipal authorities. I have to use adobe acrobat to create online forms from PDFs (which I have never done...
15
by: Carlos Lozano | last post by:
Hi, What is the right way to create an OCX COM component. The component is already registerred, but can't create an instance. I am using the reference to the interop module created. If I use...
1
by: Hasani \(remove nospam\) | last post by:
The way the system works is, you create a user control (ascx) that will be a template and must implement the interface IPageTemplate. You then create one or more user controls (ascx) that implement...
4
by: SH | last post by:
I wish to create a program (really a Windows Service) that sits and waits for a client PC to communicate with it, but I can't come up with a good method of doing so. I want to have a service...
12
by: Mats Lycken | last post by:
Hi, I'm creating a CMS that I would like to be plug-in based with different plugins handling different kinds of content. What I really want is to be able to load/unload plugins on the fly without...
31
by: JoeC | last post by:
I have read books and have ideas on how to create objects. I often create my own projects and programs. They end up getting pretty complex and long. I often use objects in my programs they are...
0
by: hypeartist | last post by:
I need to create interface "on-the-fly" so it "reflects" some class (mainly it's properties). Here's how I do this: public class Transformer { private const TypeAttributes...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.