How can I make a settings page in vb which can change the content of the app itself? - vb.net

I am making an app for companies so they can make a workreport in a blink of an eye by just tapping some togglebuttons and typing some text and the app makes a nicely laid out email and sends it to an Email address
What is need is:
A settings page where I can change the email address which it goes to
The texts of the textblocks and so on.
I just want to make an app which is adaptable for the user.
I know I need to use the isolated storage but I don't really know how to put it in VB so it can change the content of the things needed to be changed.

You can take a look at using My.Settings see this Microsoft Article http://msdn.microsoft.com/en-us/library/ms379611(VS.80).aspx once you save the settings from a form text box or other method of input, you can read the settings back on on form load and change the appearance of you application based on the user settings.

Related

vb.net: keep form always keep back and never got font by click

I want to make a desktop item manager program using vb.net.
I hope to create a form there and use the menus etc. to make the desktop icons work.
You want to set the form to always be behind the other windows. Like a widget.
How to do this?

how to prevent image download in outlook form region?

We did an outlook addin with form regions to add tracking pixel img into email message upon sending.
What we want to make sure is to not load that same image when user goes to sent items and opens that message after sending.
Is there a way to do it through form regions or maybe some other better way?
Loading images in the HTML of the message body is controlled by the application and the behavior cannot be modified with code. The option to automatically download embedded images is controlled in Trust Center settings, so you could toggle this on/off by editing the registry (it should be stored there, perhaps not) but changing the setting in code probably won't take effect until Outlook is restarted. If you need to control this on a per-message basis then you are probably out of luck.

Disable user from saving .aspx content from browser by using "saving as" option

I have a .net website.
I need to disable the save as option from browser so that the user cant save some of the website pages in order to protect their content.I did disable right click.But user can select save as from browser's menu.
Is it possible to do that?
It is difficult to lock down a website by disabling the save button. What is to stop a user just copying the text and pasting to another document. Right clicking an image and saving. Then there are differences between browsers etc. If you need to protect you information you may need to look at creating and displaying PDFs but this is also not an easy thing especially if the site is dynamic.
What you want is impossible. If the user is able to read the information on his/her screen, there is always an option to copy the content.
How would you stop the user from taking a picture from his/her screen with a digital camera for example?

How to send textfields content via email in the background?

I'm trying to make a simple view based application.
I want to receive information with the content of text fields when user filled text fields and hits the submit button.
The way I do this doesn't matter so much. It can be done by sending information to a web server or sending information to my e-mail in background. Actually it seems easier to do it via e-mail.
I just want to know what the user wrote on text fields when he hit the submit button.

Saving text in text boxes before submitting

Like in stackoverflow, I would like that if a user begins to enter text (lets say a lot of text) and נט accident closes the window (or goes back in the browser) when the user returns the unfinished text will be saved and displayed in that text box.
this without submitting.
Do I need to keep it in session[] or something similar?
Is it even possible doing it elegantly or do I need complex infrastructure to support it?
Thanks
You can't do this with a submit. You could do a silent ajax/jquery submittal to store the information. You could store it anywhere but it would depend on its sensitivity. A cookie generally works.