Appconfig File With .net Windows Application?
Nov 30, 2009
i cant read database connection strings from my appconfig file with my vb.net windows application.
appconfig file is like this
<appSettings> <add key="SQLConnString" value="Data Source=server1;Initial Catalog=dbtest;User Id=sa;Password=pass123;"/> </appSettings>
i want to insert some datas into database
View 2 Replies
ADVERTISEMENT
May 3, 2012
I am getting the error "Object reference not set to an instance of the object" Debugger is suggesting to use the "New" keyword to create an object instance, or to Check to determine if the object is null before calling the method. Error is occurring on line 27: "sReturn = ConfigurationManager.ConnectionStrings(strConnection).ConnectionString" I;m not sure where to go from here.
First, my appconfig connstrings:
<connectionStrings>
<add name="con1"
connectionString="Data Source=VMXP/SQLEXPRESS;Initial Catalog=Interview;Integrated
[Code]....
View 14 Replies
Jun 22, 2009
I have a list box with a collection of items; Can I save user selection the next time the program opens by using Application Settings tab and property Binding?
View 39 Replies
Jul 4, 2011
I am having a windows application. That downloads files from server and write into the local directory. It works fine. When we try the same appliication in Windows 7. IT shows an error Access to the path denied (While writing to the local directory).
View 1 Replies
Apr 25, 2010
dll file in my windows form application. how to use the .dll shared functions. I am trying to use functions in the same .net .dll file but it gives me an error "Reference to a non-shared member requires an object reference. I tried but I could not solve it,
View 2 Replies
Jun 4, 2012
I am creating DLL file using c# .For that i need one DLL file. That is created in VB.so i just i add that dll file into my project via add reference option.But when run the projects am getting this error.
Could not load file or assembly 'BOL3, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' or one of its dependencies. The system cannot find the file specified.
View 1 Replies
May 25, 2011
I am trying to write a code to save and open data that is in my application. My application contains hundreds of text boxes, combo boxes and labels. I have created an array for each set of data, i.e.,
glist(0).store=combobox1.value
glist(0).cat=combobox2.value
glist(0).it=label3.text
glist(0).quan=label4.text
glist(0).total=label5.text
up to glist(89).
Is there a way to write a code to loop through the array and save the values so that they can be opened at a later time in my application? The array will contain Doubles and Strings.
View 4 Replies
May 20, 2011
In my project one task is there in that one logfile is sent to any webserver.For[URL]...How to send a logfile to any webserver.
View 1 Replies
Jun 29, 2009
In my project one task is there in that one logfile is sent to any webserver
View 2 Replies
Apr 6, 2011
Not sure whether this is possible, but I'm creating a file encoding applcation. When a file is decoded, it is saved temporarily in a temp directory, after which it can be opened regularly. However, I actually need to be certain the file is removed as soon as the application that has opened it, has closed it (e.g. has shut down). Otherwise, the decoded (secret) file is just hanging in the temp directory without supervision.
[Code]...
View 3 Replies
Jan 23, 2010
An application data file, created by my own VB program, is visible to read and save from that application, but is not visible from Windows Explorer or Notepad. The icon, visible from my VB program, shows a lock. How can I remove the lock and see the program with Windows Explorer. (I need to copy to a another computer to use in a workshop next week.)
View 2 Replies
Jun 9, 2011
in windows form in button click event how to export the file in a location select by showdialog & it will be delete permanently at a same time.How can i do this because in .net it will produces error "IO Exception was unhandled" or "The process can not access the file because it is used by anather process." .In button click event how to export the file & delete at same time in vb.net windows application.
View 5 Replies
May 21, 2011
I have made a text editor in vb2008 and I need it to get it open a text file when I double click it in windows explorer
View 6 Replies
May 16, 2007
How can i read my connectionstrings value which i stored in my app.config file (for windows application)?
i tried many times to use more than one option but i could not do it.
i am using VB.NET 2005 with framwork 2.
View 3 Replies
Mar 7, 2009
I have a small Windows Application that displays a .chm Help File when F1 is pressed. What I would like to do is to close the Help Display programatically for example when a Reset Button is clicked and the Form is 'Reset'.
View 2 Replies
Jan 30, 2011
I am creating a windows application using visual studio. I want somehow to insert an excel file into the application so the user will be able to download it from the program and save it to his computer. This means that the file will be a part of the program. There will be a button that will prompt the user to save the particular file somewhere so he can then view it.
What should I do in order to "embody" the excel file to the application? And what code should I write to link the file with the button?
View 8 Replies
Feb 19, 2011
im making some stuff using VB 2010 recently (im new to VB 2010) and well...i wanna make it into an executable file, how do i do it?
View 1 Replies
Jan 18, 2011
What I am trying to do is I have a .dat file that I cannot read but can at the same time. What I mean is I know how to decipher it by hand (alas takes minutes per 6 parts and there are thousands.) I am trying to make an application that can read this and allow me to edit it from my computer. I can open this with a hex program such as hex editor neo. I am currently trying to get it so I can read the file and have it place corresponding parts in to text boxes that I can alter to suit my needs.
I am new to visual basic and know a tiny bit about C++ if you think I would be better off trying in C# I can try that as well I do know some since learning c++. There are 41 parts to each item listed in the file and each one would need to go in its own text box. In hex there are 348 blocks that need to be arranged in corresponding order. Also the beginning of the file has 6 block followed by a code for each item. I need to find a way to put all the correct code in the correct text box and have it make sense.
View 7 Replies
Jan 12, 2009
If I create a windows application. Where is the file for app.config? Can I modify it?
View 9 Replies
May 20, 2009
i need to create a win app with a swf in it. how do i do that.
View 10 Replies
Sep 20, 2010
I'm using vs2010 and can't get this to work. The same code has worked in earlier versions. What has changed?
config file:
<appSettings>
<add key="ConnectionString" value="Data Source=MikeLaptop;Initial Catalog=AdventureWorksDW2008R2;Integrated Security=True"/>
</appSettings>
Code:
Dim strProvider As String = ConfigurationManager.AppSettings("ConnectionString")
strProvider is always = nothing
How to do this now?
View 6 Replies
May 27, 2011
how to send a file to any website using http protocol in vb.net windows application?
View 3 Replies
May 27, 2011
How to send a file to any website using http protocol in vb.net windows application
View 1 Replies
Feb 20, 2012
in my application, to get the path I use the following code.
Dim path As String
Dim asm As [Assembly] = [Assembly].GetExecutingAssembly()
path = System.IO.Path.GetDirectoryName(asm.GetName().CodeBase)
this gives path as Application Data, But i need Program Files to locate the .sdf file. how to get this path?
View 2 Replies
Mar 14, 2009
how should i copy a file in system32 folder from resources folder .resx file of my windows application?
View 1 Replies
Jul 6, 2009
I am running vb.net in visual studio 2005 and i am fairly new to it all, whilst trying to create a windows application i have lost the .vbproj file and am only left with the .vb code that has been created whilst i have been using the toolbox to create the application graphically. Is there anyway for me to recover the .vbproj file without having to redo the whole thing?
View 3 Replies
Jun 9, 2011
in windows form in button click event how to export the file in a location select by showdialog & it will be delete permanently at a same time.How can i do this! because in .net it will produces error "IO Exception was unhandled" or "The process can not access the file because it is used by anather process." .In button click event how to export the file & delete at same time in vb.net windows application.
View 1 Replies
Mar 12, 2009
how to load a .bak file of database backup in sql server 2005 using vb.net 2008 windows application?
View 5 Replies
Feb 3, 2012
Is it possible to use microsoft access database for Windows mobile application and save this mdb file locally in the pocket pc?because im trying to make an application to connect to mdb database but this imports seems to be not working.
HTML
Imports System.Data.oledb
oledb is not a member of system.data. why?
View 1 Replies
Jan 22, 2011
I have developed a VB 2010 express application that works on my windows 7 machine, but when I deploy it to other windows 7 machines the application will not run at all. I created an msi script to install the software on other machines and it includes the .NET 4.0 framework an all of my application dll's and such. Any idea what might be he problem?
View 2 Replies