Welcome Guest ( Log In | Register)



2 Pages V  < 1 2  
Reply to this topicStart new topic
> How Do I Create Programs?
niloc
post Oct 29 2005, 01:44 PM
Post #11


Advanced Member
*******

Group: Members
Posts: 136
Joined: 8-October 05
Member No.: 12,657



for me visual basic was the easiest to pickup.

to see if it suits you , use the vba version of visual basic in excel.
this will let you add buttons , text boxes , etc to spreadsheets.
it will give you a little insight into using visual basic commands.
Go to the top of the page
 
+Quote Post
michaelper22
post Nov 9 2005, 01:06 AM
Post #12


-=Hybrid Bus=-
*********

Group: Members
Posts: 742
Joined: 2-November 05
From: My hybrid bus (in NYC), a computer
Member No.: 13,709
Spam Patrol



I originally started working with Visual Basic 6, but then moved on to working with Visual Basic 2005 Express Edition (a .Net version, part of the Visual Studio 2005 family). This tool, according to Microsoft, makes it easy for hobbyists and entusiasts to join the programming bandwagon. With Windows Forms, making a browser is incrediblaly easy; and a calculator is easy in VB6 too.
Go to the top of the page
 
+Quote Post
iGuest
post Oct 29 2007, 01:35 PM
Post #13


Hail Caesar!
*********************

Group: Members
Posts: 5,876
Joined: 21-September 07
Member No.: 50,369



Hi guys, I'm new into programming, currently trying to give my Networking career a break.

Could someone tell me, C# or XML I want something that can keep me clued to my PC for many months to come.

I'm already enjoying VB.NET and Visual Studio.Net,

confused which one to take between C# or XML,
tryed C++,
Java, I just do not get it.

-Tums
Go to the top of the page
 
+Quote Post
Bruce517
post Dec 29 2007, 04:52 AM
Post #14


Newbie [Level 2]
**

Group: Members
Posts: 34
Joined: 28-December 07
Member No.: 55,404



google search c++ learn as much as you can about it, although if you are not serious about learning it you will go nowhere it will take a long time before you can create a browser....
Go to the top of the page
 
+Quote Post
iGuest
post Jan 12 2008, 04:07 PM
Post #15


Hail Caesar!
*********************

Group: Members
Posts: 5,876
Joined: 21-September 07
Member No.: 50,369



build small program
How Do I Create Programs?

I like very much to work with computer and I have curiosity how create small program

-endri
Go to the top of the page
 
+Quote Post
tobias7
post Feb 12 2008, 02:48 AM
Post #16


Newbie
*

Group: Members
Posts: 7
Joined: 5-February 08
From: USA
Member No.: 57,372



I'd recommend a scripting language called AutoIt for beginners (and pros). The official website is www.autoitscript.com. It's a little known programming language, but it's very powerful for everyday computer tasks and it's pretty easy to use. One of the best things about it is that to use it, all you have to do after you install the program is right-click the desktop, click new, and select AutoIt Script. You can also right click the .au3 file and click compile to get a .exe that pretty much anyone should be able to run. Compared to other programming languages I've used, where I've had to spend hours figuring out how to make a .exe, this is quick and painless. The installer will also install a help shortcut, found under start, all programs. AutoIt's help file is very well organized, compared to languages like C or Java, where you really need a book to understand how to program in the language. One last interesting note is that AutoIt has no variable types, instead it takes care of everything behind the scenes. This is another reason why it's a good language for someone who has little programming experience.

Now where the language gets really interesting for beginners and pros alike is its basic functions. AutoIt has several basic functions that simulate the mouse and the keyboard. There are also basic functions that tell you if a given window is open. So, for example, if you move a bunch of fonts into your main font directory, and some of them are duplicates, windows has the annoying feature that it will pop a message box everytime it finds a duplicate asking if you want to replace the file, pausing everything until you respond. With AutoIt, you can create a program like this:

While 1
If(WinActive("Insert message box name here")) Then Send("{ENTER}")
Sleep(100)
WEnd

Let the program run, and it should answer all of those annoying message boxes for you!

P.S. I actually created this program once for my poor mom, who, while moving fonts, all of a sudden found herself answering hundreds of message boxes
Go to the top of the page
 
+Quote Post
nirmaldaniel
post Jun 3 2008, 09:34 AM
Post #17


Super Member
*********

Group: [HOSTED]
Posts: 215
Joined: 7-June 07
From: India
Member No.: 44,356



Hey this is a Quite diffrent questions , First step you need to take here is that learn the basics of programming , start with C even though C is a procedural oriented programming language in C only one learns the Fundementals such as the Looping etc. and so after getting along with the Basic move to an Application oriented language and choose a platform for developing the applications such as calculator or whatsoever you want , just i can suggest you to learn C# and choose Dot Net, i mean C# Dot net where you can create both server centric applications and web centric applications.
Go to the top of the page
 
+Quote Post
iGuest
post Jun 3 2008, 05:01 AM
Post #18


Hail Caesar!
*********************

Group: Members
Posts: 5,876
Joined: 21-September 07
Member No.: 50,369



ip unmasker
How Do I Create Programs?

Hey guys I want to make programs to unmask ip's and creat a other programs like that. What kinda learning cources should I take then? Ive been woundering how to creat them for a while and ill be glade if you could help!
(I ounly want the ip unmasker becouse I'm sick of people trying to come on my "teamspeaks" (www.Teamspeak.Com) and not be able to countact any one about it.) Thanks!
Go to the top of the page
 
+Quote Post

2 Pages V  < 1 2
Reply to this topicStart new topic

Collapse

> Similar Topics

Topics Topics
  1. Need Help With My Python Programs(11)