CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: DeepThought

Page 1 of 2 1 2

Search: Search took 0.02 seconds.

  1. Replies
    4
    Views
    753

    Re: Variables in xml

    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...
  2. Replies
    4
    Views
    753

    Variables in xml

    Hello,

    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...
  3. Replies
    1
    Views
    1,329

    Bamboo anyone?

    Is anyone familiar with the program Bamboo for automating builds. I have some questions.

    How do I only build if there is commits detected?

    If a build fails, how do I transfer the notes from...
  4. Re: Updating an element in another wpf window

    Ok, looks like I have a lot of reading ahead of me.
  5. Re: Updating an element in another wpf window

    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...
  6. Updating an element in another wpf window

    Hello,

    If I have the following function in my class.




    public string setTextblock1
    {
    set
  7. Replies
    17
    Views
    2,350

    Re: What is programmed in C-sharp?

    Interesting, so I take it if you write a program in C++ it does not require the framework to run.

    That alone is worth using it for!
  8. Re: Working with multiple .cs documents, passing data back and forth

    Got it, thanks!
  9. Replies
    17
    Views
    2,350

    Re: What is programmed in C-sharp?

    Oh I see it a lot on requirements for job postings. What are the advantages to C++ I can do int++ in C# as well :P
  10. Re: Working with multiple .cs documents, passing data back and forth

    Ok, so it helps me keep track of what is what by using different cs files with the same name as the UI file.
  11. Replies
    17
    Views
    2,350

    Re: What is programmed in C-sharp?

    I think it is also one of the most popular languages for video games and physics engines.
  12. Re: Working with multiple .cs documents, passing data back and forth

    In my .xaml I have a reference to a Class such as

    <Windows x:Class="SQLGuide2.MainWindow"

    I noticed that this only gives MainWindow access to the elements in this .xaml file.

    Is it ok to...
  13. Replies
    14
    Views
    2,922

    Re: How to define global variables

    Hi Darwen,

    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...
  14. Replies
    14
    Views
    2,922

    Re: How to define global variables

    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:




    string temp = "";
    ...
  15. Replies
    14
    Views
    2,922

    Re: How to define global variables

    Oh I guess I have been using "Member variables" because they are only global within my class. I only have 1 Class though so in a way its "Global"
  16. Replies
    14
    Views
    2,922

    Re: How to define global variables

    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...
  17. Replies
    3
    Views
    1,501

    Adding value and display to a ComboBox

    Hello,

    When I add an item to a combo box like this:

    combobox1.items.add("My Folder");

    Then I get My Folder in the combobox but the value of this item is also My Folder.

    How can I add a...
  18. Re: Best way to develop my program need guidence

    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...
  19. Re: Working with multiple .cs documents, passing data back and forth

    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.

    From MainWindow I can...
  20. Re: Best way to develop my program need guidence

    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...
  21. Working with multiple .cs documents, passing data back and forth

    [.Net 4.0]

    Hello,

    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...
  22. How does Google Chrome get tabs up into the Window Title Bar?

    When I open Chrome in Win7 the tabs are actually in a larger version of the transparent title bar. It looks really slick. Can you do this in XAML?

    I know that the transparency options in XAML are...
  23. Replies
    2
    Views
    790

    Re: Where did my background worker go?

    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...
  24. Replies
    2
    Views
    790

    Where did my background worker go?

    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.

    So I looked up an example of how to...
  25. Create / Remove applications on remote IIS server

    Hello,

    I simply want to create and remove applications on remote IIS servers. The only way I have found to do this is to use

    System.Diagnostics.ProcessStartInfo procStartInfo =
    ...
Results 1 to 25 of 27
Page 1 of 2 1 2





Click Here to Expand Forum to Full Width

Featured