Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

Coding Forum


You are currently viewing our Coding Forum as a guest. Please register to participate.
Login



Reply
Web Scripting And Program Scripting? help...
Old 03-15-2007, 02:22 AM Web Scripting And Program Scripting? help...
The PHP Professor

Posts: 340
Name: Alex
Location: Behind You
Trades: 0
Ok, i have not 1 clue as to where this post should go but i need some help creating a program for my website, and for my users destops, mainly windows and maby windows vista.
I currently own many computers, and have both windows and windows vista, so testing isnt an issue.
Now lets get to the point, i need to create a desktop program that installs and is like a web browser execpt, cannot go to other urls by an address bar and has settings that can be stored on users computer. Can anybody help me here??!!
microcolt is offline
Reply With Quote
View Public Profile Visit microcolt's homepage!
 
 
Register now for full access!
Old 03-15-2007, 04:35 AM Re: Web Scripting And Program Scripting? help...
chrishirst's Avatar
Missing! presumed drunk.

Posts: 41,517
Name: Chris Hirst
Location: Blackpool. UK
Trades: 0
And what languages can you code in

Visual Basic, C++, Delphi,
__________________
Chris. ->> Links are advertising NOT optimising!! <<-
A foolish consistency is the hobgoblin of little minds
Thought for today:- I SEO the only industry where all the cowboys are Indians?
chrishirst is online now
Reply With Quote
View Public Profile Visit chrishirst's homepage!
 
Old 03-15-2007, 03:51 PM Re: Web Scripting And Program Scripting? help...
The PHP Professor

Posts: 340
Name: Alex
Location: Behind You
Trades: 0
Quote:
Originally Posted by chrishirst View Post
And what languages can you code in

Visual Basic, C++, Delphi,
well i cant do any but i was wondring if you knew where i would find a tutorial on how to
microcolt is offline
Reply With Quote
View Public Profile Visit microcolt's homepage!
 
Old 03-16-2007, 05:26 AM Re: Web Scripting And Program Scripting? help...
chrishirst's Avatar
Missing! presumed drunk.

Posts: 41,517
Name: Chris Hirst
Location: Blackpool. UK
Trades: 0
While it's not a major task for an experienced programmer, I wouldn't recommend something like that as a starting project.

You need to decide what language you are going to work in, buy the development tools and compilers, then look for tutorials.

