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

Search:

Type: Posts; User: eclipsed4utoo

Page 1 of 26 1 2 3 4

Search: Search took 0.24 seconds.

  1. Re: I can't create instances of my new form in C# winforms... any idea why?

    What is the namespace in the Form1.cs file? What is the namespace in the Form2.cs file?
  2. Re: Changing color of selected Button in a group

    The easiest way? When a button is clicked, change all of the colors of the buttons back to the default color, then change the color of the clicked button.
  3. Replies
    2
    Views
    2,874

    Re: Play WAV file in SL4

    you could try this...

    http://blogs.msdn.com/b/gillesk/archive/2009/03/23/playing-back-wave-files-in-silverlight.aspx
  4. Replies
    2
    Views
    6,328

    Re: WPF beginners questions

    Referencing the controls is just the same as you would do in WinForms. Some of the properties have changed. Like the "Text" property of some of the controls was changed to "Content"(TextBlock and...
  5. Replies
    9
    Views
    17,437

    Re: Convert WinForm to Silverlight??

    LightSwitch doesn't convert a WinForms application to a WPF application.
  6. Replies
    3
    Views
    18,869

    Re: Real World WPF examples?

    I'm not sure many companies put out that type of information. Most companies don't tell consumers what the application is written in.

    For example, I didn't know until this past January that...
  7. Re: Horizontal/Vertical Scrollbar for Silverlight page

    Put a ScrollViewer around your content.
  8. Re: Refresh Parent window after closing child window

    Are you showing the child window using ShowDialog? If so, after the ShowDialog, run your code that updates your DataGridView. Hopefully you have that code in it's own method so you simply add one...
  9. Replies
    2
    Views
    976

    Re: Silverlight Game Website?

    do you mean a game that is built on silverlight? if so, this is a good site...

    http://www.silverlightclub.com/
  10. Re: Adding rows to datagridview programatically

    how are you binding? If you are using a DataTable, then simply add additional rows to the DataTable.
  11. Replies
    4
    Views
    780

    Re: my ajaxcontroltookit is not working

    you need to add the controls to the toolbox. Most likely, the controls you are trying to drag are from the old version. Remove them from the toolbox, then re-add the ones from the new version.
  12. Replies
    4
    Views
    780

    Re: my ajaxcontroltookit is not working

    we need a little bit more information than "not working". What isn't working? are you receiving errors?
  13. Replies
    3
    Views
    698

    Re: databases

    In my opinion, that's the best option. I am sure there are other embedded databases that you could use, but I always use SQL CE for something like this.
  14. Replies
    2
    Views
    739

    Re: Update the listbox

    you could do this...



    for (int i = 0; i < 10; i++)
    {
    listBox1.Items.Add(i.ToString());
    Application.DoEvents();
    }
  15. Re: How do you add content to a tab control dynamically in wcf -- at run time?

    because this is sample code and not something going into a production application. When I post code samples, I normally let the people I am doing it for deal with catching exceptions. Do I have to...
  16. Re: How do I add .CS functionality to XAML classes built in Expression Design?

    The Grid is commonly used as a container control for the entire page. You normally don't deal with it directly. If you have controls in the grid, you deal with those controls. Give them names(ie.....
  17. Re: How do you access the children of a WPF Canvas class?

    This will add two buttons to the Canvas at runtime. On the "Get Children" button click, it will loop through the children and display the text of the Button.

    XAML:


    <Window...
  18. Re: How do you add content to a tab control dynamically in wcf -- at run time?

    very simple example. this simply adds a new TextBlock to the selected tab each time the tab is changed...

    XAML


    <Window x:Class="WpfApplication6.MainWindow"
    ...
  19. Replies
    3
    Views
    969

    Re: Problem compileing using linq

    your web.config files should be the same. you should definitely have all of those assemblies in the web.config on the server.
  20. Re: Execute stored procedure using a string variable

    Personally, that makes absolutely no sense at all.
  21. Replies
    4
    Views
    944

    Re: DataGridView

    You need to either:

    1. Setup your PC so that it's viewable from the internet, and allow another PC to connect to the database.

    - or -

    2. Put the database on a server(that you will buy),...
  22. Replies
    4
    Views
    944

    Re: DataGridView

    This isn't very clear. Can you better explain what you are trying to do, and any errors that are occuring?
  23. Re: String Split functionality-internally how does it works

    A simple look into the String class using Reflector would have given the answer.
  24. Replies
    1
    Views
    615

    Re: Separating line by blank spaces

    This may help you out....



    using (StreamReader sr = new StreamReader(fs))
    {
    while ((line = sr.ReadLine()) != null)
    {
    manip = line.Split(' ');
  25. Replies
    2
    Views
    1,188

    Re: Need Help on what to Install?

    download and install Visual Web Developer(this should install .Net 4 for you)
    download and install SQL Server Express

    now you can start.
Results 1 to 25 of 627
Page 1 of 26 1 2 3 4





Click Here to Expand Forum to Full Width

Featured