<applicationSettings>
<WindowsApplication1.My.MySettings>
<setting name="Astrology" serializeAs="String">
<value>6</value>
</setting>
<setting name="Cricket" serializeAs="String">
<value>7</value>
</setting>
<setting name="Foreigncurrency" serializeAs="String">
<value>8</value>
</setting>
<setting name="Jobs" serializeAs="String">
<value>9</value>
</setting>
</WindowsApplication1.My.MySettings>
</applicationSettings>

I want to display 6, 7, 8, 9 in different textboxes.
How can I do that in VB.NET2005
Please help

Recommended Answers

All 3 Replies

Have you tried

txtbox1.text = My.Settings.Astrology
txtbox2.text = My.Settings.Cricket
txtbox3.text = My.Settings.Foreigncurrency
txtbox4.text = My.Settings.Jobs

Thanks for your reply ptaylor965 it helped me.
THANKS ALOT.

Is there any other method??????

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.