Other than than you would be limited to VBScript (.vbs files) which could run on a users desktop and use the installed browser but this would preclude this
Quote:
cannot go to other urls by an address bar
The other option is writing code that used the .net framework (VBScript, C#, J# or one of the many other languages)
__________________
Chris. ->> Links are advertising NOT optimising!! <<-
A foolish consistency is the hobgoblin of little minds
Thought for today:- I SEO the only industry where all the cowboys are Indians?
chrishirst is online now
Reply With Quote
View Public Profile Visit chrishirst's homepage!
 
Old 03-16-2007, 08:16 PM Re: Web Scripting And Program Scripting? help...
The PHP Professor

Posts: 340
Name: Alex
Location: Behind You
Trades: 0
Quote:
Originally Posted by chrishirst View Post
While it's not a major task for an experienced programmer, I wouldn't recommend something like that as a starting project.

You need to decide what language you are going to work in, buy the development tools and compilers, then look for tutorials.

Other than than you would be limited to VBScript (.vbs files) which could run on a users desktop and use the installed browser but this would preclude this

The other option is writing code that used the .net framework (VBScript, C#, J# or one of the many other languages)
well do you know a program that will allow me build other programs, like for a starter?
microcolt is offline
Reply With Quote
View Public Profile Visit microcolt's homepage!
 
Old 03-16-2007, 10:54 PM Re: Web Scripting And Program Scripting? help...
ForrestCroce's Avatar
Half Man, Half Amazing

Posts: 3,023
Name: Forrest Croce
Location: Seattle, WA
Trades: 0
Actually you can do what you want ( more or less ) with VB.NET, or C#, or even J#. You can download any of these from MSDN, in fact, you can get a free, but somewhat limited version of the programming tools.

I think Chris's point is that it would benefit you to understand the concepts in programming before trying to do something that would be a bit complex. Writing software is a bit like trying to teach something to a child with very little imagination. I'm going to give you some advice, but it might not make a lot of sense.

There's a WebBrowser control you can drop onto a form, and simply not put an address bar at the top. In code ( like on the form load event ) you can send it to a particular URL, and the user can click links, view source from the context menu, and all of that. You'll have to build the back / forward / stop buttons, and wire them up to the control, but you won't have to write much logic. You'll have to distribute two dlls with your exe.

The link above goes to C#; VB might be an easier language to learn, I don't really know. I've used both of them for years, and really they're about the same. The languages themselves are different, but the object libraries are the same. C# is a little more terse, which translates to less typing, and less reading when you need to go back and change your code later.

Now ... why would anybody want to use a browser like this? One where you can't tell it what URL to go to? ( A person could still make a text file, type <a href="the url I want to go to">click here</a> and drag it onto the browser to load it, then click their link to navigate; you'll need to hook into the drag and drop stuff to fix that. ) Unless this is for your employees and you plan to disable IE somehow, I don't think this is going to be a very popular app...?
__________________

Please login or register to view this content. Registration is FREE
|
Please login or register to view this content. Registration is FREE
|
Please login or register to view this content. Registration is FREE
ForrestCroce is offline
Reply With Quote
View Public Profile Visit ForrestCroce's homepage!
 
Old 03-18-2007, 01:56 AM Re: Web Scripting And Program Scripting? help...
The PHP Professor

Posts: 340
Name: Alex
Location: Behind You
Trades: 0
Thanks soo much, but the point was to make a prigram tha twouild connect to a webpage where they could use certain items but it would be on there desktop as an app, thank so much for your help!
microcolt is offline
Reply With Quote
View Public Profile Visit microcolt's homepage!
 
Old 03-19-2007, 04:55 PM Re: Web Scripting And Program Scripting? help...
Learning Newbie's Avatar
Defies a Status

Latest Blog Post:
Astounding Republican Paranoia
Posts: 5,662
Name: John Alexander
Trades: 0
Quote:
Originally Posted by microcolt View Post
Thanks soo much, but the point was to make a prigram tha twouild connect to a webpage where they could use certain items but it would be on there desktop as an app, thank so much for your help!
That's exactly what ForrestCroce just told you how to do. That's exactly why ChrisHirst suggested learning to program before embarking on a project like this.
Learning Newbie is offline
Reply With Quote
View Public Profile
 
Old 03-21-2007, 10:01 AM Re: Web Scripting And Program Scripting? help...
willcode4beer's Avatar
Super Moderator

Posts: 1,533
Name: Paul Davis
Location: San Francisco
Trades: 1
Quote:
Originally Posted by ForrestCroce View Post
You'll have to distribute two dlls with your exe.
You could also make really big executable by static linking and not have to distribute the dll's.
Besides C#, it'd be about the same using the GCJ with SWT (to get the browser control).
__________________

Please login or register to view this content. Registration is FREE

willcode4beer is offline
Reply With Quote
View Public Profile
 
Old 03-21-2007, 01:00 PM Re: Web Scripting And Program Scripting? help...
The PHP Professor

Posts: 340
Name: Alex
Location: Behind You
Trades: 0
Quote:
Originally Posted by willcode4beer View Post
You could also make really big executable by static linking and not have to distribute the dll's.
Besides C#, it'd be about the same using the GCJ with SWT (to get the browser control).
ok i am a noob to computer coding so what does SWT and GCJ stand for and what is the definition of C++
microcolt is offline
Reply With Quote
View Public Profile Visit microcolt's homepage!
 
Old 03-22-2007, 08:12 AM Re: Web Scripting And Program Scripting? help...
chrishirst's Avatar
Missing! presumed drunk.

Posts: 41,517
Name: Chris Hirst
Location: Blackpool. UK
Trades: 0
GCJ = Gnu Compiler for Java

SWT = Software Widget Toolkit
__________________
Chris. ->> Links are advertising NOT optimising!! <<-
A foolish consistency is the hobgoblin of little minds
Thought for today:- I SEO the only industry where all the cowboys are Indians?
chrishirst is online now
Reply With Quote
View Public Profile Visit chrishirst's homepage!
 
Old 03-22-2007, 03:14 PM Re: Web Scripting And Program Scripting? help...
Learning Newbie's Avatar
Defies a Status

Latest Blog Post:
Astounding Republican Paranoia
Posts: 5,662
Name: John Alexander
Trades: 0
"C++ = C With Classes"
Learning Newbie is offline
Reply With Quote
View Public Profile
 
Reply     « Reply to Web Scripting And Program Scripting? help...
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 0.35108 seconds with 12 queries