display in textboxes Programming Software Development by bcm <applicationSettings> <WindowsApplication1.My.MySettings> <setting name="…> </setting> </WindowsApplication1.My.MySettings> </applicationSettings> I want to display 6, 7, 8, 9 in… Application (Windows) changing path after print a document! please help Programming Software Development by katarey …C:/program files/application folder/Application Settings folder/applicationSettings.data[/code] (encrypted Text file) application… program and found that the application searching applicationSettings.data file in wrong location [code] …program files/application folder/Application Settings folder/applicationSettings.data [/code] I am not sure … Re: Application (Windows) changing path after print a document! please help Programming Software Development by nick.crane How are you getting the path to your[I] applicationSettings.data[/I] file? Is this a hard coded text path …like this [iCODE]appdatapath = @".\Application Settings folder\applicationSettings.data";[/iCODE]? Or perhaps you use [I]Environment.CurrentDirectory… Re: Application (Windows) changing path after print a document! please help Programming Software Development by katarey I have tried to define the path variable of ApplicationSettings.data [code] const string _ApplicationSettingFolder = @"C:\program files\application … c+ config file? Programming Software Development by dondulla …quot; /> </sectionGroup> <sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=2.0…</Blue2_VB.My.MySettings> </userSettings> <applicationSettings> <Blue2_VB.My.MySettings> <setting name="… Exception thrown when utilising My.Settings Programming Software Development by SammiSmi …;configuration> <configSections> <sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=2.0…lt;/system.diagnostics> [COLOR="red"] <applicationSettings> <SACD.Winpirate.Batch.BatchInvoivingRequester.Console.My.MySettings configSource… Forms Authentication redirect issue server Programming Web Development by korathualex …;/> </sectionGroup> <sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=4…;errors callbackErrorRedirectUrl=""/> </devExpress> <applicationSettings> <ResumeManager.Properties.Settings> <setting name… reading and inserting in xml child nodes Programming Software Development by bcm … have created child nodes in app.config.xml file: <applicationSettings> <XML.My.MySettings> <setting name="…> </setting> </XML.My.MySettings> </applicationSettings> I want to insert values in this child nodes… Change through textbox!!!! Programming Software Development by bcm …="Green"]This is my app.config:[/COLOR] <applicationSettings> <WindowsApplication1.My.MySettings> <setting name="…> </setting> </WindowsApplication1.My.MySettings> </applicationSettings> I have displayed the values 6:00,7:00… Creating controls during runtime Programming Software Development by bcm … it be done using array? If yes then how? <applicationSettings> <WindowsApplication1.My.MySettings> <setting name="…> </setting> </WindowsApplication1.My.MySettings> </applicationSettings> [COLOR="Green"]Please help soon[/COLOR] Dataset and Connectionstring Problem Programming Software Development by b1izzard …="Assembly" Name="loginConnectionString1 (MySettings)" PropertyReference="ApplicationSettings.PAPv1._0.My.MySettings.GlobalReference.Default.loginConnectionString1" Provider="… Server Error /Application WCF Programming Web Development by Finarfin34 …; /> Line 45: </system.serviceModel> Line 46: <applicationSettings> Source File: C:\inetpub\vhosts\test\httpdocs\test\web… Re: display in textboxes Programming Software Development by ptaylor965 Have you tried txtbox1.text = My.Settings.Astrology txtbox2.text = My.Settings.Cricket txtbox3.text = My.Settings.Foreigncurrency txtbox4.text = My.Settings.Jobs Re: display in textboxes Programming Software Development by bcm Thanks for your reply ptaylor965 it helped me. [COLOR="Green"]THANKS ALOT[/COLOR]. Re: display in textboxes Programming Software Development by bcm Is there any other method?????? Re: Proper configuration files for any system Programming Software Development by codeorder You can also use the (ApplicationSettings) located in a control's Properties. For example, Label1: Double-…click or click the little arrow for (ApplicationSettings), which should be located at the very top of the… Re: Skinning C# Windows Applications Programming Software Development by zmariow … my form, right clicked, properties and then opened the "ApplicationSettings" tab (using the +). From there you can bind the… Re: Save input text [VB 2008] Programming Software Development by codeorder … = My.Settings.myCoolText End Sub End Class[/CODE] Or [B]ApplicationSettings[/B]. [URL="http://www.daniweb.com/forums/post1330523.html… Re: How to Change Fonts? Programming Software Development by TechSupportGeek … the **TextBox** and select **Properties.** On the Properties panel, expand **(ApplicationSettings)** and click on the three dots (**...**) button in **(PropertyBindings).** Find… Re: Opening all forms on the same screen as form1 Programming Software Development by Tim_8 … on. In each form (including form1) I changed two properties: ApplicationSettings.Location: MainFormLocation StartPosition: Manual This tells each form to launch… Re: Application (Windows) changing path after print a document! please help Programming Software Development by boyans If you know that printing can change the current directory just remember it before printing and restore it after printing: string temp = Directory.GetCurrentDirectory(); ......................do whatever Directory.SetCurrentDirectory(temp); Re: c+ config file? Programming Software Development by NicAx64 isn't there any documentation for this configuration file ? Unless we have to reverse engineer that program in source code level ( if you have the source code). The best thing is that email the ex-employee unless you have to fully reverse engineer this. Re: Forms Authentication redirect issue server Programming Web Development by JorgeM It would be helpful if you are a bit more clear on what the problem is and only post revelant code. Can you clarify as to what the problem is? You are being redirected to the wrong URL? Re: reading and inserting in xml child nodes Programming Software Development by ptaylor965 [B]You can read from both user and application settings but you can only write (save) user settings To Read: [/B]Dim Value as StringValue = My.Settings.Astrology Value = My.Settings.Cricket Value = My.Settings.ForeignCurrency Value = My.Settings.Jobs [B]To Write:[/B] My.Settings.Astrology = "6:00" My.Settings.Cricket = "7:… Re: reading and inserting in xml child nodes Programming Software Development by bcm [QUOTE=ptaylor965;457524][B]You can read from both user and application settings but you can only write (save) user settings To Read: [/B]Dim Value as StringValue = My.Settings.Astrology Value = My.Settings.Cricket Value = My.Settings.ForeignCurrency Value = My.Settings.Jobs [B]To Write:[/B] My.Settings.Astrology = "6:00&… Re: reading and inserting in xml child nodes Programming Software Development by ptaylor965 For Dim Value As [B]String[/B] = My.Settings.Astrology The setting must by in setup in the Settings Tab of "My Project" area Re: Creating controls during runtime Programming Software Development by Ramy Mahrous I don't really understand you but I'll answer your thread subject and I am sorry I'll write code in C# as I don't know VB.net at all :$ [code] private int GetNumberOfControls() { //returns the number of control to be created } private void CreateTextbox() { TextBox textBox; for(int i=0; i<GetNumberOfControls(); i++) { textBox… Re: Dataset and Connectionstring Problem Programming Software Development by finito [QUOTE]"Object Reference not set to an instance of an Object"[/QUOTE] This usually means no result from the Database, Like the connection is OK but there is no matching criteria. Can you point out where it shows this error, I mean what Line. Re: Dataset and Connectionstring Problem Programming Software Development by b1izzard [QUOTE] Can you point out where it shows this error, I mean what Line.[/QUOTE] In Solution Explorer Goto Properties->Settings -> Name:loginconnectionString1 Type: connectionstring scope:Application Value: "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=|DataDirectory|\Resources\login.mdb;Persist Security Info=True" When I try to … Re: Dataset and Connectionstring Problem Programming Software Development by finito OK, let me get this straight, Is there a DB in "|DataDirectory|\Resources\login.mdb"? Did this ever work? What do you change it to? Try Adding a new DB and then Delete the Old one (Data-> Show/Add Data Sources.)