Is there a c# help file ? I have looked around .. I heard about it in the forum but I can't find it? I am finding it very difficult to read the help instructions in VB.NET then implement them in C#.
There is a C# web sample as well as many other C# sampels that come with the framework. Most topics do have VB.NET code samples, but we have started adding the C# samples as well. The reason for this logic initially is that most people that can program in C# can also program in VB.NET. Though we have learned that this is not always the case. The class libraries are in both C# and VB.NET. But as far as the documentation is concerned, this is not generally something that is VB.NET or C# specific. Most of the help points out properties, events, etc. and though there are some code samples (which we will be sure to add C# snippets) this is not something that should require another help file dedicated to C#.
I have been unsuccesessful trying to set up the 1 included Web Application Sample .. (Error post Submitted) ...Does anyone have a couple of very simple c# Web Examples ... simple examples say a data grid or simple form and/or parent-child form set-up so I can see how this is done.
I have this on my list from your other post and will try to get to it as soon as possible.
When building a web form can you mix Strata controls with Standard VS controls ? What do you need to consider when choosing between Strata controls and VS 2005 controls. Will I have to wrap the VS 2005 controls? Can I use GridView, FormView and Breadcrumbs controls ... In a Strataform Application ?
You can use any combination of controls that you want to. We primarily use SF controls throughout our application but use an Infragistics grid in the areas that we need a grid. You can bind to ANY 3rd party control without adding a wrapper of any sort using the BusinessBindingSource control. But if you want to have native SF data binding, then you will need to implement the IBusinessBindable interface to your custom or inherited control.
If you are planning on using themes, then you will want to take this into consideration when using things that could have a visual impact on your application. But in most cases this will not present too much of an issue as you can add your own logic or add SF theme colors, etc. if you really need this functionality, and is some cases it really doesn't matter (i.e. using a GridView).