Search Results

0
votes

What would be the most convenient way to connect Visual Studio 2005 (C#) to Oracle8?

I would warn against building an architecture like you're suggesting. Opening a new connection to the database to poll for changes every second is an expensive operation. It gets worse if you're tr …
2
votes

What would be the most convenient way to connect Visual Studio 2005 (C#) to Oracle8?

Here's a sample from our environment: <add key="ODP.NET.ConnectionString" value="Password=abcdefg;Persist Security Info=True;User ID=abc123;Data Source=blah;"/> …
0
votes

How to physically obtain all the versions of an Assembly stored in GAC?

gacutil /l <assembly_name> …
0
votes

C# - Sorting a list when it has more than one value per ‘row’ ?

Use ArrayList.Sort(IComparer) instead of ArrayList.Sort(). …
1
vote

invalid QName when transforming a .net XSLTransform

You cannot have a space in an element name. …
2
votes

How to detect when laptop power cable has been disconnected?

This will probably get closed as not-programming-related, but you may want to check your BIOS setttings. My Lenovo laptop does exactly what you're suggesting natively. There is a setting in …
0
votes

Calling Oracle SP with TableAdapter very slow

Make sure you're setting the CommandType to CommandType.StoredProcedure. For example (from …
0
votes

HttpListener.Start() AccessDenied error on Vista

Is that URI already registered on the system? http://msdn.microsoft.com/en-us/library/ …
1
vote

Is it possible to override the auto-indentation of comments in VB.NET/VS2008?

I think you're looking for this in the menu: Tools->Options->Text Editor->Basic->VB Specific->Pretty listing (reformatting) of code From …