February 2010 Entries
I've installed .NET DEVELOPMENT WITH ODAC 11.1.0.7.20 and apart from having to reboot my machine once it looks very good. I can use a sophisticated set of tools to look at an Oracle database. Works in VS2008 but doesn't recognise VS2010 http://www.oracle.com/techn
Manipulating app.config attributes at run time in C# appears to be simple. However most of the samples I've looked at don't work or are impenetrable. Simply in app.config file at design time add some userSettings either manually or through the design window <userSettings> <WindowsFormsApplication... <setting name="MyMachine" serializeAs="String"> <value>zaxcc1Machine&... </setting> <setting name="MyMessage" serializeAs="String"> <value>Helpme</val...
I've not done a great deal in ASP.Net and I've never done anything with Style Sheets. They are however really simple as long as you remember a couple of things. Create the css file and add it to your project in Visual Studio. Then drag it to the aspx page (in design view). This will add the lines to the aspx page <head runat="server"> <title></title> <link href="StyleSheet1.css" rel="stylesheet" type="text/css" /> </head> Then when designing the css classes use the wizard...