Samyag1's Q&A profile
Visual Studio Team System .Net Runtime 2.0 Error Reporting Event in Application Eventlog
Hi I have installed Team Foundation Server RC on a single machine following the latest installation guide. Everything seemed fine after the setup but I get weird event log entries and the TFS is not work. Machine runs on 100% CPU untilization. Application Event log: .NET Runtime 2.0 Error Reporting: Faulting application w3wp.exe, version 6.0.3790.1830, stamp 42435be1, faulting module kernel32.dll, version 5.2.3790.1830, stamp 424377d2, debug 0, fault address 0x00015dea. In System Event Log: A process serving application pool 'TFS AppPool' suffered a fatal communication error with the World Wide Web Publishing Service. The p ...Show All
Visual C++ writing DWORDs to file in unix like manner (Lowbyte first)
Hello, is there any setting to force the ide to generate code which behavior is like on unix machines especially in case of writing DWORDs to a binary file so that the Lower byte ist written first and then the high byte Thanks a lot Matthias I don't believe there is a direct way, but take a look at the links at http://search.msdn.microsoft.com/search/results.aspx qu=unix+C%2b%2b&View=msdn&st=b&c=0&s=1&swc=0 incase something rings a bell. Thanks, Ayman Shoukry VC++ Team ...Show All
Visual Studio editting the sql?
I have a VS.NET solution, and I've added a report to it. I went through the report wizard, and it's mostly what i want, but I need a little more granularity than the wizard provides. For example, I need to concatenate my select statement, ie "SELECT a||b||c FROM..." I just want to tweak the SQL, and I can't figure out how to do that in VS.NET. In standalone Crystal, I believe I would right click on my data source and go to "Verify Database", but all that gives me is a popup saying that the database is up to date. Is it possible to do what I'm trying to Thanks in advance Hello, ...Show All
Windows Forms general purpose button event handler to navigate to windows form,
Hi, I have a windows form with a number of buttons on it. Clicking on each button takes you to different windows forms. how can I make a general purpose Button_click event handler for all buttons on my form that can take me to the different forms depending on which button is clicked. I can set the Button Tag property as the name ...Show All
Visual C# .net 2005 beta 2 resources static class
hello I have a question about the static class that is auto generated when you create strongly typed resources. The question is how do i make the class and properties stay public in shared resource-only assemblies, when i need to update the resources, becasue the code is auto generated when you update the resource. So the class and properties change back to internal is there a work around thanks in advance kered Hi Kered - Take a look at this thread, it should help you out. http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=132678&SiteID=1 Than ...Show All
Software Development for Windows Vista regarding installation
hai when i tried to install winfx runtime 3.0 (january CTP), i couldn't install i got some errors... before i tried to install winfx runtime i unistalled all the previous versions of frame work and SDK. Then i installed the same in the following order Visual Studio 2005 (RTM) windows SDK (january CTP) After this tried installing winfx runtime 3.0(january CTP) but couldn't continue that....i just want to know wheather the order of installations i followed is corect....I also want to know the proper order for installing Windows Presentation Foundation,Windows Communication Foundation and Windows Workflow foundation...need som ...Show All
Smart Device Development Can't display a string correctly (POCKETPC 2003 - mbstowcs - SendMessage)
Hello, I'm basically trying to display a text in a window. I'm using VC8 and I'm building for PPC2003 & Windows Mobile 5. I use a method that does something like: Write(const char* text) { LPTSTR lpBuffer = new TCHAR[strlen(text) + 1]; mbstowcs((wchar_t *)lpBuffer, text, strlen(text)); lpBuffer[strlen(text)] = '\0'; int nIndex; nIndex = GetWindowTextLength(m_hEdit); SendMessage(m_hEdit, EM_SETSEL, nIndex, nIndex+strlen(text)+1); SendMessage(m_hEdit, EM_REPLACESEL, 0, (LPARAM)&lpBuffer); delete [] lpBuffer; } On the screen of the device (of the emulator as well) I only can see squares and odd stuff :/ ...Show All
SQL Server Custom ControlFlow
I am trying to design a Component which can be configured by a UI. After Configuration from the Design pane the Data should be passed to the back-end of the Component. When I look at some code samples I only see, that it's possible to pass simple data. What I want is to put a grid on the UI and connect it to a DataTable. This is used for displaying and changing a configuration as a table. Well, the question is: Can I pass the DataTable object to the backend-DLL as is If so then how THX Fridtjof Can you please clarify whether you are creating a custom Task or a custom Data Flow Component, or another type ...Show All
Software Development for Windows Vista vista download
Can someone please tell me why microsoft let us download Vista, but dont give us keys....... When i was finish downloading it read: "Keys are limited. Please contact your msdn admin. " but he says: "i dont have any keys" I'm thinkin' about getting a key on the big bad web..... I dont think Ms are too keen about that, but if they wont give me a key i'm gonna get it myself..... bytheway, i'm in the msdnaa program(student) :-) ...Show All
SQL Server Query Empty node
Hello, I have an XML file which contains different shops, where a certain node (<openinhours>) is empty in some occasions. The node displays as <openinghours /> in my xml file in that case. Now when I try to get the openinghour value of all the shops, it shows an error that I cannot atomize. Is there any way to check if the node contains text by using the value or exist Thanks in advance! I will try to clarify myself. In my db, I have every shop in a different row, with columns: ShopID, ShopName, ShopXML. ShopXML contains the rest of the info of te shop, and is xml-field. ...Show All
Software Development for Windows Vista Windows Alarm
Does anyone know if they're going to make a Window's Alarm for Vista I use my computer for pretty much everything...it'd be nice to be able to use it as an alarm clock and it would sound or flash when you set the time to wake up in the morning. It'd be beneficial if you were installing something big, or were doing something time-sensitive where you could set the alarm, go do what you want, and the computer sounds it's alarm to tell you when you're finished. I think it's kind of a cool idea. I'm sure it could be expanded from what ideas I've put down...just a thought... Thanks guys, that helps. I ...Show All
SQL Server Importing from Crystal Report 7 to Reporting Services
Dear all, I was wondering if I can import reports made by crystal report 7 to Reporting Services 2000. Thank you. This one isn't free , but may be worth a try for $5-$15. Another consulting company, Hitachi, provides services to do this. See Post. There is no built-in way to convert reports. ...Show All
SQL Server Generate Scripts option in SQL 2005 Management Studio
Did anyone even bother to test the Generate Scripts option for a database I changed the following options from their default setting: "Include Descriptive Headers" = True "Include if NOT EXISTS" = True "Script for Server Version" = SQL Server 2000 "Script Indexes" = True and scripted all Stored Procedures, Tables, User-defined functions, and Views Problems: 1. Generates IF NOT EXISTS (SELECT * FROM sys.objects ... should be ...SELECT * FROM dbo.sysobjects ... 2. Generates WITH (IGNORE_DUP_KEY = OFF) ... on the indexes. That portion is incompatible with SQL 2000 3.Generates EXEC sys.sp_addextendedproperty ... ...Show All
SQL Server PDF Output
Using the reportviewer web control - when a user click on a link to the page with the control, is there a way to render the report directly to a PDF without showing the report controls ...Show All
Windows Forms Token Privilidges
How do I adjust token privilidges needed for shutdown, restart etc. in VB.NET All done & dusted now. Problem solved by myself ...Show All
