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
Professional Software Development Tools
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
anybody can answer my ?
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
hm, i just want to a change that home page, i can`t understand you, i`m beginner...
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).
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
I believe he is trying to say that he wants to work a homepage management like IE.Originally Posted by saricnet
Please confirm this or explain what you are exactly looking for saricnet.
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.![]()
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.
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?
i`m serbian and my english is so bad, just look the picture, and i hope you will understand
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