Jump to content

Simple Programming for Desktop Application

- - - - -

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

#1
cakka

cakka

    Programmer

  • Members
  • PipPipPipPip
  • 192 posts
Hi i want to learning about desktop application , focus on windows based.
What the simple programming codes that i can learn ?

Now i have understand with PHP, MySQL, Javascript , CSS , HTML & XHTML.

And please give me the resources , where i can learning from zero.
Because i don't have any experience with Desktop Application Development.

Thanks

#2
Guest_Jordan_*

Guest_Jordan_*
  • Guests
You really have a lot of choices and it depends on which language you prefer. Since you know PHP you could pick up C++, C# or Java fairly easy. You can find some beginner guides in our tutorial section: http://forum.codecall.net/tutorials/

#3
morefood2001

morefood2001

    Speaks fluent binary

  • Members
  • PipPipPipPipPipPipPipPip
  • 1,720 posts
Personally, I think that php to java will be the easiest transition to make :)

#4
John

John

    Writes binary right handed and hex left handed

  • Moderators
  • 6,321 posts
Since you already know PHP, you can use PHP-Gtk to create your desktop applications. :)

#5
cakka

cakka

    Programmer

  • Members
  • PipPipPipPip
  • 192 posts
PHP GTK ? Nice idea :)
Are the application that created with that can be extracted to executable file ?

Thanks

#6
morefood2001

morefood2001

    Speaks fluent binary

  • Members
  • PipPipPipPipPipPipPipPip
  • 1,720 posts
I would veer away from PHP GTK because PHP is made for websites, not for applications lol You can get away with it, but PHP wasn't built to run on a desktop as much as it was to serve a webpage.

I would love to see a comparison of PHP vs Java on benchmarks, but thats for another thread and time :p

#7
cakka

cakka

    Programmer

  • Members
  • PipPipPipPip
  • 192 posts
So how about with VB and JAVA ?
For Java which that used for Desktop Application ?
Are J2ME , J2EE, or J2SE ?

VB are 2 kinds , VB and VB.net ?
What the different ?

Thanks

#8
morefood2001

morefood2001

    Speaks fluent binary

  • Members
  • PipPipPipPipPipPipPipPip
  • 1,720 posts
VB and Java are 2 different programming languages, but both were made to run on pcs as applications, Its just that Java was built to run in a virtual emulator (the Java Runtime Environment) while VB was made to run in windows only.

VB is the old VB.net if I'm not mistaking.

#9
WingedPanther

WingedPanther

    A spammer's worst nightmare

  • Moderators
  • 16,831 posts
VB6 does not use the .NET runtime environment. It's programs do tend to need the vbrun.dll, however.
Programming is a branch of mathematics.
My CodeCall Blog | My Personal Blog

#10
marwex89

marwex89

    Writes binary right handed and hex left handed

  • Members
  • PipPipPipPipPipPipPipPipPip
  • 10,720 posts
C# could also be an alternative, if you stick to Windows. Java, C# - it's all the same...
Hey! Check out my new Toyota keyboaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa

#11
cakka

cakka

    Programmer

  • Members
  • PipPipPipPip
  • 192 posts
C# , are that is more easy than VB ?
Oh yeah what the application for design their lay out ?
Example, i want to create a nice design that properly that with the application.

If in website development, i always using html and CSS for design .
And for fastest way is using Dreamwaver.

Thanks

#12
carly

carly

    Learning Programmer

  • Members
  • PipPipPip
  • 34 posts
On Windows, just use C or C++ and win32 api . You can do everything.