Hi I know there must be a way around this problem I am having, but for the life of me, I cannot find it. We are currently programming applications in VB.NET, trying to implement Visual Source Safe 6.0. Our problem, is that we use a large ammount of custom controls and other classes which are shared among various application we are building. How do we get this righ using Source Safe? In essence we need to be able to add solutions to source safe, which in turn can be referenced by any other number of solutions, also kept in source safe. Please help. Thanks.
MrMickeyDeeGimp
Posts
-
Source Safe is driving me mad! -
Custom controlsHi We are currently experiencing problems with VB.NET using large ammounts of custom controls. Occasionally when we open our forms in the design view of Visual Studio 2003 one of two things will happen - the forms just drop all of thier controls off of the forms, or, the controls drop all thier handles! Has anyone experienced anything like this before, and if so did you find a solution? Thanks Michael
-
Help - Connection objects.Hi I am currently working on an application where we have a set of classes which handle SQL DB calls. I import all of these obects into my code as static objects. I then call functions in the classes, which will in turn open a db connection, do read/write, and then close the connection. I am getting an object set to null reference exception if more than one person is using the application at once. They appear to be sharing the connection object, as the error always occurs on the 'conn.Close()' (conn being my connection object) for the function whic finishes last. I take it that the first finished function is closeing the second functions connection? Question is.... How am I going to fix this? If anyone has any suggestions, please help. Thanks