PDA

View Full Version : change home page ?


saricnet
08-08-2007, 12:01 PM
well, it`s to posible a change home page with ams 6.0 ( web browser ), something like Internet Explorer, to put any time different home page ?

regard
sorry for my english

saricnet
08-09-2007, 09:07 AM
anybody can answer my ?

wasim21k
08-09-2007, 09:40 AM
i know but sorry dont want to tell you as you are a new user and may be wanted to play with other people's pc, sorry m8

saricnet
08-09-2007, 04:45 PM
hm, i just want to a change that home page, i can`t understand you, i`m beginner...

wasim21k
08-10-2007, 03:22 AM
well all i meant i just dont want to give some short way to some one to change system settings (belive me i m the persone who share experience).

lahep
08-13-2007, 08:47 AM
well all i meant i just dont want to give some short way to some one to change system settings (belive me i m the persone who share experience).

come on man
we are here to help each other
If u dont wanna help just dont answer !

holtgrewe
08-13-2007, 08:57 AM
If you've created a web browser with AMS, then you must be priming it with some home page URL. You can store the home page URL in an external file, allow the user to change the contents of the (text, ini, or database file) that stores this URL of your home page.
I assume that's what you are looking for?

HTH

wasim21k
08-14-2007, 09:37 AM
holtgrewe,
thats not what saricnet want. he want if i run his app in my pc it change my home page to whatever.com defined in his app and i believe no one want that.


If you've created a web browser with AMS, then you must be priming it with some home page URL. You can store the home page URL in an external file, allow the user to change the contents of the (text, ini, or database file) that stores this URL of your home page.
I assume that's what you are looking for?

HTH

mz241508
08-14-2007, 09:47 AM
something like Internet Explorer
I believe he is trying to say that he wants to work a homepage management like IE.

Please confirm this or explain what you are exactly looking for saricnet. ;)

thats not what saricnet want. he want if i run his app in my pc it change my home page to whatever.com defined in his app and i believe no one want that.
How do you know he's not gonna use it for personal use?

Im just saying that be sure to know what they are asking before making a decisive reponse. :yes

Haydeng
08-14-2007, 09:50 AM
I love how everyone assumes that everyone else wants to do something bad.

Just save the name of the page to the registry and have ams call that entry. You can also allow the user to type the page they want to set as homepage into a input object and when they click an ok button it will write to the registry the url they typed in.

wasim21k
08-14-2007, 10:40 AM
well its bit difficult to tell what is in people's mind (i use to train people for IT and del or formate etc.was very very last commands i ever tell them) assuming that right on first day your first question how to change home page,
correct me if i m wrong but would you like if you download some ones app and it change ur home page?

saricnet
08-14-2007, 11:53 AM
i`m serbian and my english is so bad, just look the picture, and i hope you will understand

saricnet
08-16-2007, 01:41 AM
I love how everyone assumes that everyone else wants to do something bad.

Just save the name of the page to the registry and have ams call that entry. You can also allow the user to type the page they want to set as homepage into a input object and when they click an ok button it will write to the registry the url they typed in.


can you give to me some example

regard

Haydeng
08-17-2007, 06:13 PM
I haven't coded with AMS in a while so the code wont be right, but this is how its done:

button_OnClick
{
// Get, string sText = TextBox.Text.ToString (I forget how AMS does it)
// Set your Registry.SetValue with sText as data
}

form_OnLoad
{
// Get the value using string sURL = Registry.GetValue
// web.Navigate(sURL)
}

I Hope this helps