Marketa Pobudova's Q&A profile
Visual Studio Team System Using Beta 3 Team Foundation Server with VS.2005
Am I correct in assuming that Team Foundation Server has not been released yet Is there a release date for Team Foundation Server (Guess or otherwise) Can I use Team Foundation Server Beta 3 with the final release of VS.NET 2005 Can I/Should I use Team Foundation Server Beta 3 running on the final release of SQL Server 2005 Any answers greatfully recieved. Thanks, Mike G lp75 - You need to install the Tea ...Show All
Visual C# Access a bit in a Byte, Help!
Im trying to access a bit in a byte. does anyone know how to do this i cant seem to find any documentation on it! more specifically i want to access bit 2 in the byte that containes boolean values, and i want to return whatever is in bit 2 (whether it be true or false). can anyone help! please! To see if a bit is set in a byte you do a bitwise "and" operation. That is the "&" operator in C# You use a mask to check what is set Bit#&nb ...Show All
Windows Forms Accounting Software
Does anyone know of any ".Net" Open Source Accounting Software package / Source Available Accouning Software package Hi Zonehenge, You may want to take a look at interprise suite. It is not open source but it is written in .NET as a "smart client" application and has a number of XML web services built in. www.interprisesuite.com Gary I forgot to mention that it is licensed for less than $10,000 for unlimited user licen ...Show All
Windows Forms Why can't I do this Thread t1 = new Thread(new ThreadStart(sweeper.Traverse(dir)));
It throws a error saying it needs a method, but obvisouly it is a method. but the method needs parameter to pass. Can anyone help Thanks a million in advance Nope, If you are going to start a thread and pass it data,&n ...Show All
Visual Studio What happened SourceSafe web service access in Beta 2?
A collegue of mine has just setup a SourceSafe 2005 database and configured it for internet web service access. I have Team Suite installed including SourceSafe 2005, but I am unable to find an option anywhere which would allow me to connect to it. I can connect over a local LAN or over the net via file sharing, but I can't find the web service protocol. I was informed this feature was in Beta 1. Anyone know what happened to it I ...Show All
Software Development for Windows Vista SQL Persistence, Loading Workflows and Workflow Properties
I have a workflow that has a bunch of properties on it. One of those properties is the name of the user that initiated the workflow (it is passed into the workflow via the Dictionary<string, object> class. I have SQL persistence working just fine (well, I can't figure out how to 'auto persist', so I am manually calling 'Unload' when the workflow idles), and I run through the list of workflow IDs persisted when my application starts up. ...Show All
.NET Development How to expose native function to C# COM class?
Here is my situation. I have a C# class library with interfaces and classes which is used by a native C++ application with no ATL. I import the tlb and create objects, very simple stuff. I need some mechanism to implement callback functions, events, connection points, or what ever. The end result must be that a function in the native C++ application can be called from the C# class. Can someone please explain what the best and ...Show All
Visual Studio Team System Waiting with a worm on my tongue!
Greetings, My inner geek is almost beside himself with anticipation for the first release of this product. I can hardly wait til Saturday to download the CTP. However the cynic in me looks back on the dreadful database project support in VS 2003 and 2005 (and the only slightly less abyssmal SQL Server Management Studio) with a bit of doubt. I am impressed by the feature list but a bit surprised that Intellisense is not an early inclusi ...Show All
SQL Server rs:ClearSession not working
the report data does not refresh even though i added the rs:ClearSession parameter to the URL..i have to click the refresh button to get the latest data.. the URL i use: http://localhost/Alcon/Reports.aspx rs:ClearSession=true&distCd=DPI&SOSummary=true any ideas on how to solve this problem yes, thr Reports.aspx is the pageviewer actually.. i already solve the pro ...Show All
Visual C# serialize mail messages
For a message queue I need to serialize (and later on deserialize) many MailMessage s. Quite generally I ask myself, which is the best way to do this To .eml To a mbox format How can this achieved Are there any free libraries (open source preferred) Thanks a lot Jan Yeah, it can get heavy on disk access if you have alot of mail going through that box. I did do load testing and I averaged it out to be about a 25% performance loss f ...Show All
SQL Server Criteria validation Reporting Server
Hi Does any one know how we can validate the input criteria in reporting server 2005 By saying this I mean to say; let say we have to dates “Start date” and “End date” as criteria to one report. How can I check that the Start date must be lower or equal to the End date Any advice is appreciated. Regards; Rakesh please follow the link http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=326495&am ...Show All
Visual Studio 2008 (Pre-release) svg + xaml
Why can I only have 1 scalable vector graphic reference file saved with-in a xaml file and thats the only view and detail the glpyh/icon can have... if you scale-down a 256x256px graphic to like 16x16px it looks bad unless the 256x256px is very simple which brings be to my next point that if you would make a simple 16x16px graphic and scale-up to 256x256px the graphic would look to simple and not rich enough which would make that size poin ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Throttling SecondaryBuffer stream reading speed in DirectSound
I have written a DirectSound application in C# and have a Stream that can provide the PCM data (with the WaveFormat tagged onto the beginning). This allows me to use the SecondaryBuffer constructor that takes a Stream: buffer = new SecondaryBuffer waveFormatStream,bufferDescription,device); The trouble is, even though I specify a small buffer size, this constructor ignores the size given in the bufferDescription, and use ...Show All
Visual Basic Refreshing data
My datagridview is not refreshing after a stored procedure changes the underlying data. I've tried using the .Refresh method, but it doesn't repaint the form. How can I force a requery very useful one. i too searching for the same. Found the answer now and its working well. once again thanks. ...Show All
.NET Development Append text to textbox without scrolling
How can I append text to a textbox without scrolling and maintaining the current caret position AppendText() always scrolls to the bottom, and setting the Text property scrolls to the top. Yes, unfortunately the .NET TextBox control doesn't work quite the way we'd like. You could probably hack together a solution that uses SelectionStart/SelectionLength to reselect the appropriate text after the append but then you'll need to worry about ge ...Show All
