Global web icon
microsoft.com
https://social.msdn.microsoft.com/Forums/vstudio/e…
How to compare two worksheet cells and find the difference in color
the above value is different, then it should show the difference in various color in "Sheet1"
Global web icon
microsoft.com
https://www.social.msdn.microsoft.com/Forums/en-US…
adding multiple log file in existing database
Having multiple log file is not going to help you be it any database if you are seeing problems with tempdb and specially the GAM, PFS contention only then adding data file would help.
Global web icon
microsoft.com
https://social.msdn.microsoft.com/Forums/sqlserver…
Can a script component have two sources? - social.msdn.microsoft.com
Union All can combine multiple inputs into a single structure according to your needs. You can map columns from different inputs to the same column or different columns (mutually exclusive) as desired.
Global web icon
microsoft.com
https://social.msdn.microsoft.com/Forums/en-US/ab2…
How / Where do you create a DataSet DataTable that can be accessed by ...
Everthing works. I can populate the DataTable and is accessable within Form1. Now I want to add another Form named Form2 to the project and want to access the DataTable. What do I need to do to be able to reference Dataset "Cache" and DataTable "C5" from Form 2? I have tried to move the declaration to Program.cs and tried to qualify it as Form1.Cache.C5 but nothing passes the compiler. Is ...
Global web icon
microsoft.com
https://social.msdn.microsoft.com/Forums/en-US/085…
Internal .Net FrameWork Data Provider Error 12.
That can be very difficult, depending on what you are doing with the connection, especially if you are scrolling through data from a DataReader. In other words, the longer period of time a thread needs access to the connection, the more likely you will be to run into threading problems, or, if you add synchronization, blocking problems.
Global web icon
microsoft.com
https://social.msdn.microsoft.com/Forums/en-US/1c6…
Load Balancing multiple containers on one VM
I have been playing around with creating multiple containers on the same VM both listening on the same port. I have successfully deployed a Load Balancer which correctly handles this scenario assigning a unique public IP address to each container instance.
Global web icon
microsoft.com
https://social.msdn.microsoft.com/Forums/en-US/4af…
Why no multiple inheritance allowed in C#?
Multiple implementation inheritance injects a lot of complexity into the implementation. This complexity impacts casting, layout, dispatch, field access, serialization, identity comparisons, verifiability, reflection, generics, and probably lots of other places.
Global web icon
microsoft.com
https://www.social.msdn.microsoft.com/Forums/offic…
Error- Procedure too large in VBA - social.msdn.microsoft.com
Hi, i had a problem in procedure too large when run a VBA program. as below is the VBA program, any suggestion to modifty ? kindly advise.
Global web icon
microsoft.com
https://social.msdn.microsoft.com/Forums/en-US/fb7…
Display multiple routes in the same map - social.msdn.microsoft.com
I would like to know if it is possible o display more than one route on a map. Also, is it possible to change the route color? I can't find any example of it. Thanks Wednesday, June 13, 2018 10:00 AM
Global web icon
microsoft.com
https://www.social.msdn.microsoft.com/Forums/Lync/…
How to host multiple service contracts in IIS?
The root of the difficulty lies in the coupling of data and operations in the current design. Service oriented design is about separation of data and operations. Service Contracts should only speak about what information it can provide or process (e.g. LoadArticles or GetArticles in your case).