"ahmad12" <> wrote:
> I want to learn programming ( Database programming ) what
> is the best language with beautiful GUI I have to learn ????
>
> Please, give me some links to the best language and some
> important links in that area.
I do not think this newsgroup is the best place for you to ask about db
programming, it is for the Windows Vista operative system. Head over to
Microsoft Developer Network and browse the information there for a while,
before you decide on a MSDN Forum or newsgroup to post in.
You are not giving us much to work on with your question, but here is my two
pennies worth:
Databases and GUI's are two different things. In order to make a "beautiful
GUI" for a database, you will have to learn both the database and a language
you can use to create an interface for it.
If you want to work with Microsoft technologies, you should take a look at
Access and SQL Sserver, the first being the easiest one to learn and
providing interfaces without doing much programming. Programming Access is
usually done with VB macros, SQL Server databases are usually accessed
through some kind of application programmed in a .NET language. The two most
popular programming languages are powerful C# and easy-to-learn Visual
Basic, you should also familiarise yourself with ADO and ASP if you are into
web db development.
Of course, there are other non-MS alternatives as well, such as Oracle and
various SQL db's. In web development, open source MySQL db and PHP scripting
are popular technologies working in concert. They will run on both Windows
and Linux servers, the latter usually being a cheaper alternative, at least
if you use a web host.
MSDN Communities:
http://msdn2.microsoft.com/en-us/aa497440.aspx
MSDN - Beginner Developer Learning Center:
http://msdn2.microsoft.com/en-us/beginner/default.aspx
MSDN - SQL Server Developer Center:
http://msdn2.microsoft.com/en-us/sqlserver/default.aspx
MSDN - ASP.NET Developer Center:
http://msdn2.microsoft.com/en-us/asp.net/default.aspx
MSDN - Data Platform Development:
http://msdn2.microsoft.com/en-us/data/default.aspx
Microsoft Office Access:
http://office.microsoft.com/en-us/access/default.aspx
MySQL Developer Zone:
http://dev.mysql.com/
PHP:
http://www.php.net/
Charlie42