Reply
not sure if this is the right place for this...
Old 03-15-2008, 05:30 PM not sure if this is the right place for this...
Lashtal's Avatar
Ultra Talker

Posts: 251
Name: Lashtal
Was wondering if you could show me how to:

Make a .EXE file that:

Once downloaded,

instantly went to a particular website (of my choosing) automatically.
__________________
www.LuciferCosmetics.com
Lashtal is offline
Reply With Quote
View Public Profile
 
When You Register, These Ads Go Away!
     
Old 03-15-2008, 08:28 PM Re: not sure if this is the right place for this...
Mattmaul1992's Avatar
Ultra Talker

Posts: 440
Name: Matt
Not the right place. Er.. Go to general computing maybe?
__________________
PHP Code:
$talkupation++; 
http://www.forum-front.com/ - Free IPB forum hosting (releasing today!!!), no ads, free modifications
Mattmaul1992 is offline
Reply With Quote
View Public Profile
 
Old 03-15-2008, 08:53 PM Re: not sure if this is the right place for this...
NullPointer's Avatar
Will Code for Food

Posts: 467
Name: Matt
Location: Irvine, CA
This is more of a question for the coding forum. Also, what langauge are you coding in? When you say download do you mean download and open or just download? Generally a program has to be executed in order for it to do something.
__________________
http://tinsology.com/ - Under construction
NullPointer is offline
Reply With Quote
View Public Profile
 
Old 03-18-2008, 05:54 AM Re: not sure if this is the right place for this...
Lashtal's Avatar
Ultra Talker

Posts: 251
Name: Lashtal
What I mean is: a user downloads your .EXE and clicks the "run" button.

When the user clicks the "run" button, a window with your website's page pops up in response.


Is anybody familiar with what would need to be done to execute such a thing? I'm fairly new to the concept myself.
__________________
www.LuciferCosmetics.com
Lashtal is offline
Reply With Quote
View Public Profile
 
Old 03-18-2008, 07:33 PM Re: not sure if this is the right place for this...
Average Talker

Posts: 20
VB6 can do it.

Sample code is at pscode.com

I'll write the EXE for you for $25.
__________________
Brandon Doyle
http://doylesoft.com
doylesoft is offline
Reply With Quote
View Public Profile
 
Old 03-19-2008, 06:56 PM Re: not sure if this is the right place for this...
Learning Newbie's Avatar
Moderator

Latest Blog Post:
What Does This Look Like?
Posts: 4,737
Name: John Alexander
Quote:
Originally Posted by Lashtal View Post
Is anybody familiar with what would need to be done to execute such a thing? I'm fairly new to the concept myself.
IE does it. So does FF. Actually all browsers do it. What you want is probably a little different, just to piggy back on someone else's browser. I'm not sure why a person would download your exe file instead of just following a link, but that's your issue to solve.

You can get the free but full compiler and IDE here, from Microsoft. Start a Windows Forms project. Your code will look like this, in Program.cs

void main()
{
try
{
System.Diagnostics.Process.Start("http://www.web-site.com");
}
catch(Exception ex)
{
System.Windows.Forms.MessageBox.Show(ex.Message);
}
}
__________________
4 ways to improve the lives of the "bottom billion"

"HEY YOU KIDS GET OFF MY LAWN!" -John McCain
Learning Newbie is offline
Reply With Quote
View Public Profile
 
Old 03-19-2008, 07:03 PM Re: not sure if this is the right place for this...
joder's Avatar
Flipotron

Posts: 6,361
Name: James
Location: In the ocean.
Thankfully, the browsers have a cancel or no option.
joder is offline
Reply With Quote
View Public Profile
 
Reply     « Reply to not sure if this is the right place for this...
 

Thread Tools

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

vB 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.14688 seconds with 13 queries