Sorry I am lost in this. I am a network admin and I have millions of these config files, they all have these keys that need to be set to the same exact value. The value is a long complex string value...
We have these xml formatted .config files that come with all our ASP.NET programs. Well they have keys that need to be populated and I am unable to understand how to create a variable in...
Well the user is selecting to restore a database. A restore Window opens and they restore their new database. The restore window then needs to close and pass the new database name to the main...
The primary difference I see here is that you are passing the textbox into the function. I re-wrote my code exactly like yours into my class, however I get the following error when...
Speaking of Global Variables and access. How do I get my background worker to access a varaible. It doesn't even seem to be able to see member variables. Simple example:
I use global variables often because I will have say one function that sets the variable and it might call a function that needs the variable and I can pass the variable to that function so all is...
My first data driven programs I used things like .txt documents and excel for a database engine. Terrible mistake, the thing about SQL that can be overlooked by a first time programmer is that it...
Ok I did a little research on how to work with classes and it is sort of working out. Each .cs file has a class. One class is called MainWindow, another is called Backup.
I always like to break a project like this down into smaller challenges and tackle one at a time. The first step may be to download SQL Server Express and start researching how to work with a SQL...
I have multiple .cs documents in the same project. The first project I was able to pass data back and forth by creating a public string function. But for some reason in my new...
Oh, I guess I need to mention I am not generating any elements on C#. The GUI is in a .xaml file and it is initialized in the InitializeComponent(); function. So the GUI is ready to go before I call...
He is not doing his job. I had some functions to run when my program is open and I noticed that the GUI was not coming up until the functions were completed.